/* Musikmoment - Custom Styles */
/* Single Page Bootstrap Website with Parallax */

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-accent: #639b85;
    --color-accent-hover: #4a7a66;
    --color-gray: #666666;
    --color-light-gray: #f8f9fa;
    --color-purple: #8b7bb5;
    --color-purple-light: #b8a9d4;
}

/* Typography */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Accent Colors */
.bg-accent {
    background-color: var(--color-accent) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.btn-accent {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-white);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.95) !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-accent) !important;
}

.navbar-nav .btn.nav-link {
    color: var(--color-white) !important;
    border-radius: 4px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

/* Scroll Indicator - Upside Down Guitar */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator img {
    width: 50px;
    height: auto;
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover img {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: left top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

/* Liquid Title Effect */
.liquid-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    mix-blend-mode: color-dodge;
}

.liquid-text {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(4rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: 0.35em;
    line-height: 1.05;
    white-space: nowrap;
    display: block;
    color: rgba(200, 180, 160, 0.5);
    text-shadow:
        -1px -1px 0px rgba(0, 0, 0, 0.4),
        1px -1px 0px rgba(0, 0, 0, 0.4),
        -1px 1px 0px rgba(0, 0, 0, 0.4),
        1px 1px 0px rgba(0, 0, 0, 0.4);
}

/* Anfrage Button */
.anfrage-btn {
    letter-spacing: 0.25em;
    font-weight: 600;
    border-width: 2px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.anfrage-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    color: white !important;
    transform: translateY(-2px);
}

/* ==================== HÖRPROBEN & EVENTS SECTION ==================== */
.hoerproben-events-section {
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.hoerproben-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/60f82c188a46bbbd4b21e08d_GitarrenDSC08844MS-p-1080.jpeg') center center;
    background-attachment: fixed;
    background-size: cover;
    z-index: 0;
}

.hoerproben-events-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 100vh;
    padding: 60px 5% 60px 15%;
    gap: 40px;
}

.hoerproben-box {
    background: #fff;
    width: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Concert Ticket Design */
.ticket-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ticket-header {
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    padding: 30px 25px 25px;
    text-align: center;
    position: relative;
}

.ticket-logo {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3px;
}

.ticket-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    margin: 0;
}

.ticket-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    margin-top: 5px;
}

.ticket-perforated {
    height: 20px;
    background: #1a1a1a;
    position: relative;
    margin: 0 -10px;
}

.ticket-perforated::before,
.ticket-perforated::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
}

