/* ==========================================
    COLOR PALETTE
   ========================================== */
:root {
    --primary: #1B5E20;
    --secondary: #6B8E23;
    --accent: #D4A373;
    --background: #F5F5F0;
    --text: #2E2E2E;
    --light-text: #666666;
    --border: #D3D3D3;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* ==========================================
    LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto;
}

/* ==========================================
    HEADER & NAVIGATION
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.company-name {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
    HERO SECTION — REDESIGNED
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Merriweather', serif;
}

/* Background image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

/* Subtle gradient overlay — keeps readability without killing the photo */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 30, 15, 0.52) 0%,
        rgba(10, 22, 10, 0.28) 50%,
        rgba(0, 0, 0, 0.08) 100%
    );
    z-index: 1;
}

/* ---- INNER (two-column) ---- */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 7rem 6vw 2rem;
    flex: 1;
}

/* ---- LEFT ---- */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}

.hero-display {
    font-family: 'Merriweather', serif;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: #fff;
    text-shadow: 2px 4px 18px rgba(0,0,0,0.35);
    letter-spacing: -0.01em;
    margin: 0;
    animation: heroFadeUp 0.9s ease both;
}

.hero-display-accent {
    color: #D4A373;
}

.hero-reg {
    font-size: 0.35em;
    vertical-align: super;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.hero-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.05em;
    margin: 0;
    animation: heroFadeUp 1.0s 0.15s ease both;
}

/* Dark pill CTA — matches reference */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.4rem;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.12);
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    animation: heroFadeUp 1.1s 0.25s ease both;
}

.hero-cta:hover {
    background-color: #2d5a27;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    color: #fff;
}

/* ---- RIGHT: floating card ---- */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    animation: heroFadeUp 1.0s 0.2s ease both;
}

.hero-card {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 1.6rem 1.6rem 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    overflow: hidden;
    position: relative;
}

.hero-card-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    border: 1.5px solid #ccc;
    color: #333;
    background: transparent;
}

.hero-tag--dark {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.hero-card-title {
    font-family: 'Merriweather', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.hero-card-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 1rem;
}

/* Card media strip */
.hero-card-media {
    position: relative;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 -1.6rem;
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.hero-play-btn {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.hero-play-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    background: rgba(255,255,255,0.9);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    color: #333;
}

/* ---- BOTTOM bar ---- */
.hero-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 0 6vw 2.5rem;
    gap: 2rem;
}

.hero-bottom-card {
    background: rgba(139, 90, 56, 0.88);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    max-width: 280px;
}

.hero-bottom-label {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.hero-bottom-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.hero-bottom-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
}

.hero-avatars {
    display: flex;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.hero-avatars .hero-avatar:first-child {
    margin-left: 0;
}

.hero-stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-num {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat-num em {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

.hero-stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-nature-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-nature-tagline p {
    font-family: 'Merriweather', serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.hero-learn-more {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.hero-learn-more:hover {
    color: #D4A373;
}

/* ---- Animation ---- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Legacy CTA button (used elsewhere) ---- */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ---- Hero Responsive ---- */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 5rem;
        gap: 2.5rem;
    }

    .hero-right {
        padding-top: 0;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hero-bottom-right {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .hero-display {
        font-size: 3rem;
    }

    .hero-inner {
        padding: 4.5rem 1.2rem 1rem;
    }

    .hero-bottom {
        padding: 0 1.2rem 2rem;
    }

    .hero-nature-tagline {
        display: none;
    }
}

/* ==========================================
    ABOUT SECTION
   ========================================== */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fact-item {
    padding: 1.5rem;
    background-color: var(--background);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.fact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.fact-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ==========================================
    SERVICES SECTION
   ========================================== */
.services {
    padding: 5rem 0;
    background-color: var(--background);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
    GALLERY SECTION
   ========================================== */
.gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================
    CONTACT SECTION
   ========================================== */
.contact {
    padding: 5rem 0;
    background-color: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.info-item a {
    font-weight: 600;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================
    FOOTER
   ========================================== */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--background);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--background);
    font-size: 0.85rem;
}

/* ==========================================
    RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background-color: var(--white);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
        min-width: 200px;
    }

    .nav-menu.active {
        display: flex;
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

}

@media (max-width: 480px) {
    .nav-menu {
        right: 10px;
    }


    .section-header h2 {
        font-size: 1.5rem;
    }

    .quick-facts {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
