/* LondonVeelvetHall.com - Premium Gaming Platform Styles */
/* Color Palette: Veelvet Gallery Theme */

:root {
    /* Gallery Stone Base */
    --lvhGalleryStone: #F4F3F1;
    --lvhPlaster: #E9E6E1;
    --lvhInk: #12151C;
    --lvhMuted: #5A6470;

    /* Veelvet Accents */
    --lvhVeelvetNavy: #141B3A;
    --lvhVeelvetWine: #2A0F24;
    --lvhVeelvetTeal: #0F2A2C;

    /* Art Accents */
    --lvhNeonCoral: #FF5C8A;
    --lvhGoldLine: #C8A15A;

    /* Functional */
    --lvhBorder: rgba(18, 21, 28, 0.10);
    --lvhShadowSubtle: 0 2px 8px rgba(18, 21, 28, 0.08);
    --lvhShadowMedium: 0 8px 24px rgba(18, 21, 28, 0.12);

    /* Transitions */
    --lvhTransitionFast: 0.2s ease;
    --lvhTransitionMedium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --lvhTransitionSlow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zade Exo', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--lvhInk);
    background-color: var(--lvhGalleryStone);
    overflow-x: hidden;
}

body.lvhNoScroll {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--lvhVeelvetNavy);
}

.lvhLabel {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Age Verification Modal */
.lvhAgeModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lvhVeelvetNavy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity var(--lvhTransitionMedium);
}

/* Hide for users who already verified age (checked via immediate script) */
html.lvhAgeVerified .lvhAgeModal {
    display: none !important;
}

/* Hidden state */
.lvhAgeModal.lvhHidden {
    opacity: 0;
    pointer-events: none;
}

.lvhAgeModalContent {
    background: var(--lvhGalleryStone);
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--lvhGoldLine);
    box-shadow: var(--lvhShadowMedium);
}

.lvhAgeTitle {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--lvhVeelvetNavy);
}

.lvhAgeText {
    color: var(--lvhMuted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.lvhAgeButtons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.lvhAgeBtn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--lvhTransitionFast);
}

.lvhAgeBtnConfirm {
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
}

.lvhAgeBtnConfirm:hover {
    background: var(--lvhVeelvetTeal);
    transform: translateY(-2px);
}

.lvhAgeBtnDecline {
    background: var(--lvhPlaster);
    color: var(--lvhMuted);
}

.lvhAgeBtnDecline:hover {
    background: var(--lvhVeelvetWine);
    color: var(--lvhGalleryStone);
}

/* Cookie Banner */
.lvhCookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--lvhTransitionMedium);
}

.lvhCookieBanner.lvhVisible {
    transform: translateY(0);
}

.lvhCookieContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.lvhCookieText {
    flex: 1;
    font-size: 0.95rem;
}

.lvhCookieButtons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lvhCookieBtn {
    padding: 0.75rem 1.5rem;
    background: var(--lvhNeonCoral);
    color: var(--lvhGalleryStone);
    border: none;
    border-radius: 6px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--lvhTransitionFast);
    white-space: nowrap;
}

.lvhCookieBtn:hover {
    background: var(--lvhVeelvetWine);
    transform: scale(1.05);
}

.lvhCookieLink {
    color: var(--lvhGoldLine);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--lvhTransitionFast);
}

.lvhCookieLink:hover {
    color: var(--lvhNeonCoral);
}

/* Navigation */
.lvhNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(244, 243, 241, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lvhBorder);
    z-index: 1000;
    transition: all var(--lvhTransitionMedium);
}

.lvhNavContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lvhLogo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--lvhVeelvetNavy);
    text-decoration: none;
    transition: all var(--lvhTransitionFast);
}

.lvhLogoIcon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform var(--lvhTransitionFast);
}

.lvhLogo:hover {
    color: var(--lvhVeelvetWine);
}

.lvhLogo:hover .lvhLogoIcon {
    transform: scale(1.1) rotate(5deg);
}

.lvhNavMenu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.lvhNavLink {
    color: var(--lvhInk);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--lvhTransitionFast);
}

.lvhNavLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lvhNeonCoral);
    transition: width var(--lvhTransitionMedium);
}

.lvhNavLink:hover {
    color: var(--lvhVeelvetNavy);
}

.lvhNavLink:hover::after {
    width: 100%;
}

.lvhNavMobileToggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.lvhNavMobileToggle span {
    width: 24px;
    height: 2px;
    background: var(--lvhVeelvetNavy);
    transition: all var(--lvhTransitionFast);
}

/* Hero Section */
.lvhHero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.lvhHeroBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lvhHeroBackground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 27, 58, 0.85) 0%, rgba(42, 15, 36, 0.75) 100%);
}

.lvhHeroContainer {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhHeroContent {
    max-width: 600px;
}

.lvhHeroTitle {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--lvhGalleryStone);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.lvhHeroSubtitle {
    font-size: 1.1rem;
    color: var(--lvhPlaster);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.lvhHeroActions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.lvhBtn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--lvhTransitionMedium);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.lvhBtnPrimary {
    background: var(--lvhNeonCoral);
    color: var(--lvhGalleryStone);
}

.lvhBtnPrimary:hover {
    background: var(--lvhVeelvetWine);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 92, 138, 0.3);
}

.lvhBtnSecondary {
    background: transparent;
    color: var(--lvhGalleryStone);
    border: 2px solid var(--lvhGoldLine);
}

.lvhBtnSecondary:hover {
    background: var(--lvhGoldLine);
    color: var(--lvhVeelvetNavy);
    transform: translateY(-3px);
}

.lvhBtnAccent {
    background: var(--lvhVeelvetTeal);
    color: var(--lvhGalleryStone);
}

.lvhBtnAccent:hover {
    background: var(--lvhVeelvetNavy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 42, 44, 0.4);
}

.lvhBtnGame {
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
}

.lvhBtnGame:hover {
    background: var(--lvhNeonCoral);
    transform: translateY(-2px);
}

/* Section Base */
.lvhAbout,
.lvhContactCta,
.lvhJoin,
.lvhGames,
.lvhBenefits {
    padding: 6rem 0;
}

.lvhAboutContainer,
.lvhContactCtaContainer,
.lvhJoinContainer,
.lvhGamesContainer,
.lvhBenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lvhSectionTitle {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lvhVeelvetNavy);
}

/* About Section */
.lvhAboutText {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--lvhMuted);
}

.lvhAboutStats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.lvhStatItem {
    text-align: center;
    padding: 2rem;
    background: var(--lvhGalleryStone);
    border-radius: 12px;
    border: 1px solid var(--lvhBorder);
    min-width: 150px;
    transition: all var(--lvhTransitionMedium);
}

.lvhStatItem:hover {
    transform: translateY(-5px);
    box-shadow: var(--lvhShadowMedium);
    border-color: var(--lvhGoldLine);
}

.lvhStatNumber {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lvhNeonCoral);
    margin-bottom: 0.5rem;
}

.lvhStatLabel {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: var(--lvhMuted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact CTA Section */
.lvhContactCta {
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
}

.lvhContactCtaTitle {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--lvhGalleryStone);
}

.lvhContactCtaText {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--lvhPlaster);
    font-size: 1.05rem;
}

.lvhContactCta .lvhBtn {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* Join Section */
.lvhJoin {
    background: var(--lvhVeelvetWine);
    color: var(--lvhGalleryStone);
}

.lvhJoinTitle {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--lvhGalleryStone);
}

.lvhJoinText {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--lvhPlaster);
    font-size: 1.05rem;
}

.lvhJoin .lvhBtn {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* Games Section */
.lvhGames {
    background: var(--lvhPlaster);
}

.lvhGamesGrid {
    display: grid;
    gap: 2rem;
}

.lvhGameCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--lvhGalleryStone);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--lvhShadowSubtle);
    transition: all var(--lvhTransitionMedium);
}

.lvhGameCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--lvhShadowMedium);
}

.lvhGameImage {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.lvhGameImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--lvhTransitionSlow);
}

.lvhGameCard:hover .lvhGameImage img {
    transform: scale(1.05);
}

.lvhGameInfo {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lvhGameTitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--lvhVeelvetNavy);
}

.lvhGameDescription {
    color: var(--lvhMuted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lvhGameInfo .lvhBtn {
    align-self: flex-start;
}

/* Benefits Section */
.lvhBenefits {
    background: var(--lvhGalleryStone);
}

.lvhBenefitsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lvhBenefitCard {
    background: var(--lvhGalleryStone);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--lvhBorder);
    transition: all var(--lvhTransitionMedium);
}

.lvhBenefitCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--lvhShadowMedium);
    border-color: var(--lvhGoldLine);
}