.ticket-perforated::before {
    left: -10px;
    box-shadow: inset -5px 0 10px rgba(0,0,0,0.3);
    background: radial-gradient(circle at left, transparent 50%, #1a1a1a 50%);
}

.ticket-perforated::after {
    right: -10px;
    box-shadow: inset 5px 0 10px rgba(0,0,0,0.3);
    background: radial-gradient(circle at right, transparent 50%, #1a1a1a 50%);
}

.ticket-item {
    display: flex;
    align-items: center;
    padding: 35px 20px;
    gap: 12px;
}

.ticket-number {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #4361ee;
    min-width: 40px;
}

.ticket-content {
    flex: 1;
}

.ticket-content .audio-title {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.ticket-content audio {
    filter: invert(1) hue-rotate(180deg);
    opacity: 0.9;
}

.ticket-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 0 25px;
}

.ticket-footer {
    padding: 0;
    text-align: center;
    border-top: 1px dashed rgba(255,255,255,0.2);
    margin-top: 5px;
    overflow: hidden;
}

/* Equalizer Visualization */
.equalizer-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 80px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 60px;
    padding: 10px 20px;
}

.eq-bar {
    width: 8px;
    height: 10px;
    background: linear-gradient(180deg, #4361ee 0%, #7209b7 100%);
    border-radius: 2px;
    transition: height 0.1s ease;
}

.equalizer.playing .eq-bar {
    animation: eq-bounce 0.5s ease-in-out infinite;
}

.equalizer.playing .eq-bar:nth-child(1) { animation-delay: 0.0s; }
.equalizer.playing .eq-bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer.playing .eq-bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer.playing .eq-bar:nth-child(4) { animation-delay: 0.05s; }
.equalizer.playing .eq-bar:nth-child(5) { animation-delay: 0.15s; }
.equalizer.playing .eq-bar:nth-child(6) { animation-delay: 0.25s; }
.equalizer.playing .eq-bar:nth-child(7) { animation-delay: 0.03s; }
.equalizer.playing .eq-bar:nth-child(8) { animation-delay: 0.13s; }
.equalizer.playing .eq-bar:nth-child(9) { animation-delay: 0.23s; }
.equalizer.playing .eq-bar:nth-child(10) { animation-delay: 0.08s; }
.equalizer.playing .eq-bar:nth-child(11) { animation-delay: 0.18s; }
.equalizer.playing .eq-bar:nth-child(12) { animation-delay: 0.28s; }
.equalizer.playing .eq-bar:nth-child(13) { animation-delay: 0.02s; }
.equalizer.playing .eq-bar:nth-child(14) { animation-delay: 0.12s; }
.equalizer.playing .eq-bar:nth-child(15) { animation-delay: 0.22s; }
.equalizer.playing .eq-bar:nth-child(16) { animation-delay: 0.07s; }

@keyframes eq-bounce {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 50px;
    }
}

/* KölschClub Promo Ticker */
.koelschclub-promo {
    background: linear-gradient(135deg, #26033f 0%, #4a1942 100%);
    padding: 20px 0;
    margin-top: auto;
}

.koelschclub-link {
    display: block;
    text-decoration: none;
    color: #fff;
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: ticker-scroll 15s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.koelschclub-logo {
    height: 40px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
}

.ticker-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e09900;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.ticket-barcode {
    font-family: 'Libre Barcode 39', monospace;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.ticket-id {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
}

.divider-dots {
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #333 0px,
        #333 4px,
        transparent 4px,
        transparent 8px
    );
    max-width: 100%;
}

.audio-title {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.audio-item audio {
    height: 40px;
}

/* Custom Audio Player Styling */
audio::-webkit-media-controls-panel {
    background: #f8f9fa;
}

/* Events Section */
.events-section {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}

.events-box-header {
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    padding: 30px 25px 25px;
    text-align: center;
    margin: -30px -40px 25px -40px;
    border-radius: 16px 16px 0 0;
}

.events-icon {
    font-size: 1.8rem;
    color: #fff;
    display: block;
    margin-bottom: 3px;
}

.events-box-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    margin: 0;
}

.events-box-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    margin-top: 5px;
}

#eventsContainer {
    overflow: visible;
    padding: 10px 0;
}

.events-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 40px 40px;
    min-width: 650px;
    color: #fff;
    text-align: center;
    border-radius: 16px;
    overflow: visible;
    flex: 1;
}

.events-box p {
    margin: 0;
    font-size: 0.95rem;
}

.event-item {
    text-align: left;
    overflow: visible;
}

.event-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.event-location {
    margin-top: 8px;
}

