/* ================================================
   HOME PAGE STYLES - Louis Vuitton Inspired
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background: #fff;
}

/* ================================================
   NAVIGATION BAR
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

/* Hidden state */
.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.3s;
}

.nav-icon:hover {
    opacity: 0.6;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("https://zola.in/cdn/shop/articles/Jeans_Banner_ZOla.jpg?v=1685605677");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 50px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid #1a1a1a;
}

.hero-cta:hover {
    background: white;
    color: #1a1a1a;
}

/* ================================================
   FEATURED COLLECTIONS
   ================================================ */

.collections {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.collection-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: white;
}

.collection-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.collection-link {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid white;
    transition: opacity 0.3s;
}

.collection-link:hover {
    opacity: 0.7;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: 100px 40px;
    background: #fafafa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    height: 500px;
    background: #e5e5e5;
    border-radius: 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
    }

    .collections {
        padding: 60px 20px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-card {
        height: 400px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 18px;
    }

    .hero-cta {
        padding: 14px 30px;
        font-size: 11px;
    }

    .collection-name {
        font-size: 24px;
    }

    .collection-info {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}