/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (TOKENS)
   ========================================================================== */
:root {
    --bg: #DBEEDB;
    --bg-soft: #CFE4CF;
    --surface: rgba(255, 255, 255, 0.55);
    --surface-2: rgba(255, 255, 255, 0.85);
    --surface-solid: #F2F8F2;
    --border: rgba(26, 40, 24, 0.10);
    --border-strong: rgba(26, 40, 24, 0.22);
    --text: #1A2818;
    --body: #3A4A38;
    --muted: #6F7F6D;
    --dim: #A8B5A6;
    --accent: #C44536;
    --accent-dark: #9C342A;
    --accent-glow: rgba(196, 69, 54, 0.28);
    --positive: #2D5016;
    --highlight: #C9A227;
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-normal: 300ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

body.lock-scroll {
    overflow: hidden;
}

/* Background grain noise texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.15 0 0 0 0 0.09 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.55;
    mix-blend-mode: multiply;
}

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

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text);
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Scroll Progress Bar */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
    z-index: 1100;
    transition: width 80ms linear;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--accent);
    font-weight: inherit;
}

.cinzel-title, .cinzel-logo {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.accent-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    font-weight: 900;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Minimalist Divider */
.golden-divider {
    width: 64px;
    height: 2px;
    background: var(--accent);
    margin: 16px auto 0;
    position: relative;
    box-shadow: 0 0 8px var(--accent-glow);
}

.golden-divider::before {
    content: "●";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 8px;
    background: var(--bg);
    padding: 0 6px;
}

/* Glassmorphic Card base */
.card {
    background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.35));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 4px 20px rgba(26,40,24,0.04);
    transition: var(--transition-fast);
}

.card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 150ms ease-out;
}

.btn-primary {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1.5px);
    box-shadow: 0 6px 16px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 16px var(--accent-glow);
}

/* ==========================================================================
   CURTAIN OVERLAY LOADING SCREEN
   ========================================================================== */
.curtain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.curtain-left, .curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--text);
    transition: transform var(--transition-slow);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.85);
}

.curtain-left {
    left: 0;
    transform-origin: left;
    border-right: 1.5px solid var(--accent);
}

.curtain-right {
    right: 0;
    transform-origin: right;
    border-left: 1.5px solid var(--accent);
}

.curtain-welcome-text {
    position: relative;
    z-index: 10000;
    text-align: center;
    color: #FFFFFF;
    opacity: 1;
    transition: opacity var(--transition-normal);
    max-width: 480px;
    padding: 32px;
    background: linear-gradient(145deg, rgba(26,40,24,0.85), rgba(15,25,14,0.95));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.curtain-welcome-text h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 12px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.04em;
}

.curtain-welcome-text p {
    font-size: 15px;
    margin-bottom: 28px;
    color: var(--bg-soft);
    font-weight: 500;
}

.enter-btn {
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: var(--transition-spring);
}

.enter-btn:hover {
    transform: scale(1.04);
    background: var(--accent-dark);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Curtain Open States */
.curtain-overlay.open .curtain-left {
    transform: translateX(-100%);
}

.curtain-overlay.open .curtain-right {
    transform: translateX(100%);
}

.curtain-overlay.open .curtain-welcome-text {
    opacity: 0;
    pointer-events: none;
}

.curtain-overlay.open {
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s var(--transition-slow), pointer-events 0s var(--transition-slow);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    background: rgba(219, 238, 219, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(219, 238, 219, 0.96);
    box-shadow: 0 4px 20px rgba(26,40,24,0.05);
}

.cinzel-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
}

.cinzel-logo::before {
    content: "●";
    color: var(--accent);
    margin-right: 8px;
    font-size: 9px;
    vertical-align: middle;
}

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

.nav-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--body);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 8px 0;
    position: relative;
}

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

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

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

.btn-nav-reserve {
    background: var(--accent) !important;
    color: #FFFFFF !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 10px var(--accent-glow);
}

.btn-nav-reserve:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px var(--accent-glow);
}

.btn-nav-reserve::after {
    display: none;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-strong);
    z-index: 850;
    padding: 24px;
    display: none;
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: block;
    padding: 8px 0;
}

.mobile-btn-reserve {
    background: var(--accent);
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Soft glowing stage lights background */
.hero-bg-lights {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at top, rgba(196, 69, 54, 0.08) 0%, rgba(219, 238, 219, 0) 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Circular portrait stylized with design system accent glow and border */
.golden-circular-frame {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    padding: 12px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--accent) 50%, var(--text) 100%);
    box-shadow: 0 15px 45px rgba(26,40,24,0.1), 0 0 20px var(--accent-glow);
    animation: borderGlow 6s ease-in-out infinite alternate;
}

.golden-circular-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
}

.golden-circular-frame::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px solid var(--border);
    pointer-events: none;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--surface-solid);
    background-color: var(--bg-soft);
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-subtitle::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--accent);
}

