/* LIT Gaming Lounge | Official Stylesheet 
    Theme: Cyber-Carbon Next-Gen
*/

:root {
    --bg-carbon: #080808;
    --purple: #635BFF;
    --mint: #00FFC2;
    --yellow: #FFF01F;
    --glass: rgba(255, 255, 255, 0.03);
}

/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-carbon);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Typography */
.orbitron { font-family: 'Orbitron', sans-serif; }
.purple-text { color: var(--purple); }
.mint-text { color: var(--mint); }
.yellow-text { color: var(--yellow); }

.logo-text {
    font-family: 'Orbitron';
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

/* Interior Backgrounds with Parallax */
.interior-bg {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pc-zone-bg { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/pc-interior.jpg'); }
.lounge-zone-bg { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/lounge-interior.jpg'); }

.mw-50 { max-width: 500px; }

/* Navbar */
.glass-nav {
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 91, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-link {
    font-family: 'Orbitron';
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-left: 20px;
    color: rgba(255,255,255,0.8) !important;
}

.nav-link:hover {
    color: var(--mint) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(99, 91, 255, 0.15), transparent);
}

.hero-title { 
    font-family: 'Orbitron'; 
    font-size: clamp(2.5rem, 8vw, 5rem); 
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, var(--purple), var(--mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Cards & Badges */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.border-purple { border-color: var(--purple) !important; }
.border-mint { border-color: var(--mint) !important; }
.border-yellow { border-color: var(--yellow) !important; }

.google-rating-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 240, 31, 0.3);
    font-size: 0.85rem;
}

.badge-lit {
    position: absolute; top: 15px; right: 15px;
    background: var(--yellow); color: #000; font-size: 10px; padding: 2px 10px; font-weight: bold; border-radius: 4px;
}

/* Pricing Elements */
.price { font-family: 'Orbitron'; font-size: 3rem; font-weight: bold; }
.spotlight { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 240, 31, 0.2); }

/* Buttons & UI Components */
.cta-purple { 
    background: var(--purple); 
    color: white !important; 
    font-weight: bold; 
    border-radius: 8px; 
    padding: 12px 25px; 
    transition: 0.3s;
}

.cta-purple:hover { 
    background: #4f46e5; 
    box-shadow: 0 0 20px rgba(99, 91, 255, 0.4); 
}

.btn-outline-mint { border: 1px solid var(--mint); color: var(--mint);   align-content: center;}
.btn-outline-mint:hover { background: var(--mint); color: #000; box-shadow: 0 0 20px var(--mint); }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background: var(--mint);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 30px; box-shadow: 0 0 20px var(--mint); z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); color: #000; }

/* Reviews Section */
.google-review-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: 0.3s ease;
}

.google-review-card:hover {
    border-color: var(--mint);
    background: #1a1a1a;
}

.featured-review {
    border: 1px solid var(--purple);
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.1);
}

.google-trust-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modals & Maps */
.modal-content {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(99, 91, 255, 0.3);
}

iframe {
    filter: grayscale(0.2) contrast(1.1) brightness(0.9);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .interior-bg { height: 50vh; background-attachment: scroll; }
    .mw-50 { max-width: 100%; }
    .price { font-size: 2.2rem; }
    .spotlight { transform: scale(1); }
    .hero-section { text-align: center; }
}

.google-trust-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 194, 0.2);
}

.google-reviews-wrapper {
    border: 1px solid rgba(99, 91, 255, 0.2);
    min-height: 400px;
}

/* Stylizing the 3rd party widget if it uses iFrames */
iframe[src*="google"] {
    filter: invert(0.9) hue-rotate(180deg) brightness(1.2); /* Makes white widgets dark mode */
}

.google-review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--mint); /* Cyberpunk accent */
}

.google-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--mint);
}

.featured-review {
    border-top: 2px solid var(--purple);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.cyber-footer {
    background-color: #050505;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--mint);
    padding-left: 5px;
}

/* Status Dot Animation */
.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--mint);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--mint);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 15px var(--mint); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.bg-black {
    background-color: #000 !important;
}

/* Ambience Gallery Container */
.ambience-gallery {
    padding: 10px 0;
    overflow-x: auto;
    cursor: grab;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.ambience-gallery::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    padding: 10px;
}

.gallery-item {
    min-width: 300px;
    transition: 0.4s ease;
    border: 1px solid rgba(99, 91, 255, 0.2) !important;
}

.img-container {
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Cyber Hover Effect */
.gallery-item:hover {
    border-color: var(--mint) !important;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 194, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zooms image inside the container */
}

.gallery-caption {
    padding: 10px;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-section {
    position: relative;
    height: 100vh;
    /* Path to your 2200px wide image */
    background-image: url(''); 
    background-size: cover;
    background-position: center 30%; /* Adjusts vertical focus on the screens/neon */
    background-repeat: no-repeat;
}

/* The Secret Sauce: Darkens the image so text pops */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.7) 0%,
        rgba(8, 8, 8, 0.9) 100%
    );
    z-index: 1;
}

.z-2 {
    z-index: 2; /* Ensures content stays above the overlay */
}

/* Optional: Slight animation for the background */
.hero-section {
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { background-scale: 1; }
    to { background-size: 110%; }
}