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

:root {
            --bg-light: #F5F3F0;
            --bg-white: #FFFFFF;
            --bg-dark: #1A1A1A;
            --accent-green: #3D6B4A;
            --accent-gold: #C8963E;
            --text-dark: #1A1A1A;
            --text-secondary: #666666;
            --text-light: #FFFFFF;
            --border-light: #E8E5E0;
            --shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

html {
            scroll-behavior: smooth;
        }

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

/* ===== TOP SCROLLING BANNER ===== */

.scrolling-banner {
            background-color: var(--accent-green);
            color: var(--text-light);
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
        }

.banner-content {
            display: flex;
            white-space: nowrap;
            animation: scroll-left 30s linear infinite;
        }

.banner-content span {
            display: inline-block;
            padding: 0 40px;
        }

@keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

/* ===== STICKY NAVIGATION ===== */

.main-nav {
            position: sticky;
            top: 0;
            background-color: var(--bg-white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 40px;
            flex-wrap: wrap;
        }

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

.logo-section a {
            display: flex;
            align-items: center;
        }

.logo-section img {
            height: 44px;
            width: auto;
        }

.nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
            flex: 1;
            justify-content: center;
        }

.nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

.nav-menu a:hover {
            color: var(--accent-green);
        }

.nav-menu li {
            position: relative;
        }

.nav-menu .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #FFFFFF;
            list-style: none;
            min-width: 220px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: 1px solid #E8E5E0;
            z-index: 1000;
            margin-top: 0;
            padding-top: 8px;
            border-radius: 0 0 6px 6px;
        }

.nav-menu li:hover > .dropdown,
        .nav-menu .dropdown:hover {
            display: block;
        }

.nav-menu .dropdown li {
            padding: 0;
            position: static;
        }

.nav-menu .dropdown a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: #1A1A1A;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            white-space: nowrap;
            transition: background-color 0.3s ease, color 0.3s ease;
            border-bottom: 1px solid #F5F3F0;
        }

.nav-menu .dropdown li:last-child a {
            border-bottom: none;
        }

.nav-menu .dropdown a:hover {
            background-color: #F5F3F0;
            color: var(--accent-green);
        }

.nav-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

.btn-outline {
            border: 1px solid var(--text-dark);
            background-color: transparent;
            color: var(--text-dark);
            padding: 10px 20px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            font-family: 'Poppins', sans-serif;
        }

.btn-outline:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
        }

.btn-primary {
            background-color: var(--accent-green);
            color: var(--text-light);
            border: none;
            padding: 12px 24px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            font-family: 'Poppins', sans-serif;
        }

.btn-primary:hover {
            background-color: #2e5639;
        }

.hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

.hamburger span {
            width: 25px;
            height: 2.5px;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: 0.3s ease;
        }

/* ===== FOOTER ===== */

footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 60px 40px 30px;
            border-top: 1px solid rgba(200, 150, 62, 0.2);
        }

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

.footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

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

.footer-col li {
            margin-bottom: 12px;
        }

.footer-col a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

.footer-bottom {
            border-top: 1px solid rgba(200, 150, 62, 0.2);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 13px;
            color: #999;
        }

.footer-legal {
            display: flex;
            gap: 30px;
        }

.footer-legal a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

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

@media (max-width: 768px) {
.main-nav {
                padding: 10px 16px;
                flex-wrap: nowrap;
            }
.logo-section img {
                height: 34px !important;
            }
.nav-menu {
                display: none;
                position: absolute;
                top: 58px;
                left: 0;
                right: 0;
                flex-direction: column;
                background-color: var(--bg-white);
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid var(--border-light); z-index: 999; }
.nav-menu.active {
                display: flex;
            }
.nav-buttons {
                display: none !important;
            }
.nav-menu.active .mobile-menu-buttons {
                display: flex !important;
            }
.hamburger {
                display: flex;
            }
.footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
.footer-bottom {
                flex-direction: column;
                text-align: center;
            }
.footer-legal {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
}

@media (max-width: 480px) {
.nav-menu a {
                font-size: 11px;
            }
.banner-content span {
                padding: 0 20px;
            }
.nav-menu a {
                font-size: 13px;
            }
}

@keyframes gallery-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

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

.footer-section h4 {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #C8963E;
        }

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

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

.footer-section a {
            color: #E0E0E0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

.footer-section a:hover {
            color: #C8963E;
        }

@media (max-width: 480px) {
.footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
}