.hero-main-title {
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-description {
    font-size: 16px;
    color: var(--body);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

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

@keyframes borderGlow {
    0% {
        box-shadow: 0 15px 45px rgba(26,40,24,0.1), 0 0 15px var(--accent-glow);
    }
    100% {
        box-shadow: 0 15px 45px rgba(26,40,24,0.1), 0 0 30px rgba(196, 69, 54, 0.45);
    }
}

/* ==========================================================================
   ABOUT / APIE SECTION
   ========================================================================== */
.apie-section {
    padding: 120px 0;
    background: var(--bg);
}

.apie-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.apie-text p {
    margin-bottom: 20px;
    color: var(--body);
}

.apie-text .lead-text {
    font-size: 20px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

.bio-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.highlight-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
}

/* Decorative Quotes Card */
.apie-deco {
    display: flex;
    justify-content: center;
}

.deco-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: linear-gradient(145deg, rgba(255,255,255,0.75), rgba(255,255,255,0.45));
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,40,24,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.deco-card-border {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    pointer-events: none;
}

.deco-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.quote-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 18px;
}

.quote-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.quote-author {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* ==========================================================================
   INTERACTIVE MUSIC SECTION
   ========================================================================== */
.muzika-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.music-player-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(26,40,24,0.06);
    overflow: hidden;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Sidebar Song List */
.player-sidebar {
    background: rgba(255, 255, 255, 0.35);
    border-right: 1px solid var(--border);
    padding: 30px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 12px;
}

.song-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 480px;
    overflow-y: auto;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 150ms ease-out;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid transparent;
}

.song-item:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--border);
}

.song-item.active {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px var(--accent-glow);
    border-color: var(--accent);
}

.song-num {
    font-weight: 700;
    font-size: 12px;
    opacity: 0.6;
}

.song-item.active .song-num {
    opacity: 1;
}

.song-details {
    flex: 1;
}

.song-name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.song-duration {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

.song-play-icon {
    font-size: 12px;
    opacity: 0.7;
}

.song-item.active .song-play-icon {
    opacity: 1;
}

/* Player Main Panel */
.player-main {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(255, 255, 255, 0.15);
}

.player-visuals {
    display:grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.player-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Audio Visualizer Overlay when active */
.visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.visualizer.active {
    opacity: 1;
}

.visualizer span {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    animation: visualize 1.2s ease-in-out infinite alternate;
}

/* Visualizer Bars Speed and Delays */
.visualizer span:nth-child(1) { animation-delay: 0.1s; animation-duration: 0.8s; }
.visualizer span:nth-child(2) { animation-delay: 0.4s; animation-duration: 1.2s; }
.visualizer span:nth-child(3) { animation-delay: 0.2s; animation-duration: 1.0s; }
.visualizer span:nth-child(4) { animation-delay: 0.6s; animation-duration: 0.7s; }
.visualizer span:nth-child(5) { animation-delay: 0.3s; animation-duration: 1.4s; }
.visualizer span:nth-child(6) { animation-delay: 0.5s; animation-duration: 0.9s; }
.visualizer span:nth-child(7) { animation-delay: 0.1s; animation-duration: 1.1s; }
.visualizer span:nth-child(8) { animation-delay: 0.7s; animation-duration: 1.3s; }
.visualizer span:nth-child(9) { animation-delay: 0.2s; animation-duration: 0.8s; }
.visualizer span:nth-child(10) { animation-delay: 0.4s; animation-duration: 1.0s; }

@keyframes visualize {
    0% { height: 4px; }
    100% { height: 28px; }
}

.player-controls-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.song-info .song-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.song-info .song-artist {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px;
}

/* Timeline & Progress Bar */
.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.time-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    min-width: 32px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-soft);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 100ms linear;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* Player buttons */
.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.btn-control {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 150ms ease-out;
    border: 1px solid var(--border);
}

.btn-control:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.75);
    border-color: var(--border-strong);
    transform: scale(1.05);
}

.btn-play-pause {
    font-size: 20px;
    color: #FFFFFF;
    background: var(--accent);
    border-color: var(--accent);
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-play-pause:hover {
    color: #FFFFFF;
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 6px 16px var(--accent-glow);
    transform: scale(1.06);
}

/* Lyrics Drawer styling */
.lyrics-container {
    background: var(--surface-solid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}

.lyrics-container h5 {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-strong);
    padding-bottom: 8px;
}

.lyrics-text {
    font-size: 14px;
    color: var(--body);
    line-height: 1.7;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 10px;
}

/* ==========================================================================
   YOUTUBE FEATURED VIDEOS
   ========================================================================== */
.video-section {
    padding: 120px 0;
    background: var(--bg);
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 45%; /* Cinematic 16:9 ratio scale */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(26,40,24,0.08);
    border: 1px solid var(--border);
}

.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   CONCERT FEATURES GRID
   ========================================================================== */
.koncertai-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.booking-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(26,40,24,0.02);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 8px 30px rgba(26,40,24,0.05);
}

.feature-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

/* ==========================================================================
   IMAGE GALLERY SECTION
   ========================================================================== */
.galerija-section {
    padding: 120px 0;
    background: var(--bg);
}

