/* Viva Luxo - Global Styles */

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body { 
    font-family: 'Inter', sans-serif; 
}

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

@media (min-width: 768px) {
    .md\:text-7xl {
        font-size: 3.5rem;
        line-height: 1;
    }
}

/* Mobile specific heading adjustments */
@media (max-width: 767px) {
    .text-5xl { font-size: 2.5rem !important; }
    .text-6xl { font-size: 3rem !important; }
    .text-9xl { font-size: 4rem !important; }
}

.font-serif { 
    font-family: 'Cormorant Garamond', serif; 
}

/* Scrollbar behaviors */
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}

.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Grid Layouts */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* UI Elements */
.hero-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

.transition-slow {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Full-screen Menu Overlay */
#full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 100;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#full-screen-menu.active {
    transform: translateY(0);
}

.menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 100%;
}

.menu-link:hover {
    opacity: 0.6;
}

/* Video Hero Styles */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.mix-blend-difference {
    mix-blend-mode: difference;
}

