/* NQ Tenpin Booking System - Home/Landing Page */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-12)) var(--space-6) var(--space-12);
    position: relative;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: -4s;
}

.hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    right: 20%;
    animation-delay: -2s;
}

.hero__content {
    text-align: center;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: var(--space-6);
}

.hero__title span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: var(--leading-relaxed);
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

/* Booking Options Grid */

.booking-options__title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.booking-options__subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto var(--space-12);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.booking-grid--5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

/* Features Section */
.features {
    padding: var(--space-20) 0;
    background: var(--bg-darker);
}

.features__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--primary);
}

.feature-card__title {
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.feature-card__description {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: var(--space-16);
    padding: var(--space-16) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat {
    text-align: center;
}

.stat__value {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat__label {
    color: var(--text-muted);
    margin-top: var(--space-2);
}

/* Contact Section */
.contact {
    padding: var(--space-20) 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-card__title {
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.contact-card__value {
    color: var(--text-muted);
}

.contact-card__value a {
    color: var(--primary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-grid,
    .booking-grid--5 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-8)) var(--space-4) var(--space-8);
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .booking-grid,
    .booking-grid--5 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
}

