/* ==========================================================================
   Bizim Kafe Çayko - Premium CSS Stylesheet
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    /* Color Palette */
    --primary: #d4af37;          /* Premium Gold */
    --primary-rgb: 212, 175, 55;
    --primary-hover: #c59b27;
    --primary-light: rgba(212, 175, 55, 0.1);
    
    --bg-dark: #0f0c0a;          /* Deep Obsidian/Charcoal */
    --bg-darker: #070605;
    --bg-light: #f5f2eb;         /* Warm Ivory/Cream */
    
    --text-light: #f5f2eb;
    --text-muted: #bcb5a8;
    --text-dark: #2a241e;
    
    --accent-red: #e74c3c;
    --accent-gold-glow: rgba(212, 175, 55, 0.35);
    
    /* Performer Glowing Backdrops */
    --glow-gold: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
    --glow-rose: radial-gradient(circle, rgba(255, 111, 145, 0.4) 0%, rgba(255, 111, 145, 0) 70%);
    --glow-cyan: radial-gradient(circle, rgba(0, 204, 255, 0.4) 0%, rgba(0, 204, 255, 0) 70%);
    --glow-violet: radial-gradient(circle, rgba(162, 89, 255, 0.4) 0%, rgba(162, 89, 255, 0) 70%);
    
    /* Glassmorphism Config */
    --glass-bg: rgba(26, 20, 16, 0.65);
    --glass-bg-hover: rgba(38, 28, 22, 0.85);
    --glass-border: rgba(212, 175, 55, 0.12);
    --glass-border-hover: rgba(212, 175, 55, 0.35);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Offsets */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-quick: all 0.2s ease;
    --container-width: 1200px;
}

/* 1. Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: #2a241e;
    border: 2px solid var(--bg-darker);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select {
    font-family: inherit;
}

/* 2. Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(245, 242, 235, 0.3);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-darker);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary);
}

/* Premium Glassmorphism Card Base */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.65);
}

/* Special image-only glass card */
.glass-card-only-img {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    transition: var(--transition-smooth);
    overflow: hidden;
    padding: 0;
}

.glass-card-only-img:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.65);
    transform: translateY(-5px);
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-light);
}

.title-divider {
    width: 70px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-description {
    max-width: 650px;
    margin: 25px auto 0;
    color: var(--text-muted);
}

/* 3. Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 12, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.6rem;
}

.logo-text {
    color: var(--text-light);
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 4. Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 750px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 35px;
    font-family: var(--font-heading);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

.arrow-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: bounceArrow 1.8s infinite;
}

/* 5. About Section */
.about-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.about-grid {
    align-items: center;
}

.about-content-card {
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.quote-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 12rem;
    color: rgba(212, 175, 55, 0.03);
    pointer-events: none;
}

.about-content-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text.highlight {
    font-weight: 500;
    color: var(--text-light);
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin: 25px 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--primary);
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-card .visual-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-visual-card:hover .about-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.overlay-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 6. Live Music Callout Section */
.live-music-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.music-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.pulse-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    animation: iconPulse 2s infinite;
}

.music-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.music-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* 7. Performers Section (Sahne Günleri) */
.performers-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
}

.performers-grid {
    align-items: center;
}

.performer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.performer-img-container {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: rgba(10, 8, 6, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glowing Backdrops behind performers */
.performer-glow {
    position: absolute;
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-smooth);
    opacity: 0.75;
}

.glow-gold { background: var(--glow-gold); }
.glow-rose { background: var(--glow-rose); }
.glow-cyan { background: var(--glow-cyan); }
.glow-violet { background: var(--glow-violet); }

.performer-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 2;
    transition: var(--transition-smooth);
    position: relative;
}



/* Crisp centered HTML day badge overlay */
.performer-html-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: #ff6f00; /* Beautiful orange */
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.45);
    pointer-events: none;
}

/* Hover effects for performers */
.performer-card:hover .performer-img {
    transform: none;
}

.performer-card:hover .performer-glow {
    transform: scale(1.15);
    opacity: 0.95;
}

/* 8. Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.menu-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.menu-tabs {
    background: rgba(15, 12, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 40px;
    padding: 6px;
    display: flex;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--bg-darker);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

.menu-single-display {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.menu-img-wrapper-full {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    cursor: zoom-in;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--glass-shadow);
}

.menu-featured-img-full {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.menu-img-wrapper-full:hover .menu-featured-img-full {
    transform: scale(1.03);
}

/* Hover Zoom Overlay Hint */
.menu-zoom-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 10, 0.4);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    z-index: 5;
    pointer-events: none;
}

