:root {
    --bg-color: #09090b;       
    --card-bg: #141417;        
    --accent-color: #d92672;   
    --text-color: #f4f4f5;
    --text-muted: #a1a1aa;
    --radius: 24px;            
    --section-padding: 100px;  
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ХЕДЪР */
header {
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1c1c21;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1001;
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* СЪБИТИЯ & БИЛЕТИ - СТИЛ КАТО АКЦЕНТЕН БУТОН */
.nav-links .accent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--accent-color);
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff !important;
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-links .accent-btn:hover {
    background-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(217, 38, 114, 0.4);
}

.burger-menu {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #09090b;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.mobile-tickets-btn {
    background: var(--accent-color);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 20px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 24px rgba(217, 38, 114, 0.4);
    width: 80%;
    text-align: center;
    margin-bottom: 10px;
}

/* ХЕРО СЕКЦИЯ - С ФОН hero.jpg */
.hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(9, 9, 11, 0.5), rgba(9, 9, 11, 0.85)), url('hero.jpg') center/cover no-repeat;
    border-bottom: 1px solid #1c1c21;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.hero-content h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 2.2rem;
    margin-top: 10px;
    font-weight: 700;
}

/* СЕКЦИЯ СЪБИТИЯ С URBO STUDIO */
.events-section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.urbo-studio-container {
    width: 100%;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #1c1c21;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.urbo-studio-container iframe {
    display: block;
    background: #141417;
}

/* ОБЕДИНЕН БЕНТО БЛОК */
.locations-section {
    padding: calc(var(--section-padding) / 2) 0 var(--section-padding) 0;
}

.unified-bento {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid #1c1c21;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
}

.bento-left {
    padding: 45px;
    border-right: 1px solid #1c1c21;
}

.bento-left h2 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.location-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.location-btn {
    background: #1c1c21;
    color: #fff;
    border: 1px solid #2d2d35;
    padding: 16px 20px;
    border-radius: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.location-btn.active {
    border-color: var(--accent-color);
    background: rgba(217, 38, 114, 0.06);
    color: var(--accent-color);
}

.map-container {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1c1c21;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.bento-right {
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    background: linear-gradient(135deg, #141417 0%, #111114 100%);
}

.contact-item h4 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.phone-link {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--accent-color);
}

/* РАБОТНО ВРЕМЕ */
.work-time-schedules {
    background: #1c1c21;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #2d2d35;
    width: 100%;
}

.schedule-block h5 {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-block ul {
    list-style: none;
}

.schedule-block ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
    color: #f4f4f5;
}

.schedule-block ul li:last-child {
    margin-bottom: 0;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #1c1c21;
    border: 1px solid #2d2d35;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.08);
}

.bento-note {
    margin-top: auto;
    border-top: 1px solid #222226;
    padding-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.bento-note p {
    margin-bottom: 8px;
}

/* ЗА НАС */
.about-section {
    padding: var(--section-padding) 0;
    border-top: 1px solid #1c1c21;
    text-align: center;
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid #1c1c21;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* RESPONSIVE СТИЛОВЕ */
@media (max-width: 960px) {
    .unified-bento { 
        grid-template-columns: 1fr; 
    }
    .bento-left { 
        border-right: none; 
        border-bottom: 1px solid #1c1c21; 
        padding: 30px 24px; 
    }
    
    /* ЦЕНТРИРАНЕ НА ЕЛЕМЕНТИТЕ ОТ СНИМКАТА НА МОБИЛНИ ОСТРОЙСТВА */
    .bento-right { 
        padding: 35px 24px; 
        align-items: center;    /* Центрира елементите хоризонтално */
        text-align: center;     /* Центрира текстовете вътре */
    }
    .work-time-schedules {
        max-width: 340px;       /* Ограничава ширината за по-добър вид в средата */
        margin: 0 auto;         /* Центрира самия блок */
    }
    .social-icons {
        justify-content: center; /* Центрира иконите на социалните мрежи */
    }
    .bento-note {
        width: 100%;
        text-align: center;     /* Центрира адреса и забележката най-долу */
    }
    
    .nav-links { display: none; }
    .burger-menu { display: block; }
    .hero h1 { font-size: 2.8rem; }
    .hero h1 span { font-size: 1.6rem; }
    .urbo-studio-container { border-radius: 12px; }
    .events-section { padding: 50px 0; }
    .header-logo { height: 35px; }
}
/* МОДАЛЕН ПРОЗОРЕЦ ПОЛИТИКА ЗА ПОВЕРИТЕЛНОСТ */
.privacy-modal {
    display: none; /* Скрит по подразбиране */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 11, 0.85); /* Тъмен фон */
    backdrop-filter: blur(8px); /* Модерен блър ефект */
    z-index: 2000; /* Над всичко останало */
}

.privacy-modal-content {
    background-color: #141417; /* Цветова схема като Bento блока */
    border: 1px solid #1c1c21;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 750px;
    border-radius: var(--radius);
    max-height: 80vh;
    overflow-y: auto; /* Скрол само за дългия текст */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Персонализиран скролбар за текста */
.privacy-modal-content::-webkit-scrollbar {
    width: 6px;
}
.privacy-modal-content::-webkit-scrollbar-thumb {
    background: #2d2d35;
    border-radius: 10px;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1c1c21;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.privacy-modal-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.close-privacy {
    color: var(--text-muted);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-privacy:hover {
    color: var(--accent-color); /* Свети в розово при посочване */
}

.privacy-modal-body h4 {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-modal-body h5 {
    color: #fff;
    font-size: 14px;
    margin: 20px 0 10px 0;
    font-weight: 700;
}

.privacy-modal-body p, .privacy-modal-body ul {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.privacy-modal-body ul {
    padding-left: 20px;
}

.privacy-modal-body ul li {
    margin-bottom: 6px;
}

/* EVENT CARD */

.event-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 18px 42px;
    border-radius: 60px;
    background: linear-gradient(135deg, #d92672 0%, #ff7a00 100%);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 38, 114, 0.35);
}

.reserve-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(217, 38, 114, 0.45);
}

.event-image-wrapper {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #1c1c21;
    background: #141417;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.event-image {
    width: 100%;
    display: block;
    object-fit: cover;
}