/* ==================== ГЛОБАЛНИ СТИЛОВЕ ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00FF9D;
    --dark: #1B1C20;
    --light: #E0E0E0;
    --gray-bg: #bbbbbc;
}

body {
    font-family: 'Alumni Sans', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.2;
}

html {
    scroll-behavior: smooth;
}

.main-wrapper {
    width: 80vw;
    margin: 0 auto;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: clamp(60px, 8vh, 90px);
    background: var(--dark);
    z-index: 1000;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    text-transform: uppercase;
    font-weight: 700;
}

.nav-link:hover { color: var(--primary); }
.logo img { height: clamp(35px, 5vh, 50px); width: auto; }

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('images/main.png') center/cover no-repeat;
    display: grid;
    place-items: center;
    text-align: center;
}

.welcome { 
    font-size: clamp(1.2rem, 3vh, 2.5rem); 
    font-weight: 300; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.main-title { 
    font-size: 15vw; 
    font-weight: 900; 
    line-height: 0.8; 
    color: white; 
}

/* ==================== GRID ENGINE (СЕКЦИИ) ==================== */
.section {
    height: clamp(650px, 90vh, 1100px);
    padding: 8vh 5% 4vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.section-title {
    grid-row: 1;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    z-index: 2;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

/* ==================== ЗЕЛЕНАТА ЛИНИЯ (ФИКС) ==================== */
.section-line {
    grid-row: 2;
    height: 3px !important; /* Правим я малко по-плътна за по-добър вид */
    background-color: var(--primary) !important; /* Насилствено зелено */
    border: none !important;
    margin: 1vh 0 4vh;
    opacity: 1 !important; /* Пълна видимост */
    z-index: 10; /* Да е над всичко останало */
    box-shadow: 0 0 15px var(--primary); /* Връщаме и сиянието */
}

/* Гарантираме позицията в ляво и дясно */
.left-section .section-line {
    grid-column: 4 / 13; 
    justify-self: end;
    width: 100%; /* Или колкото искаш да е дълга */
}

.right-section .section-line {
    grid-column: 1 / 10;
    justify-self: start;
    width: 100%;
}

/* Позициониране Ляво/Дясно */
.left-section .section-title, 
.left-section .section-line {
    grid-column: 4 / 13; 
    justify-self: end;
    text-align: right;
}

.right-section .section-title, 
.right-section .section-line {
    grid-column: 1 / 10;
    justify-self: start;
}

/* ==================== КОНТЕНТ КОНТЕЙНЕРИ (ОБЩИ) ==================== */
.about-text, .events-container, .audio-playlist, .video-wrapper, .merch-grid, .contact-container {
    grid-row: 3;
    height: clamp(35vh, 50vh, 60vh);
    overflow-y: auto;
    padding: clamp(20px, 2.5vw, 40px);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.left-section .about-text, 
.left-section .audio-playlist, 
.left-section .merch-grid {
    grid-column: 4 / 13; 
    width: 100%;       
    justify-self: end;
}

.right-section .events-container, 
.right-section .video-wrapper, 
.right-section .contact-container {
    grid-column: 1 / 10;
    width: 100%;       
    justify-self: start;
}

/* ==================== АУДИО И ВИДЕО ==================== */
.audio-card {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    gap: 20px;
    max-width: 800px;
}

.audio-card img { width: 60px; height: 60px; border-radius: 4px; }
.audio-card audio { flex: 1; max-width: 350px; height: 30px; }

.video-wrapper { display: flex; gap: 30px; align-items: flex-start; }
.main-video { flex: 2.5; aspect-ratio: 16 / 9; background: #000; border-radius: 8px; overflow: hidden; }
.main-video iframe { width: 100%; height: 100%; }
.video-thumbnails { flex: 1; max-width: 280px; }

.thumbnail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--light);
    background: rgba(0,0,0,0.4);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.thumbnail-item:hover { background: var(--primary); color: #000; }
.thumbnail-item img { width: 70px; aspect-ratio: 16/9; object-fit: cover; border-radius: 3px; }

/* ==================== МЪРЧ СЕКЦИЯ ==================== */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 220px)); 
    gap: 25px;
    justify-content: center;
    align-content: start;
}

.merch-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    min-height: 320px; 
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.merch-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
    padding: 15px;
    display: block;
}

.merch-info {
    padding: 20px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merch-name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E0E0E0 !important; /* Насилствено бяло/светло */
}

.merch-price {
    font-size: 1.3rem !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
}

.merch-card a { text-decoration: none; }

/* ==================== УЧАСТИЯ ==================== */
.event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    max-width: 800px;
}

.day { font-size: 3rem; color: var(--primary); font-weight: 900; line-height: 1; }
.month { font-size: 1rem; display: block; font-weight: 700; color: white; }

.btn-ticket {
    background: var(--primary);
    border: none;
    padding: 10px 20px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
}

/* ==================== BACKGROUNDS ==================== */
.left-section {
    background: linear-gradient(90deg, rgba(187,187,188,0.1) 0%, rgba(187,187,188,0.8) 45%), 
                url('images/bg-about.jpg') left/auto 100% no-repeat;
}

.right-section {
    background: linear-gradient(90deg, rgba(27,28,32,0.8) 55%, rgba(27,28,32,0.2) 100%), 
                url('images/bg-uchastia.jpg') right/auto 100% no-repeat;
}

#about { background-image: linear-gradient(90deg, rgba(187,187,188,0.30) 0%, rgba(187,187,188,1) 68%), url('images/rub.png'); }
#audio { background-image: linear-gradient(90deg, rgba(187,187,188,0.30) 0%, rgba(187,187,188,1) 68%), url('images/audio.png'); }
#merch { background-image: linear-gradient(90deg, rgba(187,187,188,0.30) 0%, rgba(187,187,188,1) 68%), url('images/merch.png'); }
#uchastia { background-image: linear-gradient(90deg, rgba(27,28,32,1) 0%, rgba(27,28,32,1) 32%, rgba(27,28,32,0.30) 100%), url('images/uchastia.png'); }
#video { background-image: linear-gradient(90deg, rgba(27,28,32,1) 0%, rgba(27,28,32,1) 32%, rgba(27,28,32,0.30) 100%), url('images/video.png'); }
#contact { background-image: linear-gradient(90deg, rgba(27,28,32,1) 0%, rgba(27,28,32,1) 32%, rgba(27,28,32,0.30) 100%), url('images/contact.png'); }

/* ==================== СПЕЦИФИЧНИ КОРЕКЦИИ КОНТРАСТ ==================== */
.left-section .section-title { color: #1B1C20 !important; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); }
.right-section .section-title { color: #E0E0E0; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }

.left-section .about-text, 
.left-section .audio-playlist, 
.left-section .merch-grid {
    background: rgba(255, 255, 255, 0.5) !important;
    color: #1B1C20 !important;
    border: 1px solid var(--primary);
}

/* Текст в светлите секции */
.left-section .about-text p { color: #1B1C20 !important; }
.left-section .audio-card h3, 
.left-section .audio-card .artist { color: var(--primary) !important; }

/* ==================== FOOTER ==================== */
footer { padding: 60px 0; text-align: center; }
.social-icons { margin: 20px 0; display: flex; justify-content: center; gap: 30px; }
.social-icons a { color: var(--primary); text-decoration: none; font-weight: 700; text-transform: uppercase; }
.footer-tag { width: 120px; opacity: 0.5; margin-top: 20px; }

/* ФОРМА */
.google-form { height: 100%; width: 100%; }
.google-form iframe { width: 100%; height: 100%; border-radius: 8px; }