/* Calendar Box Design */
.event-calendar-box {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.calendar-day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.calendar-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.calendar-year {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Event Info Styling */
.event-time-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.event-time {
    font-size: 1.1rem;
}

.event-time-row .badge {
    margin-left: 50px;
}

.bg-purple {
    background-color: #7209b7 !important;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.event-location {
    font-size: 1rem;
}

.route-btn {
    white-space: nowrap;
    margin-left: 20px;
    padding: 10px 20px;
    border: none;
    color: #fff;
}

.btn-plugged {
    background-color: #4361ee;
    border-color: #4361ee;
}

.btn-plugged:hover {
    background-color: #3651d4;
    border-color: #3651d4;
    color: #fff;
}

.btn-unplugged {
    background-color: #7209b7;
    border-color: #7209b7;
}

.btn-unplugged:hover {
    background-color: #5c0892;
    border-color: #5c0892;
    color: #fff;
}

/* Responsive events box */
@media (max-width: 991px) {
    .events-box {
        min-width: 100%;
        width: 100%;
    }

    .event-item {
        flex-wrap: wrap;
    }

    .event-calendar-box {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }

    .calendar-day {
        font-size: 1.8rem;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .route-btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
}

/* Responsive for Hörproben/Events */
@media (max-width: 991px) {
    .hoerproben-events-content {
        flex-direction: column;
    }

    .hoerproben-box {
        margin: 20px auto;
        width: 90%;
        max-width: 400px;
    }

    .hoerproben-parallax-bg {
        background-attachment: scroll;
    }

    .events-section {
        padding: 60px 20px;
    }

    .ticket-header {
        padding: 20px;
    }

    .ticket-title {
        font-size: 1.4rem;
    }

    .ticket-item {
        padding: 15px 20px;
    }
}

/* ==================== ECHT. LIVE. AUTHENTISCH PARALLAX ==================== */
.echt-parallax {
    background: url('../assets/images/611b860606697c3bc774feed_KPW01220-p-2000.jpeg') center center;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(100, 60, 140, 0.7) 0%,
        rgba(80, 50, 120, 0.65) 100%
    );
}

.background-text {
    position: absolute;
    top: calc(5% - 35px);
    left: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.02em;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}

.echt-parallax .container {
    z-index: 2;
    padding-left: 100px;
}

.echt-parallax h2 {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.echt-parallax p {
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* ==================== VON UNPLUGGED ZU UNVERGESSLICH SECTION ==================== */
.story-parallax {
    background: url('../assets/images/L1055955-scaled.jpg') center center;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

.story-parallax .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.story-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.story-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 45px;
    flex: 1;
    max-width: 550px;
}

.story-box:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.story-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.story-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 25px;
}

.story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Responsive for Story Section */
@media (max-width: 991px) {
    .story-parallax {
        background-attachment: scroll;
    }

    .story-content-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }

    .story-box {
        max-width: 100%;
    }

    .story-box:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .story-parallax {
        min-height: auto;
        padding: 40px 0;
    }

    .story-box {
        padding: 30px 25px;
    }

    .story-title {
        font-size: 1.4rem;
    }

    .story-text {
        font-size: 0.95rem;
    }
}

/* ==================== BUCHUNGSANFRAGE SECTION ==================== */
.booking-parallax {
    background: url('../assets/images/610cf30e5fd77915d5766804_L1100055-p-2000.jpeg') center center;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(140, 80, 160, 0.75) 0%,
        rgba(100, 60, 140, 0.7) 100%
    );
}

.booking-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Roboto', sans-serif;
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.02em;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.booking-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 30px;
}