.lvhBenefitIcon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lvhVeelvetNavy);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--lvhGoldLine);
}

.lvhBenefitTitle {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--lvhVeelvetNavy);
}

.lvhBenefitDescription {
    color: var(--lvhMuted);
    line-height: 1.6;
}

/* Footer */
.lvhFooter {
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
    padding: 4rem 0 2rem;
}

.lvhFooterDisclaimer {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--lvhPlaster);
    border-bottom: 1px solid var(--lvhBorder);
    padding-bottom: 2rem;
}

.lvhFooterDisclaimer strong {
    color: var(--lvhNeonCoral);
}

.lvhFooterContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.lvhFooterTitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--lvhGoldLine);
}

.lvhFooterLinks {
    list-style: none;
}

.lvhFooterLinks li {
    margin-bottom: 0.5rem;
}

.lvhFooterLinks a {
    color: var(--lvhPlaster);
    text-decoration: none;
    transition: color var(--lvhTransitionFast);
}

.lvhFooterLinks a:hover {
    color: var(--lvhNeonCoral);
}

.lvhFooterContactItem {
    margin-bottom: 0.75rem;
    color: var(--lvhPlaster);
}

.lvhFooterText {
    color: var(--lvhPlaster);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.lvhFooterGamingLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.lvhFooterGamingLinks a {
    display: block;
    transition: transform var(--lvhTransitionFast), opacity var(--lvhTransitionFast);
}

.lvhFooterGamingLinks a img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform var(--lvhTransitionFast);
}

.lvhFooterGamingLinks a:hover {
    transform: translateY(-2px);
}

.lvhFooterGamingLinks a:hover img {
    transform: scale(1.05);
}

.lvhFooterBottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--lvhBorder);
    color: var(--lvhMuted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lvhLogo {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .lvhLogoIcon {
        width: 28px;
        height: 28px;
    }

    .lvhFooterGamingLinks {
        justify-content: center;
        gap: 0.75rem;
    }

    .lvhNavMenu {
        display: none;
    }

    .lvhNavMobileToggle {
        display: flex;
    }

    .lvhNavMenu.lvhMobileOpen {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--lvhGalleryStone);
        padding: 2rem;
        box-shadow: var(--lvhShadowMedium);
    }

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

    .lvhGameImage {
        min-height: 200px;
    }

    .lvhHeroActions {
        flex-direction: column;
    }

    .lvhHeroActions .lvhBtn {
        width: 100%;
    }

    .lvhCookieContent {
        flex-direction: column;
        text-align: center;
    }

    .lvhCookieButtons {
        flex-direction: column;
        width: 100%;
    }

    .lvhCookieBtn {
        width: 100%;
    }

    .lvhAgeButtons {
        flex-direction: column;
    }

    .lvhAgeBtn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lvhLogo {
        font-size: 1rem;
        gap: 0.4rem;
    }

    .lvhLogoIcon {
        width: 24px;
        height: 24px;
    }

    .lvhFooterGamingLinks {
        justify-content: center;
    }

    .lvhFooterGamingLinks a img {
        height: 35px;
    }

    .lvhAbout,
    .lvhContactCta,
    .lvhJoin,
    .lvhGames,
    .lvhBenefits {
        padding: 4rem 0;
    }

    .lvhAboutStats {
        grid-template-columns: repeat(2, 1fr);
    }

    .lvhStatItem {
        min-width: 120px;
        padding: 1.5rem;
    }

    .lvhStatNumber {
        font-size: 2rem;
    }
}

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

.lvhAnimateFadeIn {
    animation: lvhFadeIn var(--lvhTransitionMedium) ease forwards;
}

@keyframes lvhSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lvhAnimateSlideLeft {
    animation: lvhSlideInLeft var(--lvhTransitionMedium) ease forwards;
}

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

.lvhAnimateSlideRight {
    animation: lvhSlideInRight var(--lvhTransitionMedium) ease forwards;
}

/* Scroll animations */
.lvhScrollReveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--lvhTransitionSlow);
}

.lvhScrollReveal.lvhVisible {
    opacity: 1;
    transform: translateY(0);
}
