/* ===========================================================
   STYLE-EVENT.CSS (Podstránky)
   =========================================================== */

/* --- Základní nastavení a Proměnné --- */
:root {
    --color-theatre: #AB1D22;
    --color-music: #002eff; 
    --color-originals: #216d2a;
    --color-contact: #FFFFFF;

    /* RGB varianty */
    --color-theatre-rgb: 171, 29, 34;
    --color-music-rgb: 0, 46, 255;
    --color-originals-rgb: 33, 109, 42;
    --color-contact-rgb: 255, 255, 255;

    --color-bg-dark: #0A0A0E;
    --color-glass-text: #E0E0E0;
    --color-glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-glass-text);
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-top: 140px; 
}

/* --- Scrollbar --- */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: rgba(10, 10, 14, 0.5); }
body::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.3); border-radius: 5px; }

/* --- Barevné pozadí (Blobs) --- */
.color-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(var(--color-main-rgb), 0.7), transparent 70%);
    animation: colorBubble 15s ease-in-out infinite alternate;
}

body.theme-theatre { --color-main-rgb: var(--color-theatre-rgb); }
body.theme-music { --color-main-rgb: var(--color-music-rgb); }
body.theme-originals { --color-main-rgb: var(--color-originals-rgb); }
body.theme-contact { --color-main-rgb: var(--color-contact-rgb); }

@keyframes colorBubble {
    0% { transform: translate(-20vw, -20vh) scale(1); }
    50% { transform: translate(20vw, 20vh) scale(1.3); }
    100% { transform: translate(-20vw, -20vh) scale(1); }
}

/* ===========================================================
   NAVIGACE (Sjednocená - Kopie ze style-main.css)
   =========================================================== */

