/* ============================ Las Carinosas - Home Page Styles ============================ */

/* ============ Three.js Canvas Background ============ */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* ============ Page Wrapper Override for Home ============ */
.page-wrapper {
    padding-top: 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* ============ Hero Section ============ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    width: min(80vw, 600px);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--lc-gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

/* ============ Parallax Spacers ============ */
.parallax-spacer {
    height: 60vh;
    background: transparent;
}

.parallax-spacer.small {
    height: 30vh;
}

/* ============ Content Sections ============ */
.content-section {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 5rem 0;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.95));
    pointer-events: none;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.95));
    pointer-events: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ Gallery Grid for Home ============ */
.content-section .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.content-section .gallery-item {
    aspect-ratio: 3/4;
}

/* ============ Featured Event Card ============ */
.featured-event {
    max-width: 700px;
    margin: 0 auto;
}

.featured-event .event-image {
    height: 350px;
    object-fit: contain;
    background: var(--lc-darker);
    cursor: pointer;
}

/* ============ VIP Features ============ */
.vip-feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vip-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--lc-gold);
    transform: translateY(-5px);
}

.vip-feature h4 {
    font-family: var(--font-display);
    margin: 1rem 0 0.5rem;
}

/* ============ Scroll Indicator ============ */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--lc-gray);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============ Mobile Responsiveness ============ */
@media (max-width: 991.98px) {
    .content-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-logo {
        width: 90vw;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .parallax-spacer {
        height: 40vh;
    }

    .parallax-spacer.small {
        height: 20vh;
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-section .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .featured-event .event-image {
        height: 250px;
        object-fit: contain;
    }

    .vip-feature {
        padding: 1.5rem;
    }
}
