 :root {
            --coral: #F96E5B;
            --cream: #FFE2AF;
            --midnight: #001F3D;
            --gray: #E6E6E6;
            --white: #FFFFFF;
            --transition-slow: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-medium: all 0.5s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--gray);
            color: var(--midnight);
            font-family: 'Felipa', serif;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* --- Global Typography --- */
        h1, h2, h3, .neon-text { font-family: 'Neonderthaw', cursive; }
        p, .body-text { font-family: 'Felipa', serif; font-size: 1.25rem; font-weight: 400; }

        .neon-glow {
            color: var(--coral);
            text-shadow: 0 0 8px var(--coral), 0 0 15px var(--coral), 0 0 30px #fff;
            animation: neonPulse 2.5s infinite alternate;
        }
        @keyframes neonPulse {
            from { opacity: 0.85; text-shadow: 0 0 8px var(--coral); }
            to { opacity: 1; text-shadow: 0 0 25px var(--coral), 0 0 40px var(--white); }
        }

        /* --- Header --- */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition-medium);
        }
        header.scrolled {
            background: var(--midnight);
            padding: 15px 60px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        header.scrolled .logo-text, header.scrolled nav a, header.scrolled .nav-icon {
            color: var(--cream);
        }

        .logo-box { display: flex; align-items: center; gap: 15px; cursor: pointer; }
        .logo-img { height: 45px; width: auto; }
        .logo-text { font-size: 2.2rem; color: var(--midnight); }

        nav { display: flex; gap: 45px; }
        nav a { 
            text-decoration: none; color: var(--midnight); 
            font-size: 1rem; text-transform: uppercase; letter-spacing: 3px;
            transition: var(--transition-medium);
            cursor: pointer;
            position: relative;
        }
        nav a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
            background: var(--coral); transition: 0.3s;
        }
        nav a:hover::after { width: 100%; }
        nav a:hover { color: var(--coral); }

        .nav-right { display: flex; align-items: center; gap: 25px; }
        .nav-icon { color: var(--midnight); cursor: pointer; transition: 0.3s; }
        .nav-icon:hover { color: var(--coral); transform: scale(1.1); }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #000;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0.5;
            animation: slowZoom 30s infinite alternate linear;
        }
        @keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.3); } }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 20px;
        }
        .hero-title { font-size: 9rem; margin-bottom: 0; line-height: 0.8; }
        .hero-desc { font-size: 1.6rem; margin-top: 10px; opacity: 0; transform: translateY(30px); animation: fadeInUp 1.2s forwards 0.8s; }

        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

        /* --- Section Shared --- */
        section { padding: 140px 10%; position: relative; }
        .section-heading { font-size: 4.5rem; margin-bottom: 40px; line-height: 1; }

        /* --- The Style Story --- */
        .story-section { background: var(--cream); display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: flex-start; }
        .story-text { position: sticky; top: 150px; }
        .story-images { position: relative; height: 1200px; }
        .floating-img {
            position: absolute;
            width: 380px; height: 550px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 30px 30px 80px rgba(0,0,0,0.15);
            transition: var(--transition-slow);
        }
        .img-1 { top: 0; left: 0; z-index: 5; }
        .img-2 { top: 300px; right: 0; z-index: 3; }
        .img-3 { top: 700px; left: 100px; z-index: 4; }

        /* --- Runway Horizontal Scroll --- */
        .runway-section {
            background: var(--midnight);
            color: var(--cream);
            padding: 120px 0;
            overflow: hidden;
        }
        .runway-header { padding: 0 10%; margin-bottom: 60px; }
        .runway-track {
            display: flex;
            gap: 50px;
            padding: 0 10% 50px;
            overflow-x: auto;
            scrollbar-width: none;
            cursor: grab;
        }
        .runway-card {
            min-width: 450px;
            height: 650px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,226,175,0.1);
            transition: var(--transition-medium);
        }
        .runway-card img { width: 100%; height: 100%; object-fit: cover; transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
        .runway-card:hover img { transform: scale(1.15); filter: brightness(0.7); }
        .runway-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%;
            padding: 50px; background: linear-gradient(transparent, var(--midnight));
            opacity: 0; transform: translateY(20px); transition: 0.6s;
        }
        .runway-card:hover .runway-overlay { opacity: 1; transform: translateY(0); }

        /* --- Filter System for Collections --- */
        .filter-bar { display: flex; justify-content: center; gap: 30px; margin-bottom: 60px; }
        .filter-btn {
            background: none; border: none; font-family: 'Felipa'; font-size: 1.2rem;
            color: var(--midnight); cursor: pointer; padding-bottom: 5px; border-bottom: 2px solid transparent;
        }
        .filter-btn.active { color: var(--coral); border-bottom-color: var(--coral); }

        /* --- Collection Cards --- */
        .collection-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-top: 80px;
        }
        .collection-card {
            background: var(--white);
            padding: 25px;
            transition: var(--transition-slow);
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }
        .collection-card:hover { transform: translateY(-25px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
        .collection-card img { width: 100%; height: 480px; object-fit: cover; margin-bottom: 25px; }

        /* --- Quote Section --- */
        .quote-section {
            background: var(--coral);
            text-align: center;
            padding: 180px 10%;
            color: var(--midnight);
        }
        .quote-text { font-size: 6rem; line-height: 1; margin-bottom: 40px; }

        /* --- Lookbook Collage --- */
        .lookbook-collage {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 380px);
            gap: 30px;
        }
        .collage-item { position: relative; overflow: hidden; cursor: pointer; transition: 0.5s; }
        .collage-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
        .collage-item:hover img { transform: scale(1.1); filter: sepia(0.3); }
        .collage-item .look-tag {
            position: absolute; top: 20px; right: 20px; background: var(--coral); color: #fff;
            padding: 5px 15px; font-size: 0.9rem; border-radius: 50px; opacity: 0; transition: 0.3s;
        }
        .collage-item:hover .look-tag { opacity: 1; }
        .span-2-w { grid-column: span 2; }
        .span-2-h { grid-row: span 2; }

        /* --- Auth Modal --- */
        .modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,31,61,0.98); z-index: 5000;
            display: none; align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
        }
        .auth-card {
            background: var(--cream);
            width: 100%; max-width: 550px;
            padding: 80px;
            position: relative;
            box-shadow: 0 50px 100px rgba(0,0,0,0.5);
        }
        .form-input {
            width: 100%; padding: 20px; margin-bottom: 25px;
            border: 1px solid var(--midnight); background: transparent;
            font-family: 'Felipa', serif; font-size: 1.2rem; outline: none;
            transition: 0.3s;
        }
        .form-input:focus { border-color: var(--coral); background: var(--white); }

        /* --- Quick View Panel --- */
        .quick-view {
            position: fixed; top: 0; right: -100%; width: 600px; height: 100%;
            background: var(--white); z-index: 6000; box-shadow: -30px 0 100px rgba(0,0,0,0.3);
            transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 80px 60px; overflow-y: auto;
        }
        .quick-view.active { right: 0; }
        .qv-image { width: 100%; height: 500px; object-fit: cover; margin-bottom: 40px; }

        /* --- General UI --- */
        .btn {
            display: inline-block; padding: 20px 50px;
            background: var(--coral); color: var(--white);
            text-decoration: none; border: none; cursor: pointer;
            font-size: 1.1rem; text-transform: uppercase; letter-spacing: 4px;
            transition: 0.4s;
            position: relative; overflow: hidden;
        }
        .btn:hover { background: var(--midnight); transform: translateY(-8px); letter-spacing: 5px; }
        
        .page { display: none; min-height: 100vh; }
        .page.active { display: block; animation: pageFadeIn 1s ease forwards; }
        @keyframes pageFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* --- Footer --- */
        footer { background: var(--midnight); color: var(--cream); padding: 120px 10% 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 100px; margin-bottom: 80px; }
        .footer-link { display: block; color: var(--cream); text-decoration: none; margin-bottom: 18px; font-size: 1.3rem; transition: 0.3s; cursor: pointer; }
        .footer-link:hover { color: var(--coral); transform: translateX(12px); }

        /* --- Responsive --- */
        @media (max-width: 1100px) {
            .hero-title { font-size: 5rem; }
            .story-section, .collection-grid, .footer-grid, .contact-split { grid-template-columns: 1fr !important; }
            .quick-view { width: 100%; }
            header { padding: 20px 30px; }
            .runway-card { min-width: 300px; height: 500px; }
        }
/* Logo */
.logo-img{
height:190px;
}

/* Nav */
#mainNav{
display:flex;
gap:30px;
align-items:center;
}

#mainNav a{
text-decoration:none;
font-size:15px;
cursor:pointer;
}

/* Right Icons */
.nav-right{
display:flex;
align-items:center;
gap:20px;
}

.nav-icon{
width:24px;
height:24px;
cursor:pointer;
}

/* Mobile Menu Button Hidden Desktop */
#mobileMenuBtn{
display:none;
}

/* ---------------- MOBILE ---------------- */
@media(max-width:768px){

#mainNav{
position:absolute;
top:70px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
gap:20px;
padding:25px 0;
display:none;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

#mainNav.active{
display:flex;
}

#mobileMenuBtn{
display:block;
}

}