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

        :root {
            --black: #000000;
            --charcoal: #1a1a1a;
            --beige: #f5f5f0;
            --wine: #6e0f26;
            --gold: #d4af37;
            --smoke: #f7f7f7;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--beige);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: transform 0.2s ease;
            display: none; /* Hide on touch devices */
        }

        @media (hover: hover) and (pointer: fine) {
            .cursor {
                display: block;
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--beige);
            text-decoration: none;
            font-weight: 300;
            font-size: clamp(0.8rem, 2vw, 1rem);
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--beige);
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
            z-index: 1;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
  background-image: url('../img/look1.jpg');
  background-size: cover;
  background-position: center;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 2rem;
            max-width: 60%;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 0.9;
            margin-bottom: 1.5rem;
            color: var(--beige);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: 300;
            margin-bottom: 2rem;
            color: var(--smoke);
            max-width: 90%;
        }

        .cta-button {
            display: inline-block;
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            font-size: clamp(0.8rem, 2vw, 1rem);
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--black);
        }

        /* Collections Section */
        .collections {
            padding: clamp(4rem, 8vw, 8rem) 2rem;
            background: var(--charcoal);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 4rem);
            text-align: center;
            margin-bottom: clamp(2rem, 6vw, 4rem);
            color: var(--beige);
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1.5rem, 4vw, 3rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .collection-item {
            position: relative;
            height: clamp(300px, 50vw, 400px);
            overflow: hidden;
            cursor: pointer;
            border-radius: 8px;
        }

        .collection-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--wine), var(--charcoal));
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease;
        }

        .collection-item:hover .collection-bg {
            transform: scale(1.05);
        }

        .collection-content {
            position: relative;
            z-index: 2;
            padding: clamp(1.5rem, 4vw, 2rem);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
        }

        .collection-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            margin-bottom: 0.5rem;
            color: var(--beige);
        }

        .collection-desc {
            color: var(--smoke);
            font-weight: 300;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        /* Lookbook Section */
        .lookbook {
            padding: clamp(4rem, 8vw, 8rem) 0;
            background: var(--black);
            overflow: hidden;
        }

        .lookbook-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .lookbook-item {
            position: relative;
            height: clamp(400px, 60vw, 600px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lookbook-image {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--wine), var(--gold));
        }

        .lookbook-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }

        .lookbook-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--beige);
            background: rgba(0,0,0,0.6);
            padding: 1rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .lookbook-number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .lookbook-title {
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 500;
        }

        /* Video Section */
        .video-section {
            padding: clamp(4rem, 8vw, 8rem) 2rem;
            background: var(--beige);
            color: var(--black);
            text-align: center;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .video-placeholder {
            width: 100%;
            height: clamp(300px, 50vw, 500px);
            background: linear-gradient(135deg, var(--charcoal), var(--wine));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--beige);
        }

        .play-button {
            width: clamp(60px, 10vw, 80px);
            height: clamp(60px, 10vw, 80px);
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button svg {
            width: clamp(20px, 4vw, 24px);
            height: clamp(20px, 4vw, 24px);
        }

        /* About Section */
        .about {
            padding: clamp(4rem, 8vw, 8rem) 2rem;
            background: var(--smoke);
            color: var(--black);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2rem, 6vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-image {
    height: 500px;
    background: url(../img/logo.png) no-repeat center center;
    background-size: contain; 
    border-radius: 12px;
}


        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            margin-bottom: 2rem;
            color: var(--charcoal);
            text-align: center;
        }

        .about-content p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
            text-align: center;
        }

        /* Contact Section */
        .contact {
            padding: clamp(4rem, 8vw, 8rem) 2rem;
            background: var(--black);
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 2rem;
            text-align: left;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: clamp(0.8rem, 2vw, 1rem);
            background: transparent;
            border: 1px solid var(--charcoal);
            color: var(--beige);
            font-family: 'Inter', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1rem);
            border-radius: 4px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--smoke);
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                backdrop-filter: blur(20px);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                font-size: 1.5rem;
                color: var(--beige);
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
                padding: 1rem;
            }

            .hero-image {
                width: 100%;
                opacity: 0.3;
            }

            .lookbook-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    transform: none !important;
}


            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-content h2,
            .about-content p {
                text-align: center;
            }
        }

        /* Tablet Adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .navbar {
                padding: 1.5rem 2rem;
            }

            .hero-content {
                max-width: 70%;
            }

            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lookbook-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Large Desktop */
        @media (min-width: 1200px) {
            .navbar {
                padding: 2rem 3rem;
            }

            .hero-content {
                padding: 0 3rem;
            }

            .collections,
            .about,
            .contact,
            .video-section {
                padding-left: 3rem;
                padding-right: 3rem;
            }

            .lookbook-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .about-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Ultra-wide screens */
        @media (min-width: 1600px) {
            .collections,
            .about,
            .contact,
            .video-section {
                padding-left: 5rem;
                padding-right: 5rem;
            }

            .lookbook-container {
                max-width: 1600px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .collection-item:hover .collection-bg {
                transform: none;
            }

            .play-button:hover {
                transform: none;
            }

            .cta-button:hover::before {
                left: -100%;
            }

            .cta-button:hover {
                color: var(--gold);
            }

            .nav-links a:hover::after {
                width: 0;
            }
        }