/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Hamburger Navigation - Minimal Top Right */
.nav-toggle {
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 35px;
    height: 1px;
    background: #fff;
    margin: 8px 0;
    transition: all 0.3s ease;
}

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

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

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

/* Brand Logo */
.brand-logo {
    position: fixed;
    top: 40px;
    left: 60px;
    z-index: 10000;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

/* Navigation Menu */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: #000;
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 120px 60px;
    border-left: 1px solid #333;
}

.main-nav.active {
    right: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin: 40px 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.main-nav.active .nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.main-nav.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
.main-nav.active .nav-links li:nth-child(2) { transition-delay: 0.15s; }
.main-nav.active .nav-links li:nth-child(3) { transition-delay: 0.2s; }
.main-nav.active .nav-links li:nth-child(4) { transition-delay: 0.25s; }
.main-nav.active .nav-links li:nth-child(5) { transition-delay: 0.3s; }
.main-nav.active .nav-links li:nth-child(6) { transition-delay: 0.35s; }
.main-nav.active .nav-links li:nth-child(7) { transition-delay: 0.4s; }

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    transition: opacity 0.3s ease;
    display: block;
    text-transform: uppercase;
}

.nav-links a:hover {
    opacity: 0.5;
}

/* Hero Section - Fullscreen Cinematic */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video,
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
    animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: fadeInUp 1.4s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* Split Layout Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: #000;
}

.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
}

.split-text h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
}

.split-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: #aaa;
    font-weight: 300;
    max-width: 600px;
}

.split-image {
    position: relative;
    overflow: hidden;
    background: #111;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 0.6s ease;
}

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

/* Stats Section - Dark */
.analytics {
    padding: 200px 0;
    background: #0a0a0a;
    position: relative;
}

.analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
}

.analytics h2 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 120px;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 60px 40px;
    background: transparent;
    border: 1px solid #222;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: #111;
    border-color: #444;
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 20px;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 15px;
}

.stat-platforms {
    font-size: 0.9rem;
    color: #555;
    font-weight: 300;
}

/* Brand Collaborations - Minimal */
.brands {
    padding: 200px 0;
    background: #000;
    border-top: 1px solid #1a1a1a;
}

.brands h2 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
}

.brands-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 100px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    max-width: 1600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 2px;
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-card {
    background: #000;
    padding: 80px 40px;
    text-align: center;
    transition: background 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

@media (max-width: 768px) {
    .brand-card {
        padding: 60px 30px;
        min-height: 160px;
    }
}

.brand-card:hover {
    background: #0a0a0a;
}

.brand-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }
}

/* Gallery - Minimal Dark */
.gallery {
    padding: 200px 0;
    background: #000;
}

.gallery h2 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: #111;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    font-size: 3rem;
    color: #fff;
}

/* Content Sections - Beauty, Fashion, Jewelry */
.content-sections {
    padding: 200px 0;
    background: #fff;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 120px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #000;
}

.content-category {
    margin-bottom: 180px;
    position: relative;
}

.content-category::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #ccc;
}

.category-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    position: relative;
}

.category-title::after {
    display: none;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-card {
    background: #fff;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    aspect-ratio: 1 / 1;
    position: relative;
}

.content-card:hover {
    transform: translateY(-5px);
}

.placeholder-card {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border: 1px dashed #333;
}

.placeholder-content {
    text-align: center;
    padding: 60px 40px;
}

.placeholder-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.placeholder-subtext {
    font-size: 1rem;
    color: #444;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Instagram Embeds - Minimalist */
.instagram-media {
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.content-card .instagram-media {
    margin-bottom: 0 !important;
}

/* TikTok Embeds */
.tiktok-card {
    background: #fff;
}

.tiktok-embed-wrapper {
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.tiktok-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Section - Premium */
.contact {
    padding: 200px 0;
    background: #000;
    border-top: 1px solid #1a1a1a;
}

.contact h2 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
}

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

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    font-size: 1.2rem;
    font-family: inherit;
    color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #fff;
    color: #000;
    padding: 20px 60px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 3px;
    text-transform: uppercase;
    width: 100%;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

/* Footer - Minimal */
footer {
    background-color: #000;
    color: #666;
    padding: 100px 0 60px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

footer p {
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.social-link {
    color: #666;
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.social-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Lightbox - Dark Theme */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 50px;
    font-weight: 300;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    font-weight: 300;
    padding: 20px;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 60vh;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .brand-logo {
        left: 30px;
        top: 30px;
    }

    .nav-toggle {
        right: 30px;
        top: 30px;
    }

    .hero-title {
        letter-spacing: -3px;
    }

    .split-content {
        padding: 80px 40px;
    }

    .analytics,
    .brands,
    .gallery,
    .content-sections,
    .contact {
        padding: 120px 0;
    }

    .content-category {
        margin-bottom: 100px;
    }

    .category-grid {
        gap: 40px;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-card {
        padding: 40px 20px;
    }

    .social-links {
        gap: 25px;
    }
}