.booking-header-box {
    background: linear-gradient(135deg, rgba(248, 165, 194, 0.85) 0%, rgba(245, 205, 121, 0.85) 100%);
    height: 180px;
    border-radius: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.booking-header-box::before {
    content: 'MUSIKMOMENT';
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
}

.booking-slogan {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.3);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-row {
    display: flex;
    gap: 12px;
}

.booking-field {
    flex: 1;
}

.booking-field.full-width {
    flex: 1 1 100%;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    border: none;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    transition: background 0.3s ease;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.booking-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.booking-field select option {
    background: #1a1a1a;
    color: #fff;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.95);
}

.booking-field textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive for Booking Section */
@media (max-width: 991px) {
    .booking-parallax {
        background-attachment: scroll;
    }

    .booking-watermark {
        font-size: clamp(4rem, 15vw, 10rem);
    }
}

@media (max-width: 767px) {
    .booking-parallax {
        min-height: auto;
        padding: 40px 0;
    }

    .booking-content-wrapper {
        padding: 0 20px;
    }

    .booking-header-box {
        height: 150px;
        margin-bottom: 20px;
    }

    .booking-row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-field input,
    .booking-field select,
    .booking-field textarea {
        padding: 15px;
    }

    .booking-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ==================== PARALLAX SECTIONS ==================== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

/* Disable parallax on mobile for performance */
@media (max-width: 991px) {
    .events-parallax,
    .echt-parallax {
        background-attachment: scroll;
    }
}

/* Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Band Cards */
.band-card {
    overflow: hidden;
}

.band-card img {
    transition: transform 0.3s ease;
}

.band-card:hover img {
    transform: scale(1.05);
}

/* Team Cards */
.team-card {
    text-align: center;
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--color-accent);
    display: block;
}

/* Anniversary Section */
.anniversary-section {
    background: linear-gradient(135deg, #639b85 0%, #1a1a1a 100%);
}

.anniversary-number {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(45deg, #fff, #639b85);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gallery Images */
.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

/* Contact Form */
.form-control:focus,
.form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem rgba(99, 155, 133, 0.25);
}

/* Footer */
footer a:hover {
    color: var(--color-accent) !important;
}

.footer-links a {
    color: #fff;
    font-size: 10px;
    text-decoration: none;
    margin-left: 15px;
}

.footer-links a:first-child {
    margin-left: 0;
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* Modal */
.modal-header {
    background: var(--color-black);
    color: var(--color-white);
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Padding */
section {
    scroll-margin-top: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .echt-parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .liquid-text {
        font-size: clamp(2rem, 14vw, 4rem);
        letter-spacing: 0.25em;
        font-weight: 400;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .anniversary-number {
        font-size: 5rem;
    }

    .team-card img {
        width: 150px;
        height: 150px;
    }

    .gallery-img {
        height: 200px;
    }

    .echt-parallax {
        min-height: 50vh;
        padding: 60px 0;
    }

    .echt-parallax h2 {
        font-size: 2rem !important;
    }
}

/* ==================== 10 YEARS ANNIVERSARY POPUP ==================== */
.anniversary-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.anniversary-popup.active {
    opacity: 1;
    visibility: visible;
}

.anniversary-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.anniversary-popup-content {
    position: relative;
    width: 95%;
    max-width: 95%;
    height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 31, 61, 0.95) 50%, rgba(26, 26, 26, 0.95) 100%);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #f5cd79, #f8a5c2, #7209b7, #4361ee) 1;
    padding: 30px 40px;
    text-align: center;
    animation: popupSlideIn 0.6s ease-out;
    box-shadow:
        0 0 60px rgba(114, 9, 183, 0.5),
        0 0 100px rgba(248, 165, 194, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.anniversary-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.anniversary-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.anniversary-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
    color: #f8a5c2;
}

/* Sparks Animation */
.anniversary-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f5cd79;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

.spark:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.spark:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.4s; }
.spark:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 0.8s; }
.spark:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 1.2s; }
.spark:nth-child(5) { top: 50%; left: 5%; animation-delay: 1.6s; }

@keyframes sparkle {
    0%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 20px #f5cd79, 0 0 40px #f8a5c2;
    }
}

.anniversary-header {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.anniversary-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f5cd79 0%, #f8a5c2 100%);
    padding: 15px 30px;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 205, 121, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 205, 121, 0.8), 0 0 60px rgba(248, 165, 194, 0.5);
    }
}

.badge-number {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.badge-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 4px;
}

.anniversary-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 8px;
    margin: 10px 0 5px;
    text-shadow: 0 0 30px rgba(248, 165, 194, 0.5);
    position: relative;
    z-index: 2;
}

.anniversary-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #f8a5c2;
    letter-spacing: 6px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.anniversary-divider {
    margin: 10px 0;
    position: relative;
    z-index: 2;
}

.guitar-icon {
    font-size: 2rem;
    animation: guitarRock 0.5s ease-in-out infinite alternate;
}

@keyframes guitarRock {
    from { transform: rotate(-10deg); }
    to { transform: rotate(10deg); }
}

