/* =========================================
   VARIABLES & GLOBALS - GROSSO SOCIAL EVENTS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;700&family=Montserrat:wght@100;200;300;400;600&display=swap');

:root {
    /* Colors - Modern Fuchsia Darkness */
    --fuchsia: #FF00FF;
    --fuchsia-dark: #330033;
    --black: #050505;
    --white: #ffffff;
    
    --bg-main: radial-gradient(circle at center, var(--fuchsia-dark) 0%, var(--black) 100%);
    
    --text-light: var(--white);
    --text-fuchsia: var(--fuchsia);
    
    --accent: var(--fuchsia);
    
    /* Layout */
    --container-w: 1400px;
    --section-pad: 5rem 2rem;
    --section-pad-sm: 3rem 2rem;
    
    /* Animations & Transitions */
    --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--black);
}

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

body {
    background: var(--bg-main);
    background-attachment: fixed;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: none;
    font-weight: 300; /* Fine typography */
    letter-spacing: 1px;
}

h1 { font-size: clamp(3.5rem, 10vw, 7rem); line-height: 1; margin-bottom: 1.5rem; color: var(--white); }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 2.5rem; color: var(--fuchsia); }
h3 { font-size: clamp(1rem, 1.5vw, 1.4rem); margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 200; text-transform: uppercase; letter-spacing: 4px; }
h4 { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 300; color: var(--fuchsia); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 5px; }

p { font-size: 1rem; opacity: 0.7; font-weight: 200; }
.lead-text { font-size: 1.2rem; font-weight: 200; color: var(--white); max-width: 900px; line-height: 1.8; margin-top: 1rem; opacity: 0.9; }

.text-outline {
    color: var(--white);
    opacity: 1;
}

.text-fuchsia { color: var(--fuchsia); }
.text-center { text-align: center; }

/* =========================================
   LAYOUT UTILS
   ========================================= */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    width: 100%;
}

.section { padding: var(--section-pad); }
.padding-sm { padding: var(--section-pad-sm); }

.grid { display: grid; gap: 4rem; }
.two-cols { grid-template-columns: 1.2fr 0.8fr; }
.align-center { align-items: center; }

/* =========================================
   COMPONENTS
   ========================================= */
.badge {
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: var(--fuchsia);
    background: transparent;
    font-size: 0.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-family: var(--font-body);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s var(--transition-smooth);
    gap: 1rem;
    border-radius: 0;
}

.btn-primary {
    background: var(--fuchsia);
    color: var(--white);
    border: 1px solid var(--fuchsia);
}

.btn-primary:hover {
    background: transparent;
    color: var(--fuchsia);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--fuchsia);
    color: var(--fuchsia);
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: absolute; /* Changed from fixed to absolute */
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 4rem;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

header.scrolled {
    display: none; /* Hide any scroll-triggered changes since it's no longer following */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* No space between image and text */
}

.logo-img {
    height: 100px; /* Even larger logo */
    width: auto;
    object-fit: contain;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--fuchsia);
    opacity: 0.9;
    margin-top: -5px; /* Pull it up closer to the logo */
}

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35; /* Slightly more faded image */
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.4) 0%, var(--black) 80%); /* Darker overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* =========================================
   CATALOG GRIDS (CLEAN SQUARES)
   ========================================= */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.catalog-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    transition: var(--transition-smooth);
}

.catalog-card:hover {
    border-color: var(--fuchsia); /* Interactive border */
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.catalog-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--fuchsia);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.catalog-card:hover::after {
    opacity: 0.3; /* Stronger fuchsia shading */
}

.card-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 2s ease;
}

.catalog-card:hover .card-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%); /* Stronger shadow */
    z-index: 1;
}

.card-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 0; /* No padding to allow full-width band */
    z-index: 3;
}

.card-info h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 0, 255, 0.7); /* Slightly stronger fuchsia */
    padding: 1.2rem 1rem;
    width: 100%; /* Full width band */
    text-align: center; /* Symmetrical centering */
}

/* =========================================
   LIGHTBOX / GALLERY
   ========================================= */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain; /* No zoom, fits as is */
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.lightbox-close {
    position: fixed;
    top: 2rem; right: 2rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2020;
}

.lightbox-close:hover { color: var(--fuchsia); }

.lightbox-arrow {
    position: fixed; /* Relative to viewport */
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: var(--white);
    cursor: pointer;
    background: rgba(255, 0, 255, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s;
    user-select: none;
    z-index: 2010;
}

.lightbox-arrow:hover {
    background: var(--fuchsia);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left { left: 2rem; }
.arrow-right { right: 2rem; }

@media (max-width: 768px) {
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }
    .lightbox-arrow { font-size: 2rem; padding: 0.5rem; }
}

/* =========================================
   VALUE PROP / TEXT BLOCKS
   ========================================= */
.section-header {
    margin-bottom: 3rem;
}

.value-list { display: grid; gap: 4rem; margin-top: 2rem; }
.value-list li {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 0, 255, 0.1);
    padding-left: 2rem;
}

.value-list i {
    font-size: 1.5rem;
    color: var(--fuchsia);
}

.value-list strong {
    font-family: var(--font-body);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    background: #000;
}

.image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 10rem 2rem;
    border-top: 1px solid rgba(255, 0, 255, 0.05);
}

.footer-brand .logo-main { font-size: 2rem; }

/* =========================================
   REVEAL ANIMATION
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s var(--transition-smooth);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    header { padding: 1.5rem 2rem; }
    .catalog-grid { grid-template-columns: 1fr; }
}
