/* ==========================================
   EGE TAVŞAN OFFICIAL PORTAL - STYLE SHEET
   ========================================== */

/* ------------------------------------------
   1. Theme Variable Definitions
   ------------------------------------------ */

/* Theme 1: Ege's Warm Vibe (Sunset & Charcoal) */
.theme-ege {
    --bg-gradient: radial-gradient(circle at 50% 10%, #1c130f 0%, #0d0a08 100%);
    --panel-bg: rgba(22, 17, 14, 0.65);
    --panel-border: rgba(230, 126, 34, 0.15);
    --text-primary: #f5f0eb;
    --text-secondary: #cba895;
    --accent-color: #d35400; /* Warm Amber */
    --accent-secondary: #e67e22;
    --accent-glow: 0 0 20px rgba(211, 84, 0, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --card-radius: 16px;
    --btn-hover-bg: rgba(211, 84, 0, 0.15);
    --badge-color: #e67e22;
    --vinyl-speed: 12s;
    --grid-display: none;
    --glow-avatar: 0 0 25px rgba(230, 126, 34, 0.5);
}

/* Theme 2: Premium Lounge (Gold & Obsidian Velvet) */
.theme-premium {
    --bg-gradient: linear-gradient(135deg, #111111 0%, #1b1b1b 50%, #0a0a0a 100%);
    --panel-bg: rgba(18, 18, 18, 0.8);
    --panel-border: rgba(212, 175, 55, 0.15);
    --text-primary: #fafafa;
    --text-secondary: #b5a27a;
    --accent-color: #d4af37; /* Metallic Gold */
    --accent-secondary: #aa8c2c;
    --accent-glow: 0 0 15px rgba(212, 175, 55, 0.25);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --card-radius: 4px; /* Sharp corners for premium look */
    --btn-hover-bg: rgba(212, 175, 55, 0.08);
    --badge-color: #d4af37;
    --vinyl-speed: 25s; /* Slow premium rotation */
    --grid-display: none;
    --glow-avatar: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Theme 3: Energetic Rave (Neon Cyber Club) */
.theme-energetic {
    --bg-gradient: linear-gradient(180deg, #07020d 0%, #120324 50%, #020005 100%);
    --panel-bg: rgba(15, 2, 28, 0.7);
    --panel-border: rgba(0, 242, 254, 0.25);
    --text-primary: #00f2fe; /* Cyber cyan text */
    --text-secondary: #ec008c; /* Hot pink */
    --accent-color: #00f2fe;
    --accent-secondary: #ec008c;
    --accent-glow: 0 0 25px rgba(0, 242, 254, 0.6);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Orbitron', sans-serif;
    --card-radius: 12px;
    --btn-hover-bg: rgba(0, 242, 254, 0.1);
    --badge-color: #ec008c;
    --vinyl-speed: 4s; /* Fast hyper rotation */
    --grid-display: none;
    --glow-avatar: 0 0 30px rgba(236, 0, 140, 0.8), 0 0 15px rgba(0, 242, 254, 0.8);
}

/* Theme 4: Deep Ambient (Chill Indigo Space) */
.theme-ambient {
    --bg-gradient: radial-gradient(circle at 50% 50%, #0d0f26 0%, #05060f 100%);
    --panel-bg: rgba(18, 22, 47, 0.45);
    --panel-border: rgba(147, 112, 219, 0.15);
    --text-primary: #e6e9fc;
    --text-secondary: #9ea4ca;
    --accent-color: #7b2cbf; /* Chill Purple */
    --accent-secondary: #9d4edd;
    --accent-glow: 0 0 30px rgba(123, 44, 191, 0.35);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --card-radius: 28px; /* Extra rounded pill shapes */
    --btn-hover-bg: rgba(157, 78, 221, 0.12);
    --badge-color: #9d4edd;
    --vinyl-speed: 18s;
    --grid-display: none;
    --glow-avatar: 0 0 30px rgba(157, 78, 221, 0.4);
}

/* Theme 5: Retro Synthwave (80s Grid & Chrome) */
.theme-retro {
    --bg-gradient: linear-gradient(180deg, #10061e 0%, #29083a 60%, #0d0216 100%);
    --panel-bg: rgba(28, 10, 48, 0.75);
    --panel-border: rgba(255, 0, 128, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #39ff14; /* Retro toxic green */
    --accent-color: #ff007f; /* Hot Pink */
    --accent-secondary: #00f0ff;
    --accent-glow: 0 0 20px rgba(255, 0, 127, 0.5);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --card-radius: 8px;
    --btn-hover-bg: rgba(255, 0, 127, 0.15);
    --badge-color: #39ff14;
    --vinyl-speed: 8s;
    --grid-display: block; /* Turn on retro-grid */
    --glow-avatar: 0 0 20px #ff007f, 0 0 10px #00f0ff;
}

/* ------------------------------------------
   2. Base Settings & Resets
   ------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background 0.4s ease, color 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease, border-radius 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: #000;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.5s ease, color 0.5s ease;
    padding-bottom: 50px;
}

/* Base Theme Gradient for Full Screen */
.theme-bg-base {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-gradient);
    z-index: -4;
    transition: background 0.5s ease;
}

/* Global Background Image Layer (Constrained for Portrait on Desktop) */
.global-bg-layer {
    position: fixed;
    top: 0; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 680px; 
    height: 100vh;
    background-size: cover;
    background-position: center 25%;
    opacity: 0.9; 
    transition: opacity 1.2s ease-in-out;
}

#bg-layer-1 {
    background-image: url('assets/bg1.jpg');
    z-index: -3;
}

#bg-layer-2 {
    background-image: url('assets/bg2.jpg');
    z-index: -2;
    opacity: 0; /* Hidden by default, fades in via JS */
}

/* Theme Gradient Overlay (Blends the image into the theme) */
.theme-overlay-layer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-gradient);
    opacity: 0.75; 
    z-index: -1;
    transition: background 0.5s ease;
    pointer-events: none;
}

/* Retro Grid overlay */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 128, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 128, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    display: var(--grid-display);
    animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
    from { background-position: 0 0; }
    to { background-position: 0 800px; }
}

/* Ambient Floating Visuals */
.ambient-visuals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: float-ball 25s infinite alternate ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 10%;
    left: -10%;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: 20%;
    right: -10%;
    animation-delay: -5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--text-secondary);
    top: 60%;
    left: 45%;
    animation-delay: -12s;
}