.anniversary-slogan {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5cd79;
    letter-spacing: 4px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.anniversary-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.anniversary-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.anniversary-what-makes-special {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 15px 25px;
    margin-bottom: 15px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.anniversary-what-makes-special p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 8px 0;
    line-height: 1.5;
}

.anniversary-what-makes-special strong {
    color: #f5cd79;
}

/* Song Wish Form */
.anniversary-wish-form {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(248, 165, 194, 0.3);
    border-radius: 20px;
    padding: 25px 30px;
    margin: 20px auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.wish-form-title {
    color: #f8a5c2;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.wish-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wish-form-row {
    display: flex;
    gap: 12px;
}

.wish-form-row input,
.wish-form-row textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.wish-form-row input::placeholder,
.wish-form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wish-form-row input:focus,
.wish-form-row textarea:focus {
    outline: none;
    border-color: #f8a5c2;
    background: rgba(255, 255, 255, 0.15);
}

.wish-form-row textarea {
    resize: none;
}

.wish-submit-btn {
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wish-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(248, 165, 194, 0.5);
}

.wish-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

/* Popup Hero Section */
.popup-hero {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.popup-hero-text {
    font-size: 1.4rem;
    color: #f8a5c2;
    margin: 15px 0;
    letter-spacing: 2px;
}

.popup-hero-text strong {
    color: #f5cd79;
}

.popup-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.popup-hero-description strong {
    color: #f5cd79;
}

/* Section Titles */
.popup-section-title {
    color: #f8a5c2;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 20px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* Features Grid */
.popup-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.popup-feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(248, 165, 194, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.popup-feature-card:hover {
    transform: translateY(-5px);
    border-color: #f8a5c2;
    box-shadow: 0 10px 30px rgba(248, 165, 194, 0.2);
}

.popup-feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.popup-feature-card h3 {
    color: #f5cd79;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.popup-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Event Details */
.popup-event-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.popup-detail-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.popup-detail-box h4 {
    color: #f5cd79;
    font-size: 1rem;
    margin-bottom: 10px;
}

.popup-detail-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 5px 0;
}

.popup-detail-box .detail-link {
    display: inline-block;
    margin-top: 10px;
    color: #f8a5c2;
    text-decoration: underline;
    font-weight: 600;
}

/* FAQ Section */
.popup-faq {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #f8a5c2;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-align: left;
}

.faq-item strong {
    color: #f5cd79;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Final CTA */
.popup-final-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.3) 0%, rgba(67, 97, 238, 0.3) 100%);
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.popup-final-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .popup-features-grid,
    .popup-event-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .wish-form-row {
        flex-direction: column;
    }

    .anniversary-wish-form {
        padding: 20px;
    }

    .popup-hero-text {
        font-size: 1.1rem;
    }

    .popup-section-title {
        font-size: 1.1rem;
    }

    .popup-feature-card {
        padding: 20px 15px;
    }
}

.anniversary-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.3) 0%, rgba(67, 97, 238, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

.anniversary-times {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.anniversary-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-text {
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.anniversary-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    color: #1a1a1a;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: ctaPulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(248, 165, 194, 0.4);
    }
    50% {
        box-shadow: 0 5px 50px rgba(248, 165, 194, 0.8);
    }
}

.anniversary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    color: #1a1a1a;
}

.anniversary-footer {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.anniversary-stars {
    color: #f5cd79;
    letter-spacing: 5px;
}

/* Responsive */
@media (max-width: 767px) {
    .anniversary-popup-content {
        padding: 40px 20px;
        width: 95%;
    }

    .anniversary-title {
        letter-spacing: 5px;
    }

    .anniversary-subtitle {
        letter-spacing: 3px;
    }

    .anniversary-details {
        flex-direction: column;
        gap: 15px;
    }

    .anniversary-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .badge-number {
        font-size: 3rem;
    }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    border-radius: 50px;
    padding: 15px 25px;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-width: 90%;
}

.cookie-consent.cookie-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-icon {
    font-size: 1.8rem;
}

.cookie-text {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(248, 165, 194, 0.4);
}

@media (max-width: 767px) {
    .cookie-consent {
        bottom: 10px;
        padding: 12px 20px;
        border-radius: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-text {
        font-size: 0.85rem;
    }
}

/* ==================== COMPACT ANNIVERSARY POPUP STYLES ==================== */
.popup-hero-compact {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px 0;
}

.anniversary-badge-small {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5cd79 0%, #f8a5c2 100%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
    box-shadow: 0 0 30px rgba(245, 205, 121, 0.6), 0 0 60px rgba(248, 165, 194, 0.3);
}

.anniversary-badge-small .badge-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.anniversary-badge-small .badge-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.anniversary-title-compact {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 6px;
    margin: 8px 0 5px;
    text-shadow: 0 0 30px rgba(248, 165, 194, 0.5);
}

.popup-tagline {
    color: #f5cd79;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 5px 0 0;
}

.popup-subtitle strong {
    color: #f8a5c2;
}

/* Compact Features Grid */
.popup-features-compact {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 20px;
    position: relative;
    z-index: 2;
}

.popup-feature-card-compact {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(248, 165, 194, 0.3);
    border-radius: 15px;
    padding: 20px 25px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    transition: all 0.3s ease;
}

.popup-feature-card-compact:hover {
    transform: translateY(-5px);
    border-color: #f8a5c2;
    box-shadow: 0 10px 30px rgba(248, 165, 194, 0.2);
}

.feature-icon-compact {
    font-size: 2rem;
    margin-bottom: 8px;
}

.popup-feature-card-compact h3 {
    color: #f5cd79;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.popup-feature-card-compact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.feature-btn {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.6) 0%, rgba(67, 97, 238, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.feature-btn:hover {
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    color: #1a1a1a;
    transform: scale(1.05);
}

/* Tooltip on hover */
.feature-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.feature-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Info Bar */
.popup-info-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.popup-info-bar span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Large CTA Button */
.anniversary-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    color: #1a1a1a;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: ctaPulse 2s infinite;
    position: relative;
    z-index: 2;
    margin: 10px 0;
}

.anniversary-cta-large:hover {
    transform: translateY(-3px) scale(1.05);
    color: #1a1a1a;
}

/* Compact Footer */
.anniversary-footer-compact {
    text-align: center;
    padding: 5px 0;
    position: relative;
    z-index: 2;
}

.anniversary-footer-compact span {
    color: #f5cd79;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 1rem;
}

/* ==================== FORM POPUP ==================== */
.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-popup.active {
    opacity: 1;
    visibility: visible;
}

.form-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.form-popup-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 31, 61, 0.98) 100%);
    border: 2px solid #f8a5c2;
    border-radius: 20px;
    padding: 30px 35px;
    animation: formSlideIn 0.4s ease-out;
    box-shadow: 0 0 40px rgba(248, 165, 194, 0.4);
}

