/* BambooBrook - Complete Styles with Mobile Menu */
:root {
    --primary-dark: #1a3a1f;
    --primary-green: #2d5016;
    --accent-sage: #8ba888;
    --accent-gold: #c9a962;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cream);
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

nav {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
}

/* Mobile Menu Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    padding: 80px 0 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid var(--cream);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--cream);
    padding-left: 2.5rem;
    color: var(--primary-green);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1f10 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Common Sections */
section {
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 0.75rem;
    color: var(--accent-sage);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.4);
}

.btn-primary:hover {
    background: #d4b56e;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Cards */
.card {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    nav {
        padding: 1rem 3rem;
    }

    .logo img {
        height: 55px;
    }

    .page-header {
        padding: 5rem 3rem;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    section {
        padding: 5rem 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .btn {
        padding: 1.2rem 2.5rem;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    nav {
        padding: 1rem 4rem;
    }

    .nav-links {
        gap: 3rem;
    }

    .page-header {
        padding: 6rem 4rem;
    }

    .page-header h1 {
        font-size: 4rem;
    }

    section {
        padding: 6rem 4rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .btn {
        padding: 1.3rem 3.5rem;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }

    .footer-logo img {
        max-width: 200px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}