@keyframes float-ball {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.3); }
}

/* ------------------------------------------
   3. Control Center Header
   ------------------------------------------ */
.control-center {
    width: 100%;
    max-width: 680px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.theme-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selector-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.theme-buttons {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px;
    border-radius: 30px;
    gap: 2px;
}

.theme-btn {
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-btn svg {
    width: 14px;
    height: 14px;
}

.theme-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.theme-btn.active {
    background: var(--accent-color);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.lang-switch-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    gap: 4px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--text-primary);
    font-weight: 800;
}

.lang-btn.active {
    border-bottom: 2px solid var(--accent-color);
}

.divider {
    color: var(--panel-border);
    font-size: 0.75rem;
}

/* Hide theme labels on mobile for clean UI */
@media (max-width: 600px) {
    .theme-name, .selector-label {
        display: none;
    }
    .theme-buttons {
        gap: 6px;
    }
    .theme-btn {
        padding: 8px;
        border-radius: 50%;
    }
}

/* ------------------------------------------
   4. Glassmorphism Card Panels
   ------------------------------------------ */
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 5;
}

.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--card-radius);
    padding: 24px;
    backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Premium card borders tweak */
.theme-premium .glass-panel {
    border-left: 3px solid var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Energetic cards heavy neon glow borders */
.theme-energetic .glass-panel {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15), inset 0 0 10px rgba(0, 242, 254, 0.05);
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
#events-section {
    position: relative;
    /* Uses .glass-panel from HTML for base styling */
    z-index: 1;
}

.events-notice {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: none; /* hidden by default if empty */
}

/* Retro styling grid line highlights */
.theme-retro .glass-panel {
    border-right: 3px solid var(--text-secondary);
    border-bottom: 3px solid var(--accent-color);
}

