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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #1a1a1a;
    color: white;
    height: 100vh;
    position: relative;
}


/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.0) saturate(0.8);
}

.video-overlay {
    display: none;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 50px;
    left: 40px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-bottom: 20px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    opacity: 0.8;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 0;
    margin: -1px 0;
}

/* Icon styles removed - no icons needed */

.nav-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 15px;
}

/* Logo Section */
.logo-section {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
}

.studio-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 5px;
}

.main-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.1;
}

.customer-logo {
    max-width: 500px;
    max-height: 200px;
    width: auto;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0;
    transform: translateY(50px) scale(0.7);
    animation: logoReveal 2.5s ease forwards 1s;
}

.customer-logo.animation-complete {
    animation: none;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.logo-line {
    opacity: 0.9;
}

/* Floating Art Elements - Removed, using overlay instead */

/* Vertical Line - Removed */

/* Main Content - Removed for cleaner look */

/* Instagram Icon */
.instagram-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.instagram-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.instagram-link:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Animations */

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        top: 20px;
        left: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo-section {
        top: 30px;
    }
    
    .main-logo {
        font-size: 24px;
    }
    
    .customer-logo {
        max-width: 400px;
        max-height: 160px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    /* Main content removed */
    
    /* Floating circles removed */
    
    /* Vertical line removed */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .content-overlay {
        padding: 20px 30px;
    }
    
    .main-logo {
        font-size: 20px;
    }
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.page-transition-content {
    text-align: center;
    color: white;
}

.transition-logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: logoReveal 0.8s ease forwards;
}

.transition-logo-image {
    max-width: 300px;
    max-height: 120px;
    width: auto;
    height: auto;
    filter: brightness(0) contrast(1.2);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: logoReveal 0.8s ease forwards;
}

.transition-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.6s ease 0.3s forwards;
}

.transition-spinner {
    width: 60px;
    height: 60px;
    margin: 30px auto 0;
    position: relative;
    opacity: 0;
    animation: spinnerReveal 0.6s ease 0.6s forwards;
}

.transition-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.transition-spinner::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 2px solid transparent;
    border-top: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-gif {
    width: 200px;
    height: auto;
    object-fit: contain;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.7);
        filter: brightness(0.3) contrast(0.3);
    }
    25% {
        opacity: 0.4;
        transform: translateY(35px) scale(0.8);
        filter: brightness(0.6) contrast(0.6);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px) scale(1.05);
        filter: brightness(1.0) contrast(1.0);
    }
    75% {
        opacity: 0.9;
        transform: translateY(-10px) scale(1.1);
        filter: brightness(1.3) contrast(1.3);
    }
    90% {
        opacity: 1;
        transform: translateY(2px) scale(0.98);
        filter: brightness(1.15) contrast(1.15);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: brightness(1.1) contrast(1.1);
    }
}

@keyframes textReveal {
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

@keyframes spinnerReveal {
    to {
        opacity: 1;
    }
}

/* Page Fade Effects */
.page-fade-in {
    animation: pageFadeIn 0.8s ease forwards;
}

.page-fade-out {
    animation: pageFadeOut 0.6s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navigation {
        position: fixed !important;
        top: 80px !important;
        left: 15px !important;
        z-index: 10000 !important;
    }
    
    .nav-toggle {
        z-index: 10000 !important;
        display: flex !important;
        margin-top: 0 !important;
    }
    
    .instagram-icon {
        top: 80px !important;
        right: 15px !important;
        margin-top: 0 !important;
    }
    
    .instagram-icon::before {
        display: none !important;
    }
    
    .instagram-icon::after {
        display: none !important;
    }
    
    .instagram-line {
        display: none !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 60px !important;
        left: 20px !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
        padding: 8px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
        display: none !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 120px !important;
        max-height: 150px !important;
        z-index: 99999 !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        transition: all 0.2s ease !important;
        overflow: hidden !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        z-index: 99999 !important;
    }
    
    .nav-menu.show {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        z-index: 99999 !important;
    }
    
    .nav-link {
        color: #333333 !important;
        text-decoration: none !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
        padding: 8px 12px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        transition: background-color 0.2s ease !important;
        display: block !important;
    }
    
    .nav-link:last-child {
        border-bottom: none !important;
    }
    
    .nav-link:hover {
        background-color: #f5f5f5 !important;
        color: #000000 !important;
    }
}

/* Desktop Layout */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
}