/* 1. NEWS TICKER BAR */
.news-ticker-bar {
    position: fixed; top: 0; left: 0; width: 100%; height: 45px;
    background: #000; color: #fff; z-index: 5000;
    display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-wrap { width: 100%; overflow: hidden; white-space: nowrap; }
.ticker-move { display: inline-block; white-space: nowrap; padding-left: 100%; animation: ticker 25s linear infinite; }
.ticker-item { 
    display: inline-block; padding: 0 3rem; 
    font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; 
}
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* 2. QUICK LINKS BAR */
.quick-links-bar {
    display: flex; position: fixed; 
    top: 60px; 
    left: 50%; transform: translateX(-50%);
    z-index: 4000; pointer-events: auto;
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 8px 30px; border-radius: 50px; gap: 2rem; transition: all 0.3s ease;
}

.quick-link {
    text-decoration: none; font-size: 1rem; font-weight: 900; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7); letter-spacing: 1px; transition: all 0.3s ease;
}
.quick-link:hover { color: #fff; text-shadow: 0 0 15px rgba(255,255,255,0.5); transform: scale(1.05); }
.quick-link.quick-link-active { color: #fff; pointer-events: none; }

/* Specifické barvy pro aktivní linky na podstránkách */
.link-originals.quick-link-active { color: #4caf50; text-shadow: 0 0 25px rgba(76, 175, 80, 0.9); }
.link-theatre.quick-link-active { color: #ef5350; text-shadow: 0 0 25px rgba(239, 83, 80, 0.9); }
.link-music.quick-link-active { color: #448aff; text-shadow: 0 0 25px rgba(68, 138, 255, 0.9); }

/* 3. HAMBURGER ICON */
.hamburger-icon {
    display: flex; flex-direction: column; justify-content: space-around;
    width: 45px; height: 45px; padding: 10px; cursor: pointer;
    position: fixed; 
    top: 60px; right: 20px; 
    z-index: 6000;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px);
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
}
.hamburger-icon span { width: 100%; height: 2px; background: #fff; transition: 0.3s; }
.hamburger-icon.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger-icon.open span:nth-child(2) { opacity: 0; }
.hamburger-icon.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* 4. MOBILE MENU */
.mobile-menu-overlay {
    display: block; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8); z-index: 5400; opacity: 0; visibility: hidden; transition: 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: #050505; border-left: 1px solid #333; 
    z-index: 5500; 
    padding: 2rem; padding-top: 100px;
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }

/* Změna stylu nadpisu MENU */
.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h3 {
    font-size: 0.9rem; /* Menší písmo */
    font-weight: 700;
    color: #666; /* Tmavší šedá */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.mobile-menu ul { list-style: none; margin-top: 1rem; }
.mobile-menu li { margin-bottom: 1rem; }
.menu-item { font-size: 1.2rem; font-weight: 700; color: #ccc; text-decoration: none; display: block; transition: 0.2s; }
.menu-item:hover { color: #fff; transform: translateX(5px); }

.lang-switcher-mobile {
    margin-top: auto; margin-bottom: 3.5rem; width: 100%; display: flex; justify-content: center; pointer-events: auto;
}
.lang-toggle {
    display: flex; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px; padding: 5px;
}
.lang-btn {
    display: block; padding: 10px 25px; color: #aaa; text-decoration: none; font-weight: 700;
    border-radius: 25px; transition: all 0.3s ease; font-size: 1.1rem;
}
.lang-btn.active { background: #fff; color: #000; box-shadow: 0 2px 10px rgba(255,255,255,0.2); }
.lang-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,0.05); }

/* ===========================================================
   SPECIFICKÝ OBSAH PODSTRÁNEK
   =========================================================== */
.event-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem; 
    position: relative;
    z-index: 2;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 3.5rem; font-weight: 700; color: var(--color-glass-text); opacity: 0.7; letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem; font-weight: 900; color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 30px rgba(var(--color-main-rgb), 0.7);
}

.content-panel {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--color-glass-border); border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    position: relative; z-index: 1;
}

.content-panel h3 {
    font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 1px solid var(--color-glass-border);
}

.content-panel p, .content-panel li {
    font-size: 1.1rem; line-height: 1.7; opacity: 0.8; margin-bottom: 1.5rem;
}

/* Tlačítko na podstránkách */
.btn {
    text-decoration: none; color: #fff;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.9rem 2rem; border-radius: 15px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease; display: inline-block; margin-top: 1rem;
}
.content-panel .btn:hover {
    background: rgba(var(--color-main-rgb), 0.6); border-color: rgba(var(--color-main-rgb), 0.8);
    transform: translateY(-5px); box-shadow: 0 8px 30px rgba(var(--color-main-rgb), 0.4);
}

/* Coming Soon Panel */
.soon-container {
    max-width: 600px; text-align: center;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--color-glass-border); border-radius: 20px;
    padding: 3rem 4rem; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    margin: 0 auto;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}

/* ===========================================================
   UNIVERZÁLNÍ FOOTER (Kopie ze style-main.css)
   =========================================================== */
.universal-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 60px 20px 40px;
    text-align: center;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}
.footer-container h3 {
    color: #fff; font-size: 1.2rem; font-weight: 900; margin-bottom: 25px;
    text-transform: uppercase; letter-spacing: 2px;
}
.footer-links {
    display: flex; justify-content: center; align-items: center; gap: 25px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-links a {
    color: #bbb; text-decoration: none; font-size: 1.1rem; font-weight: 600; transition: color 0.3s ease;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
.separator { color: #444; }
.footer-copyright {
    color: #555; font-size: 0.9rem; border-top: 1px solid #222; padding-top: 20px; display: inline-block; width: 100%; max-width: 600px;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
    body { padding-top: 120px; }
    .quick-links-bar { 
        top: 60px; gap: 1rem; padding: 5px 15px; width: max-content; max-width: 80%; 
    }
    .quick-link { font-size: 0.8rem; }
    .hamburger-icon { top: 55px; }

    .hero h2 { font-size: 2.5rem; }
    .hero h1 { font-size: 3.5rem; }
    .soon-container { width: 90%; padding: 2rem; }

    .separator { display: none; }
}