:root {
    --primary: #2d5a27;
    --primary-light: #4ade80;
    --dark: #1e272e;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- NAVBAR --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

nav.scrolled {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    transition: 0.3s;
}

nav.scrolled .logo {
    color: var(--dark);
    text-shadow: none;
}

.logo span { color: var(--primary-light); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav.scrolled .nav-links a { color: var(--dark); }

.nav-links a:hover { color: var(--primary-light); }

.nav-btn {
    background: var(--primary-light);
    color: var(--dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

/* --- HERO --- */
.hero {
    height: 100vh;
    background: url('assets/img2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.badge {
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 25px 0;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-light);
    color: var(--dark);
    margin-right: 15px;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- SECTIONS --- */
section { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
}

.underline {
    width: 70px;
    height: 5px;
    background: var(--primary-light);
    margin: 20px auto;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover { transform: translateY(-12px); }

.card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-info { padding: 30px; }

.card-info h3 { margin-bottom: 12px; font-size: 1.3rem; color: var(--primary); }

.card-info p { color: #666; font-size: 0.95rem; }

/* --- CONTACT --- */
.contact-section { background-color: #f4f9f4; }

.contact-card {
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 15px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 20px;
}

.icon { font-size: 1.5rem; }

footer {
    padding: 50px 0;
    text-align: center;
    background: var(--white);
    border-top: 1px solid #eee;
    color: #888;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-content h2 { font-size: 3.5rem; }
    .contact-card { flex-direction: column; text-align: center; padding: 40px; }
}

@media (max-width: 768px) {
    nav { background: rgba(0,0,0,0.8); }
    .nav-links { display: none; } /* Mobile menu logic can be added */
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content { padding-top: 100px; text-align: center; }
}