.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(26,40,24,0.08);
    border: 1px solid var(--border);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-slow);
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom stages fallbacks styling */
.placeholder-slide-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text);
    color: #FFFFFF;
}

.stage-bg-1 {
    background: linear-gradient(135deg, #1A2818 0%, #3A4A38 100%);
}

.stage-bg-2 {
    background: linear-gradient(135deg, #3A4A38 0%, #1A2818 100%);
}

.stage-overlay {
    text-align: center;
    padding: 40px;
    max-width: 480px;
}

.stage-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
    animation: pulseIcon 2s infinite alternate;
}

.stage-overlay h4 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 800;
}

.stage-overlay p {
    color: var(--bg-soft);
    font-size: 14px;
    font-weight: 500;
}

@keyframes pulseIcon {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px var(--accent-glow)); }
    100% { transform: scale(1.08); filter: drop-shadow(0 0 8px var(--accent)); }
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    background: linear-gradient(to top, rgba(26,40,24,0.9), transparent);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    z-index: 10;
}

/* Gallery Controls */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    font-size: 16px;
    transition: all 150ms ease-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

.gallery-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 150ms ease-out;
    border: 1px solid rgba(0,0,0,0.1);
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
    border-color: var(--accent);
}

/* ==========================================================================
   RSVP / RESERVACIJA & BOOKING FORM
   ========================================================================== */
.rezervacija-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.rezervacija-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rezervacija-info {
    display: flex;
    flex-direction: column;
}

.rezervacija-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.rezervacija-info p {
    margin-top: 24px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.6;
}

.rezervacija-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.rezervacija-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.rezervacija-perks li i {
    color: var(--accent);
    font-size: 16px;
}

/* Contact Info Details */
.contact-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(26,40,24,0.02);
}

.contact-card h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-card p {
    margin: 8px 0 !important;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.contact-card p i {
    color: var(--accent);
    font-size: 14px;
    width: 16px;
}

.contact-card a:hover {
    color: var(--accent);
}

/* Form panel styling */
.rezervacija-form-wrapper {
    position: relative;
}

.booking-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26,40,24,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 400ms ease, transform 400ms ease;
}

.booking-form.fade-out {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-strong);
    background: var(--surface-solid);
    font-family: var(--font);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 150ms ease-out;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form validation styling */
.error-msg {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    display: none;
    margin-top: 2px;
}

.form-group.invalid input, .form-group.invalid textarea {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.15);
}

.form-group.invalid .error-msg {
    display: block;
}

/* Submission button loading state */
.btn-submit {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.btn-submit .btn-text {
    transition: transform var(--transition-fast);
}

.btn-submit.loading .btn-text {
    transform: translateY(-30px);
}

.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #FFFFFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -9px;
    animation: rotation 600ms linear infinite;
}

.btn-submit.loading .loader {
    display: inline-block;
}

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

/* Successful Ticket Display results card */
.ticket-result {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.ticket-result.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.ticket-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 45px rgba(26,40,24,0.06);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

/* Decorative ticket notches */
.ticket-card::before, .ticket-card::after {
    content: '';
    position: absolute;
    top: 60px;
    width: 20px;
    height: 20px;
    background: var(--bg-soft);
    border-radius: 50%;
    z-index: 10;
    border: 1px solid var(--border);
}

.ticket-card::before { left: -10px; }
.ticket-card::after { right: -10px; }

.ticket-header {
    padding: 24px 30px;
    border-bottom: 1.5px dashed var(--border-strong);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.ticket-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.ticket-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
}

.ticket-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ticket-concert-title {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    letter-spacing: -0.01em;
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--surface-solid);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-item-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px dashed var(--border-strong);
    padding-top: 14px;
}

.detail-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.ticket-barcode {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 36px;
    gap: 3px;
    padding: 0 10px;
    opacity: 0.8;
}

.ticket-barcode span {
    background: var(--text);
    width: 2px;
}

/* Pseudo-random barcode look */
.ticket-barcode span:nth-child(2n) { width: 4px; }
.ticket-barcode span:nth-child(3n) { width: 1px; }
.ticket-barcode span:nth-child(5n) { width: 3px; }
.ticket-barcode span:nth-child(7n) { width: 5px; }

.ticket-footer-note {
    font-size: 12px;
    color: var(--body);
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

.btn-new-booking {
    margin-top: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: var(--text);
    color: var(--bg-soft);
    padding: 80px 0 40px;
    border-top: 1.5px solid var(--accent);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h4 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-about p {
    color: var(--bg-soft);
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h5, .footer-socials h5 {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--dim);
    font-size: 13px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #FFFFFF;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-soft);
    font-size: 16px;
    transition: all 150ms ease-out;
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 10px var(--accent-glow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dim);
    font-weight: 600;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 60px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-subtitle {
        justify-content: center;
    }
    
    .hero-subtitle::before {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .apie-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apie-deco {
        order: -1;
    }
    
    .music-player-container {
        grid-template-columns: 1fr;
    }
    
    .player-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .rezervacija-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .main-header {
        padding: 0 24px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .golden-circular-frame {
        width: 300px;
        height: 300px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