/* ------------------------------------------
   5. Profile Card Section
   ------------------------------------------ */
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 35px;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary), var(--text-secondary));
    z-index: 1;
    opacity: 0.8;
    animation: rotate-glow 6s linear infinite;
    box-shadow: var(--glow-avatar);
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 4px solid var(--panel-bg);
}

.live-status-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--panel-bg);
    border: 1.5px solid var(--badge-color);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--badge-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--badge-color);
    animation: badge-pulse 1.2s infinite alternate;
}

@keyframes badge-pulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 1; }
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium elegant styling */
.theme-premium .profile-name {
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.profile-title {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.bio-container {
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.profile-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.9;
}

/* Premium elegant serif description */
.theme-premium .profile-bio {
    font-style: italic;
    font-size: 1.05rem;
    opacity: 0.85;
}

/* ------------------------------------------
   6. Linktree Cards Grid
   ------------------------------------------ */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: var(--card-radius);
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    margin-right: 18px;
    color: var(--accent-color);
    transition: all 0.3s;
}

.link-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.link-label {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.link-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
    opacity: 0.85;
}

.arrow-wrapper {
    opacity: 0.3;
    transition: all 0.3s;
    transform: translateX(0);
}

/* Interactive Hover Animations */
.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: var(--btn-hover-bg);
    box-shadow: var(--accent-glow);
}

.link-card:hover .icon-wrapper {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.link-card:hover .arrow-wrapper {
    opacity: 1;
    transform: translateX(4px);
    color: var(--accent-color);
}

/* Special color branding on icons */
.text-instagram .icon-wrapper { color: #e1306c; }
.text-soundcloud .icon-wrapper { color: #ff5500; }
.text-youtube .icon-wrapper { color: #ff0000; }
.text-whatsapp .icon-wrapper { color: #25d366; }

/* ------------------------------------------
   7. Virtual DJ Deck Player
   ------------------------------------------ */
.dj-deck-container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.vinyl-record {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #0b0b0b;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(0, 0, 0, 0.9);
    animation: rotate-vinyl var(--vinyl-speed) linear infinite;
}

.vinyl-grooves {
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 0 10px rgba(255,255,255,0.05),
        0 0 4px rgba(255, 255, 255, 0.05);
}

.vinyl-grooves::before {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.05);
}

.vinyl-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-label-center {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes rotate-vinyl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.deck-controls {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.deck-status {
    align-self: flex-start;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: var(--accent-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    box-shadow: var(--accent-glow);
}

.track-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.track-genre {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.play-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-primary);
    color: var(--bg-gradient);
    border: none;
    border-radius: 25px;
    padding: 8px 18px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s;
}

.play-action-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: var(--accent-glow);
    transform: scale(1.05);
}

.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    margin-bottom: 12px;
}

.sound-wave .bar {
    width: 2px;
    background: var(--accent-color);
    border-radius: 1px;
    animation: bounce-wave 0.8s ease-in-out infinite alternate;
}

.sound-wave .bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.sound-wave .bar:nth-child(3) { height: 80%; animation-delay: 0.25s; }
.sound-wave .bar:nth-child(4) { height: 50%; animation-delay: 0.05s; }
.sound-wave .bar:nth-child(5) { height: 95%; animation-delay: 0.4s; }
.sound-wave .bar:nth-child(6) { height: 30%; animation-delay: 0.15s; }
.sound-wave .bar:nth-child(7) { height: 75%; animation-delay: 0.3s; }
.sound-wave .bar:nth-child(8) { height: 45%; animation-delay: 0.2s; }
.sound-wave .bar:nth-child(9) { height: 60%; animation-delay: 0.35s; }

@keyframes bounce-wave {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

.soundcloud-embed-container {
    margin-top: 20px;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .dj-deck-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .deck-status {
        align-self: center;
    }
    .play-action-btn {
        align-self: center;
    }
    .sound-wave {
        justify-content: center;
    }
}

/* ------------------------------------------
   8. Genres Showcase Cards
   ------------------------------------------ */
.genres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.genre-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    align-items: flex-start;
}

.genre-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.genre-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.genre-desc {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-secondary);
    opacity: 0.85;
}

@media (max-width: 480px) {
    .genres-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------
   9. Venue / Experience Stats Section
   ------------------------------------------ */
.experience-lead {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 4px;
    text-shadow: var(--accent-glow);
}

/* Retro green numbers */
.theme-retro .stat-number {
    color: var(--text-secondary);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.3;
}

.experience-venues {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.venue-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* ------------------------------------------
   10. Booking CTA Footer
   ------------------------------------------ */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
}

.footer-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.booking-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-bottom: 30px;
}

.booking-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-color);
}

.copyright-info {
    font-size: 0.65rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* ------------------------------------------
   11. Upcoming Events & Footer Buttons
   ------------------------------------------ */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--card-radius);
    padding: 12px 18px;
    gap: 15px;
    transition: all 0.3s;
}

