@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #030303; /* Very dark, almost black */
    --surface-color: #111111; /* Slightly lighter for cards */
    --surface-hover: #1a1a1a;
    --primary-color: #FF1F5A; /* The vibrant pink/red */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #707070;
    --border-color: #222222;
    
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-family);
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--text-secondary);
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    gap: 12px;
}

.btn-primary:hover {
    background-color: #e0174e;
    transform: translateY(-2px);
    color: white;
}

.btn-icon {
    width: 24px;
    height: 24px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary .btn-icon {
    margin-right: 8px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
    gap: 8px;
}

.btn-link:hover {
    border-color: var(--primary-color);
    color: white;
}

/* Navbar */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    z-index: 60;
}

.mobile-menu-btn {
    display: none;
    z-index: 60;
    color: white;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
}

.logo .pink {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: -2px; /* slight adjustment so it sits closer if line-height gets wonky */
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: white;
}

.nav-links a.active {
    color: white;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: white;
}

.search-btn:hover {
    color: var(--primary-color);
}

.nav-divider {
    width: 2px;
    height: 28px;
    background-color: var(--text-secondary);
    opacity: 0.5;
}

/* Sections Common */
section {
    padding: 80px 0;
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-subtitle::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 800px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

/* Cards */
.card {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    background-color: var(--surface-hover);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 24px;
}

/* Form */
.search-input-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}
.search-input {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 12px 20px 12px 40px;
    color: white;
    font-family: var(--font-family);
    outline: none;
}
.search-input:focus {
    border-color: var(--primary-color);
}
.search-input-wrapper svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Utility Classes */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.w-100 { width: 100%; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color); 
}
::-webkit-scrollbar-thumb {
    background: var(--border-color); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted); 
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 0;
    }
    .nav-links {
        gap: 24px;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
    .logo {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navbar & Hamburger */
    .navbar {
        padding: 20px 0;
        justify-content: space-between;
    }
    .mobile-menu-btn {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    .logo {
        font-size: 1.2rem;
        padding-bottom: 8px;
        order: 1;
    }
    .logo::after {
        width: 20px;
        height: 3px;
    }
    .logo .pink {
        font-size: 1.3em;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(3,3,3,0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        z-index: 55;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    .nav-actions {
        display: none;
    }
    
    html {
        scroll-snap-type: none;
    }
    
    section {
        scroll-snap-align: none;
        padding: 40px 0;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    /* Hero */
    .hero-section {
        padding-top: 20px;
        min-height: auto;
    }
    .hero-content-wrapper {
        flex-direction: column;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-title {
        font-size: 3.2rem !important;
        margin-bottom: 20px !important;
    }
    .hero-badge {
        font-size: 0.75rem !important;
        margin-bottom: 16px !important;
    }
    .hero-desc {
        font-size: 1rem !important;
        margin-bottom: 32px !important;
    }
    .hero-actions {
        gap: 20px !important;
        flex-wrap: wrap;
    }
    .hero-image-container {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 350px !important;
        margin-top: 32px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px) !important;
    }
    .hero-image-container::after {
        background: 
            linear-gradient(to top, var(--bg-color) 0%, transparent 30%) !important;
    }

    /* Logos Banner */
    .logos-banner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        padding: 24px 0 !important;
    }
    .logos-title {
        width: auto !important;
        font-size: 0.7rem !important;
    }
    .logos-list {
        padding-left: 0 !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }
    .logos-list span {
        font-size: 1rem !important;
    }

    /* Stories */
    .stories-title {
        font-size: 2.5rem !important;
    }
    .stories-desc-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    .carousel-nav {
        gap: 10px !important;
    }
    .nav-circle {
        width: 40px !important;
        height: 40px !important;
    }
    .see-all-link {
        margin-left: 0 !important;
        font-size: 0.75rem !important;
    }
    .story-card {
        min-width: 260px !important;
        flex: 0 0 260px !important;
    }
    .card-image-box {
        height: 280px !important;
    }

    /* Collections */
    .coll-header-top {
        flex-direction: column !important;
        gap: 24px !important;
    }
    .coll-title {
        font-size: 2.5rem !important;
    }
    .coll-right-info {
        max-width: 100% !important;
    }
    .coll-card {
        min-width: 240px !important;
        flex: 0 0 240px !important;
    }
    .coll-img-box {
        height: 220px !important;
    }

    /* Brands */
    .brands-header-row {
        flex-direction: column !important;
        gap: 24px !important;
    }
    .brands-title {
        font-size: 2.5rem !important;
    }
    .brands-desc-col {
        max-width: 100% !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
    .brands-filter-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .brands-tabs {
        gap: 16px !important;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Buttons */
    .btn-primary {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
    .btn-link {
        font-size: 0.85rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    .stories-title {
        font-size: 2rem !important;
    }
    .coll-title {
        font-size: 2rem !important;
    }
    .brands-title {
        font-size: 2rem !important;
    }
    .brands-grid {
        grid-template-columns: 1fr !important;
    }
    .story-card {
        min-width: 220px !important;
        flex: 0 0 220px !important;
    }
    .coll-card {
        min-width: 200px !important;
        flex: 0 0 200px !important;
    }
}