        :root {
            --primary-orange: #1E0342;
            --soft-beige: #a5842f;
            --bright-yellow: #206e01;
            --dark-bg: #398084;
            --white: #d68823;
            --text-dark: #f0ff1f;
            --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
                scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color:#f0ff1f;
            overflow-x: hidden;
        }

        /* Menu */
.nav-menu{
    display:flex;
    gap:28px;
    list-style:none;
}

/* Links */
.nav-menu a{
    color:white;
    text-decoration:none;
    font-size:14px;
    cursor:pointer;
}

/* Dropdown */
.has-dropdown{
    position:relative;
}

.dropdown{
    position:absolute;
    top:35px;
    left:0;
    background:#1c1c1c;
    padding:10px 0;
    display:none;
    flex-direction:column;
    min-width:200px;
}

.dropdown a{
    padding:10px 16px;
    display:block;
}

.has-dropdown:hover .dropdown{
    display:block;
}

/* Hamburger */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:white;
}

/* MOBILE */
@media (max-width:900px){

.nav-menu{
    position:absolute;
    top:65px;
    left:0;
    width:100%;
    background:#111;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
}

.nav-menu.active{
    display:flex;
}

.dropdown{
    position:static;
    background:#151515;
}

.has-dropdown:hover .dropdown{
    display:none;
}

.has-dropdown.open .dropdown{
    display:block;
}

.hamburger{
    display:flex;
}

}

        /* --- NAVIGATION --- */
        .top-info-bar {
            background: linear-gradient(90deg, #a5842f, #a5842f);
            padding: 10px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            font-weight: 700;
        }
        .top-info-bar a { color: #f0ff1f; text-decoration: none; }
        .top-socials { display: flex; gap: 15px; align-items: center; }
        .top-socials i { cursor: pointer; transition: 0.3s; width: 18px; }
        .top-socials i:hover { color: #674F04; transform: translateY(-2px); }
        .search-container { display: flex; align-items: center; background: rgba(255,255,255,0.5); padding: 5px 15px; border-radius: 20px; }
        .search-container input { border: none; background: transparent; outline: none; margin-left: 8px; width: 120px; }

        .main-nav {
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: 398084;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    height: 145px;   /* adjust if needed */
    width: 240px;
    object-fit: contain;
}        .nav-menu { display: flex; list-style: none; gap: 30px; }
        .nav-menu li { position: relative; }
        .nav-menu a {
            text-decoration: none;
            color: #f0ff1f;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            padding: 10px 0;
            display: block;
            cursor: pointer;
        }
        .nav-menu a:hover, .nav-menu li:hover > a { color: #674F04; }
        
        /* Dropdowns */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: 398084;
            min-width: 240px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            border-top: 4px solid #674F04;
        }
        .nav-menu li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown a {
            text-transform: none;
            padding: 12px 25px;
            font-size: 0.95rem;
        }
        .dropdown a:hover { background: #a5842f; padding-left: 30px; }

        /* --- MULTIPAGE CONTAINER --- */
        .page { display: none; min-height: 80vh; animation: pageFade 0.6s ease; }
        .page.active { display: block; }
        @keyframes pageFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* --- HERO SLIDESHOW (VERTICAL BREAK) --- */
        .hero-slider {
            position: relative;
            height: 85vh;
            width: 100%;
            overflow: hidden;
            background: #000;
        }
        .slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 10%;
            opacity: 0;
            pointer-events: none;
        }
        .slide.active { opacity: 1; z-index: 10; pointer-events: auto; }
        
        .fragment-bg {
            position: absolute;
            inset: 0;
            display: flex;
            z-index: -1;
        }
        .fragment {
            flex: 1;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: translateY(100%);
            transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
        }
        .slide.active .fragment { transform: translateY(0); }
        .slide.prev .fragment { transform: translateY(-100%); }

        .slide-text { color: 398084; max-width: 700px; transform: translateX(-50px); opacity: 0; transition: 1s 0.4s; }
        .slide.active .slide-text { transform: translateX(0); opacity: 1; }
        .slide h2 { font-size: 5rem; font-weight: 900; line-height: 1; margin-bottom: 20px; text-transform: uppercase; }
        .slide p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: #674F04;
            color: 398084;
            text-decoration: none;
            font-weight: 900;
            border-radius: 50px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        .btn:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(255, 95, 0, 0.3); }
        .btn-yellow { background: #a5842f; color: #f0ff1f; }

        /* --- SECTIONS --- */
        .section-padding { padding: 100px 10%; }
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-header h2 { font-size: 3rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
        .section-header p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }
        
        /* Features Grid */
        .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-card {
            background: #a5842f;
            padding: 50px 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border-bottom: 5px solid transparent;
        }
        .feature-card:hover {
            background: 398084;
            transform: translateY(-15px);
            border-bottom-color: #674F04;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .feature-card i { font-size: 3rem; color: #674F04; margin-bottom: 25px; display: block; }
        .feature-card h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 15px; }

        /* Portfolio/Events Grid */
        .filter-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
        .filter-btn {
            padding: 10px 25px;
            border-radius: 30px;
            border: 2px solid #ddd;
            background: transparent;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }
        .filter-btn.active { background: #674F04; color: 398084; border-color: #674F04; }

        .content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
        .grid-item {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .grid-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
        .grid-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #674F04, transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            opacity: 0;
            color: d68823;
            transition: 0.4s;
        }
        .grid-item:hover img { transform: scale(1.1); }
        .grid-item:hover .grid-overlay { opacity: 1; }

        /* Blog Section */
        .blog-card {
            background: d68823;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .blog-card:hover { transform: translateY(-10px); }
        .blog-img { height: 220px; background-size: cover; background-position: center; }
        .blog-body { padding: 30px; }
        .blog-body h4 { font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
        .blog-body p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }

        /* CTA Section */
        .cta-banner {
            background: #a5842f;
            text-align: center;
            padding: 80px 10%;
            border-radius: 40px;
            margin: 0 10% 100px;
        }

        /* --- MODAL (QUICK VIEW) --- */
        .modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 40px;
            backdrop-filter: blur(10px);
        }
        .modal-content {
            background: d68823;
            width: 100%;
            max-width: 1000px;
            border-radius: 30px;
            display: flex;
            overflow: hidden;
            position: relative;
            animation: modalIn 0.5s ease;
        }
        @keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .modal-left { width: 50%; }
        .modal-left img { width: 100%; height: 100%; object-fit: cover; }
        .modal-right { width: 50%; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
        .close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; color: #333; }

        /* --- FOOTER --- */
        footer {
            background: linear-gradient(135deg, #674F04, #ff8c00);
            padding: 100px 10% 50px;
            color: d68823;
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 60px; margin-bottom: 80px; }
        .footer-col h4 { font-size: 1.3rem; margin-bottom: 30px; color: #a5842f; text-transform: uppercase; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; }
        .footer-col a { color: d68823; text-decoration: none; opacity: 0.8; transition: 0.3s; }
        .footer-col a:hover { opacity: 1; padding-left: 5px; color: #a5842f; }
        
        .newsletter { margin-top: 20px; display: flex; gap: 10px; }
        .newsletter input { flex: 1; padding: 15px 20px; border-radius: 30px; border: none; outline: none; }
        .newsletter .btn { background: #f0ff1f; padding: 15px 25px; }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .modal-content { flex-direction: column; max-height: 90vh; overflow-y: auto; }
            .modal-left, .modal-right { width: 100%; }
            .modal-left { height: 300px; }
            .slide h2 { font-size: 3rem; }
        }
        .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    font-family: 'Manrope', sans-serif;}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
 
    font-weight: bold;
}

.footer-col input {
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 5px;
    width: calc(100% - 24px);
}

.footer-col .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-left: 0;
    border: none;
    border-radius: 8px;
    background: #ff6f61;
    color: #fff;
    cursor: pointer;
}

.footer-col .btn:hover {
    background: #ff4a3a;
}

.unsubscribe input {
    margin-bottom: 5px;
}


.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1c1c1c;
    padding: 15px 30px;
    position: relative;
}

.main-nav .logo {
    color: d68823;
    font-size: 1.8rem;
    cursor: pointer;
    font-weight: bold;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav .nav-menu li {
    position: relative;
}

.main-nav .nav-menu li a {
    color: d68823;
    text-decoration: none;
    padding: 10px 5px;
    display: block;
}

.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2b2b2b;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    min-width: 180px;
    z-index: 99;
}

.main-nav .dropdown a {
    padding: 10px 15px;
    white-space: nowrap;
}

.main-nav .has-dropdown:hover .dropdown {
    display: flex;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: 398084;
    border-radius: 2px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1c1c1c;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .main-nav .nav-menu.active {
        display: flex;
    }

    .main-nav .has-dropdown:hover .dropdown {
        display: none; /* remove hover effect on mobile */
    }

    .main-nav .dropdown.active {
        display: flex;
    }
}