@keyframes formSlideIn {
    from {
        transform: scale(0.9) translateY(-30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.form-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    line-height: 1;
}

.form-popup-close:hover {
    opacity: 1;
    color: #f8a5c2;
}

.form-popup-title {
    color: #f8a5c2;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.participation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.participation-form .form-row {
    width: 100%;
}

.participation-form input,
.participation-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.participation-form input::placeholder,
.participation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.participation-form input:focus,
.participation-form textarea:focus {
    outline: none;
    border-color: #f8a5c2;
    background: rgba(255, 255, 255, 0.15);
}

.participation-form textarea {
    resize: none;
    min-height: 80px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #f8a5c2 0%, #f5cd79 100%);
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(248, 165, 194, 0.5);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive for compact popup */
@media (max-width: 991px) {
    .popup-features-compact {
        flex-direction: column;
        align-items: center;
    }

    .popup-feature-card-compact {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .anniversary-popup-content {
        padding: 20px 15px;
    }

    .anniversary-title-compact {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .popup-tagline {
        font-size: 0.85rem;
    }

    .popup-subtitle {
        font-size: 0.95rem;
    }

    .popup-features-compact {
        padding: 10px;
        gap: 15px;
    }

    .popup-feature-card-compact {
        padding: 15px 20px;
    }

    .anniversary-cta-large {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .form-popup-content {
        padding: 25px 20px;
    }
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}

/* ==================== SUCCESS MODAL ==================== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.success-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border: 2px solid #f5cd79;
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow:
        0 0 30px rgba(245, 205, 121, 0.3),
        0 0 60px rgba(245, 205, 121, 0.1),
        inset 0 0 60px rgba(245, 205, 121, 0.05);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: rockBounce 0.6s ease-out;
}

@keyframes rockBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.success-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #f5cd79;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(245, 205, 121, 0.5);
}

.success-message {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.success-close-btn {
    background: linear-gradient(135deg, #f5cd79 0%, #f8a5c2 100%);
    border: none;
    border-radius: 30px;
    padding: 15px 50px;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.success-close-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 30px rgba(245, 205, 121, 0.5);
}

@media (max-width: 576px) {
    .success-modal-content {
        padding: 40px 30px;
    }

    .success-title {
        font-size: 1.8rem;
    }

    .success-icon {
        font-size: 3rem;
    }
}

/* ==================== APP-LIKE RESPONSIVE DESIGN ==================== */

/* Global Mobile Optimizations */
@media (max-width: 991px) {
    /* Center all content */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    section {
        text-align: center;
    }

    /* Hero Section */
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 600px;
    }

    .hero-video {
        object-position: center center;
    }

    .liquid-text {
        font-size: clamp(3rem, 12vw, 8rem);
        letter-spacing: 0.15em;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .anfrage-btn {
        width: 100%;
        max-width: 300px;
        font-size: 0.95rem;
        padding: 14px 30px !important;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    /* Parallax - disable on mobile for performance */
    .parallax-section {
        background-attachment: scroll !important;
    }
}

/* Tablet & Mobile */
@media (max-width: 767px) {
    /* Hero */
    .hero-section {
        min-height: 100dvh;
    }

    .liquid-text {
        font-size: clamp(2.2rem, 14vw, 5rem);
        letter-spacing: 0.1em;
    }

    .hero-buttons .anfrage-btn {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

    .scroll-indicator img {
        width: 35px;
    }

    /* Hoerproben & Events Section */
    .hoerproben-events-section {
        padding: 40px 0;
    }

    .hoerproben-events-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
        align-items: center;
    }

    .hoerproben-box,
    .events-section {
        width: 100%;
        max-width: 500px;
    }

    .ticket-container {
        padding: 25px 20px;
    }

    .ticket-title {
        font-size: 1.3rem;
    }

    .events-box {
        padding: 25px 20px;
    }

    .event-item {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 15px;
        padding-bottom: 20px;
    }

    .event-calendar-box {
        margin: 0 auto;
    }

    .event-info {
        text-align: center !important;
        width: 100%;
    }

    .route-btn {
        width: 100%;
        max-width: 250px;
    }

    /* Story Boxes */
    .story-content-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
        align-items: center;
    }

    .story-box {
        width: 100%;
        max-width: 500px;
        text-align: center;
        padding: 30px 25px;
    }

    .story-title {
        font-size: 1.5rem;
    }

    .story-subtitle {
        font-size: 1rem;
    }

    /* Parallax Sections */
    .parallax-section .container {
        text-align: center;
    }

    .parallax-section .col-lg-10 {
        text-align: center;
    }

    .display-2 {
        font-size: 1.8rem !important;
        text-align: center;
    }

    .parallax-section h4 {
        text-align: center;
    }

    .parallax-section p {
        text-align: center;
    }

    /* Booking Form */
    .booking-content-wrapper {
        padding: 30px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-header-box {
        padding: 25px 20px;
    }

    .booking-slogan {
        font-size: 1.6rem;
    }

    .booking-row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-field {
        width: 100% !important;
    }

    .booking-submit-btn {
        width: 100%;
        padding: 16px;
    }

    /* Footer */
    footer .row {
        text-align: center;
    }

    footer .col-md-4 {
        margin-bottom: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* ==================== ANNIVERSARY POPUP - MOBILE REDESIGN ==================== */
    .anniversary-popup-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .anniversary-bg-video {
        position: fixed;
        opacity: 0.3;
    }

    .anniversary-close-btn {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 100;
        width: 44px;
        height: 44px;
        font-size: 28px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
    }

    .popup-hero-compact {
        padding: 80px 20px 30px;
        text-align: center;
    }

    .anniversary-badge-small {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .anniversary-badge-small .badge-number {
        font-size: 3rem;
    }

    .anniversary-badge-small .badge-text {
        font-size: 0.9rem;
    }

    .anniversary-title-compact {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .popup-tagline {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .popup-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Feature Cards - Stack Vertically */
    .popup-features-compact {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        align-items: center;
    }

    .popup-feature-card-compact {
        width: 100%;
        max-width: 350px;
        padding: 20px;
        text-align: center;
        border-radius: 15px;
    }

    .feature-icon-compact {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .popup-feature-card-compact h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .popup-feature-card-compact p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .feature-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Info Bar */
    .popup-info-bar {
        padding: 15px;
        font-size: 0.8rem;
        text-align: center;
    }

    .popup-info-bar span {
        display: block;
        line-height: 1.5;
    }

    /* Ticket CTA */
    .anniversary-cta-large {
        display: block;
        margin: 20px;
        padding: 18px 25px;
        font-size: 1rem;
        text-align: center;
        border-radius: 12px;
    }

    .anniversary-footer-compact {
        padding: 20px;
        padding-bottom: 40px;
    }

    /* Form Popup Mobile */
    .form-popup-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 80px 25px 40px;
        overflow-y: auto;
    }

    .form-popup-close {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .form-popup-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .participation-form .form-row {
        margin-bottom: 15px;
    }

    .participation-form input,
    .participation-form textarea {
        padding: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }
}

/* Small Mobile (< 400px) */
@media (max-width: 400px) {
    .liquid-text {
        font-size: clamp(1.8rem, 15vw, 3.5rem);
        letter-spacing: 0.05em;
    }

    .hero-buttons .anfrage-btn {
        font-size: 0.75rem;
        padding: 12px 20px !important;
        letter-spacing: 0.15em;
    }

    .anniversary-title-compact {
        font-size: 1.5rem;
    }

    .popup-tagline {
        font-size: 0.8rem;
    }

    .booking-slogan {
        font-size: 1.3rem;
    }

    .display-2 {
        font-size: 1.5rem !important;
    }

    .story-title {
        font-size: 1.3rem;
    }
}

/* Fix for iOS Safari viewport */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        height: -webkit-fill-available;
    }

    .anniversary-popup-content,
    .form-popup-content {
        height: -webkit-fill-available;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .liquid-text {
        font-size: clamp(1.5rem, 8vh, 3rem);
    }

    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons .anfrage-btn {
        width: auto;
        max-width: none;
        padding: 10px 25px !important;
    }

    .scroll-indicator {
        display: none;
    }

    .anniversary-popup-content {
        padding-top: 60px;
    }

    .popup-features-compact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .popup-feature-card-compact {
        width: calc(33% - 20px);
        min-width: 200px;
    }
}

/* Ticket button in hero */
.anniversary-cta-top {
    margin-top: 25px;
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 205, 121, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 205, 121, 0.8), 0 0 60px rgba(248, 165, 194, 0.4);
        transform: scale(1.02);
    }
}

/* iPad specific */
@media (min-width: 768px) and (max-width: 1024px) {
    .hoerproben-events-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hoerproben-box,
    .events-section {
        width: calc(50% - 20px);
        max-width: 400px;
    }

    .story-content-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-box {
        width: calc(50% - 20px);
        max-width: 450px;
    }

    .anniversary-popup-content {
        width: 90%;
        height: auto;
        max-height: 90vh;
        border-radius: 20px;
        margin: 5vh auto;
    }

    .popup-features-compact {
        flex-direction: row;
        justify-content: center;
    }

    .popup-feature-card-compact {
        width: calc(33% - 15px);
        max-width: 250px;
    }
}