.event-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(3px);
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--panel-bg);
    border: 1.5px solid var(--accent-color);
    box-shadow: var(--accent-glow);
    border-radius: 8px;
    min-width: 60px;
    height: 60px;
    padding: 6px;
    font-weight: 800;
    text-align: center;
}

.theme-ambient .event-date-badge {
    border-radius: 16px;
}

.theme-premium .event-date-badge {
    border-radius: 0px;
}

.event-date-day {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-primary);
}

.event-date-month {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.theme-retro .event-date-month {
    color: var(--text-secondary);
}

.event-logo-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.event-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-logo-placeholder {
    font-size: 1.3rem;
}

.event-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-venue-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.event-time-loc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 3px;
    opacity: 0.85;
}

.event-action-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid var(--panel-border);
    text-decoration: none;
    transition: all 0.3s;
}

.event-action-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.events-loading, .events-empty {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 20px 0;
}

/* CTA buttons side-by-side or stacked */
.cta-buttons-container {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-buttons-container .booking-cta-btn {
    margin-bottom: 0px;
    flex: 1;
    max-width: 250px;
    justify-content: center;
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-cta:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5) !important;
}

.email-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
}

.footer-admin-link {
    margin-left: 8px;
}

.admin-link {
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s;
}

.admin-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

@media (max-width: 550px) {
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons-container .booking-cta-btn {
        width: 100%;
        max-width: 100%;
    }
    .event-row {
        flex-wrap: wrap;
    }
    .event-action-btn {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}

/* ------------------------------------------
   12. Admin Dashboard Layouts
   ------------------------------------------ */
.admin-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 5;
    margin: 0 auto;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 15px;
}

.admin-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.admin-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.admin-back-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: var(--accent-glow);
}

/* Admin Auth Panel */
.auth-panel {
    max-width: 400px;
    margin: 100px auto;
}

/* Forms */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--panel-border);
    border-radius: var(--card-radius);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: var(--accent-glow);
}

/* Logo Choice Grid */
.logo-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 5px;
}

.logo-option {
    border: 1px solid var(--panel-border);
    background: rgba(0,0,0,0.2);
    border-radius: var(--card-radius);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.logo-option:hover {
    background: rgba(255,255,255,0.05);
}

.logo-option.selected {
    border-color: var(--accent-color);
    background: var(--btn-hover-bg);
    box-shadow: var(--accent-glow);
}

.logo-emoji {
    font-size: 1.5rem;
}

.logo-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

/* Submit Button */
.admin-submit-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: var(--card-radius);
    padding: 14px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--accent-glow);
    transition: all 0.3s;
    margin-top: 10px;
}

.admin-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-color);
}

/* Events Table / List Manager */
.events-manager-section {
    margin-top: 10px;
}

.events-list-manager {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.manager-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--panel-border);
    border-radius: var(--card-radius);
    padding: 12px 18px;
    gap: 15px;
}

.manager-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.manager-venue {
    font-size: 0.95rem;
    font-weight: 700;
}

.manager-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 3px;
}

.manager-actions {
    display: flex;
    gap: 10px;
}

.btn-delete {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-delete:hover {
    background: #e74c3c;
    color: #fff;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--accent-glow);
    z-index: 1000;
    pointer-events: none;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Email stack button details */
.email-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
}

.email-btn-address {
    font-size: 0.65rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none; /* Keep email lowercase */
}

.active-mode {
    background: var(--accent-color) !important;
    color: #fff !important;
    box-shadow: var(--accent-glow) !important;
}


