* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2d6a4f;
    --secondary: #40916c;
    --accent: #d4a373;
    --dark: #1b4332;
    --light: #f8f9fa;
    --text: #333;
}
body { font-family: 'Segoe UI', sans-serif; color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { background: var(--dark); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #fff; font-size: 1.5rem; font-weight: bold; text-decoration: none; }
.logo i { color: var(--accent); }
.nav-menu { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-menu a { color: #fff; text-decoration: none; transition: color .3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }
.lang-switch a.active { color: var(--accent); font-weight: bold; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer;
    }

/* HERO */
.hero { background: linear-gradient(rgba(27,67,50,.7), rgba(27,67,50,.7)), url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=1600') center/cover; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; animation: fadeUp 1s; }
.hero-content p { font-size: 1.3rem; margin-bottom: 2rem; animation: fadeUp 1s .3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* BUTTONS */
.btn { display: inline-block; padding: .8rem 2rem; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; font-weight: 600; transition: all .3s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c18c5d; transform: translateY(-2px); }
.btn-danger { background: #dc3545; color: #fff; }
.btn-sm { padding: .4rem .8rem; font-size: .9rem; }

/* FEATURES */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding: 4rem 20px; }
.feature { text-align: center; padding: 2rem; background: #fff; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,.05); transition: transform .3s; }
.feature:hover { transform: translateY(-10px); }
.feature i { font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }

/* PAGE HEADER */
.page-header { background: var(--primary); color: #fff; padding: 4rem 20px; text-align: center; }
.page-header h1 { font-size: 2.5rem; }

/* SERVICES */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; padding: 4rem 20px; }
.service-card { background: #fff; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,.08); border-top: 4px solid var(--accent); transition: all .3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 4rem 20px; align-items: center; }
.about-image img { width: 100%; border-radius: 15px; }

/* GALLERY */
.gallery { padding: 4rem 20px; }
.gallery-filters { text-align: center; margin-bottom: 2rem; }
.filter-btn { padding: .5rem 1.5rem; margin: 0 .3rem; border: 2px solid var(--primary); background: #fff; color: var(--primary); border-radius: 50px; cursor: pointer; transition: all .3s; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
.gallery-item img, .gallery-item video { width: 100%; height: 250px; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.1); }
.caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.8)); color: #fff; padding: 1rem; }

/* EVENTS */
.events { padding: 4rem 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.event-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.08); transition: transform .3s; }
.event-card:hover { transform: translateY(-5px); }
.event-card img { width: 100%; height: 200px; object-fit: cover; }
.event-body { padding: 1.5rem; }
.event-date { color: var(--accent); font-weight: bold; }
.event-body h3 { margin: .5rem 0; color: var(--dark); }
.event-meta { display: flex; justify-content: space-between; margin-top: 1rem; color: #666; }
.price { color: var(--primary); font-weight: bold; font-size: 1.2rem; }

/* CONTACT */
.contact { padding: 4rem 20px; max-width: 700px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group input, .form-group textarea { padding: 1rem; border: 2px solid #e0e0e0; border-radius: 10px; font-family: inherit; font-size: 1rem; transition: border .3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.alert { padding: 1rem; border-radius: 10px; margin-bottom: 1rem; }
.alert.success { background: #d4edda; color: #155724; }
.alert.error { background: #f8d7da; color: #721c24; }

/* FOOTER */
.footer { background: var(--dark); color: #fff; padding: 3rem 20px 1rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer h3, .footer h4 { margin-bottom: 1rem; color: var(--accent); }
.footer a { color: #fff; margin-right: 1rem; font-size: 1.5rem; text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }

/* ADMIN */
body.admin { display: flex; min-height: 100vh; background: #f4f6f9; }
.admin-sidebar { width: 250px; background: var(--dark); color: #fff; padding: 2rem 0; }
.admin-sidebar h2 { text-align: center; margin-bottom: 2rem; color: var(--accent); }
.admin-sidebar a { display: block; padding: 1rem 2rem; color: #fff; text-decoration: none; transition: background .3s; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--primary); }
.admin-content { flex: 1; padding: 2rem; }
.admin-form { background: #fff; padding: 2rem; border-radius: 10px; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; max-width: 600px; }
.admin-form input, .admin-form textarea { padding: .8rem; border: 1px solid #ddd; border-radius: 5px; }
.admin-table { width: 100%; background: #fff; border-collapse: collapse; border-radius: 10px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #eee; }
.admin-table th { background: var(--primary); color: #fff; }
.admin-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.admin-media { background: #fff; padding: 1rem; border-radius: 10px; text-align: center; }
.admin-media img { width: 100%; height: 150px; object-fit: cover; border-radius: 5px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.stat-card { background: #fff; padding: 2rem; border-radius: 10px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.stat-card i { font-size: 2.5rem; color: var(--primary); }
.stat-card h3 { font-size: 2rem; margin: .5rem 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 1rem; display: none; }
    .nav-menu.active { display: flex; }
    .hero-content h1 { font-size: 2rem; }
    .about { grid-template-columns: 1fr; }
    body.admin { flex-direction: column; }
    .admin-sidebar { width: 100%; }
}