html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background-color: #050505; /* Deep black for luxury feel */
    color: white;
    font-family: 'Inter', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* This keeps the text perfectly centered with the big logo */
    padding: 20px 10%;
    background-color: #000;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 5px;
}

#brand-logo {
    height: 240px; /* Doubled from 120px */
    width: auto;
    display: block;
    margin: 0 auto; /* Centers the logo if we decide to stack it */
}

nav {
    display: flex;
    flex-direction: column; /* Stacks the logo on top of the links for a cleaner look */
    justify-content: center;
    align-items: center;
    padding: 60px 10%; 
    background-color: #000;
    gap: 30px; /* Space between the giant logo and the menu links */
}

ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px; /* Wider spacing between Home, Collection, and About */
}
#brand-logo {
    height: 60px; /* Smaller height specifically for cellphones */
}
/* Optional: Add a slight lift when you hover over the logo */
#brand-logo:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px 0; /* Adds space above and below the larger logo */
    width: 80px;
    height: auto;
}

ul { list-style: none; display: flex; gap: 20px; }
a { color: white; text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; }

.hero {
    height: 80vh; /* Takes up 80% of the screen height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;       /* Ensures the image fills the space */
    background-position: center;  /* Centers the image */
    background-attachment: fixed; /* Optional: adds a cool "parallax" scrolling effect */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 5rem; /* Larger, bolder text */
    font-weight: 900;
    letter-spacing: -3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Makes text pop against the photo */
}

.hero-overlay p {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #f0f0f0;
}

h1 { font-size: 4rem; margin: 0; letter-spacing: -2px; }

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.image-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%); /* Modern, clean look */
    transition: 0.3s;
}

.video-section {
    text-align: center;
    padding: 100px 0;
    background-color: #111;
}

.video-container iframe {
    width: 80%;
    max-width: 800px;
    height: 450px;
    border: 2px solid #333;
}
.about-section {
    padding: 120px 10%;
    background-color: #111;
    color: #fff;
    line-height: 1.8;
    border-top: 1px solid #333;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brand-subtitle {
    letter-spacing: 5px;
    color: #888;
    font-size: 0.8rem;
}

.about-container h2 {
    font-size: 2.5rem;
    margin: 20px 0 40px;
    letter-spacing: 2px;
}

.lead-text {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
}

.manifesto p {
    margin-bottom: 20px;
    color: #ccc;
    font-weight: 300;
}

.vision-mission {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.vision-mission h3 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.brand-tagline {
    margin-top: 80px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .vision-mission { flex-direction: column; }
}

.subtitle {
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-content p {
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
    color: #ccc;
    font-size: 1.1rem;
}

.focus-text {
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px !important;
}
/* 1. First, we hide the "overflow" so the zoom stays inside the box */
.image-box {
    overflow: hidden; 
    background-color: #000; /* Keeps the background dark if images load slow */
}

/* 2. We add a transition to the image so the zoom is smooth, not jumpy */
.image-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* This is a "luxury" smooth timing */
}

/* 3. The actual Hover Effect: Zoom in slightly (1.1x) */
.image-box:hover img {
    transform: scale(1.1);
    filter: brightness(0.8); /* Slightly dims the image to make it look moody */
}
.collection-section {
    padding: 100px 10%;
    background-color: #000;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 photos per row */
    gap: 40px;
}

.collection-item {
    text-align: left;
    transition: 0.4s;
}

.collection-item img {
    width: 100%;
    height: 450px; /* High-fashion vertical crop */
    object-fit: cover;
    filter: grayscale(30%); /* Subtle mood effect */
    transition: 0.5s ease;
}

.collection-item:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px); /* Lift effect */
}

.item-details {
    margin-top: 15px;
}

.item-category {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.item-name {
    font-size: 0.9rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 5px;
}
/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    #brand-logo {
        height: 120px; /* Still big for mobile, but allows the user to see the site */
    }
    nav {
        padding: 30px 5%;
        gap: 20px;
    }
}
.btn-main {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

.btn-main:hover {
    background-color: #fff;
    color: #000;
}
footer {
    padding: 60px 10%;
    background-color: #000;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-content p {
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 2px;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: #fff;
    margin: 0 15px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    opacity: 0.6;
}

.social-links a:hover {
    opacity: 1;
}
/* MOBILE RULES (For screens smaller than 768px) */
@media (max-width: 768px) {

    /* 1. Fix the Header & Logo */
    nav {
        flex-direction: column;
        padding: 20px 5%;
    }

    #brand-logo {
        height: 100px; /* Reduces the giant logo so there's room for content */
        margin-bottom: 15px;
    }

    ul {
        flex-direction: column; /* Stacks menu links vertically */
        gap: 10px;
        text-align: center;
    }

    /* 2. Fix the Hero Section (Main Banner) */
    .hero {
        height: 60vh; /* Reduces height on mobile */
    }

    .hero-overlay h1 {
        font-size: 2rem; /* Shrinks the text so it doesn't wrap weirdly */
        letter-spacing: 2px;
    }

    /* 3. THE BIG FIX: Un-squash the Images */
    .collection-grid, .arrival-grid {
        display: flex;
        flex-direction: column; /* Force images to stack on top of each other */
        padding: 0;
        gap: 40px;
    }

    .collection-item img, .arrival-item img {
        height: auto;      /* Allows the image to find its natural height */
        max-height: 500px; /* Prevents it from being too long */
        width: 100%;       /* Ensures it fills the width of the phone */
        object-fit: cover; /* Keeps the crop looking professional */
    }

    /* 4. Fix the Video Section */
    .video-section video {
        width: 100% !important;
        height: auto !important; /* Forces the video to stay in proportion */
    }

    /* 5. Adjust Spacing */
    .about-section, .collection-section, .new-arrivals {
        padding: 50px 5%; /* Reduces large side gaps on small screens */
    }

    .vision-mission {
        flex-direction: column; /* Stacks Vision and Mission boxes */
    }
}