.menu-img-wrapper-full:hover .menu-zoom-hint {
    opacity: 1;
}

.menu-zoom-hint i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.menu-zoom-hint span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* 9. Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
}

.testimonials-grid {
    align-items: stretch;
}

.testimonial-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars-row {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.author-name {
    font-size: 1.05rem;
    color: var(--text-light);
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.quote-end-icon {
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.05);
}

/* 10. Contact Section - Full Layout */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.contact-grid-full {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 40px;
}

.contact-info-column-full {
    display: flex;
    flex-direction: column;
}

.contact-card-full {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-full h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-subtext {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.contact-detail-item:last-of-type {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pulse-phone {
    animation: iconPulse 1.8s infinite;
}

.detail-text strong {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
    color: var(--text-light);
}

.detail-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.phone-link-big {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
}

.phone-link-big:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.contact-detail-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.1);
    margin: 15px 0 25px;
    width: 100%;
}

.social-links-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 242, 235, 0.08);
}

.social-links-wrapper strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(245, 242, 235, 0.03);
    border: 1px solid rgba(245, 242, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.map-column-full {
    display: flex;
    flex-direction: column;
}

.map-container-full {
    overflow: hidden;
    padding: 12px;
    height: 100%;
    min-height: 450px;
    border: 1px solid var(--glass-border);
}

.map-container-full iframe {
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

/* 11. Footer */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 60px 0 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo span {
    color: var(--text-light);
}

.footer-logo span span {
    color: var(--primary);
}

.footer-quote {
    color: var(--text-muted);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    padding-top: 25px;
    border-top: 1px solid rgba(245, 242, 235, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.author-credits {
    margin-top: 6px;
    color: var(--primary);
    opacity: 0.8;
}

/* 12. Interactive Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 5, 4, 0.95);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-quick);
    z-index: 10002;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-content {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transition: transform 0.25s cubic-bezier(0.1, 0.8, 0.2, 1);
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-content:active {
    cursor: grabbing;
}

/* Lightbox zoom control panel */
.lightbox-zoom-controls {
    position: absolute;
    bottom: -60px;
    display: flex;
    gap: 15px;
    background: rgba(26, 20, 16, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 24px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.lightbox-zoom-controls button {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.15rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.lightbox-zoom-controls button:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.05);
}

/* 13. Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollMouse {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 22px;
        opacity: 0.1;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(6px) rotate(45deg); }
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   14. Responsive Styles (Mobile & Tablet)
   ========================================================================== */

/* Tablet & Mobile Layout Shifts */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        height: 400px;
    }
    
    .contact-grid-full {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container-full {
        min-height: 400px;
    }
}

/* 15. Google Review Section Styling */
.google-review-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.google-review-card {
    max-width: 680px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.75) 0%, rgba(15, 12, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

/* Accent lighting glow in review card */
.google-review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.google-logo-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.google-icon-large {
    font-size: 2.2rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.google-rating-score {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    z-index: 2;
    letter-spacing: -0.02em;
}

.stars-row-centered {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    gap: 6px;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.google-rating-meta {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    z-index: 2;
}

.google-review-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    z-index: 2;
    max-width: 560px;
}

.btn-google-review {
    z-index: 2;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-google-review:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.google-review-cta-row {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.google-review-hint-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* Mobile Layout Shifts (Phones) */
@media (max-width: 768px) {
    /* Header Responsive */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .navbar {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 12, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 30px 40px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-smooth);
        pointer-events: none;
    }
    
    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-header {
        display: none;
    }
    
    /* Hamburger Active Animation */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Responsive */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Grid Shifts */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Sections Padding */
    .about-section, 
    .performers-section, 
    .menu-section, 
    .testimonials-section, 
    .contact-section {
        padding: 70px 0;
    }
    
    .about-content-card {
        padding: 30px 20px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .visual-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    /* Performers height mobile - Perfect Square to Show Full Day & Name Ribbons */
    .performer-img-container {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .contact-card-full {
        padding: 30px 20px;
    }
    
    .phone-link-big {
        font-size: 1.6rem;
    }
    
    /* Lightbox controls adjustment for small devices */
    .lightbox-zoom-controls {
        bottom: -55px;
        padding: 4px 16px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 2.5rem;
    }
}
