/* KölschClub - Custom Styles */
/* Single Page Bootstrap Website with Parallax */

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-primary: #2EA3F2;
    --color-secondary: #ff8426;
    --color-accent: #e09900;
    --color-accent-hover: #c78a00;
    --color-gray: #666666;
    --color-light-gray: #f8f9fa;
    --color-purple: #26033f;
    --color-purple-light: #4a1942;
}

/* 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);
}

/* Karneval Button */
.btn-karneval {
    background: linear-gradient(135deg, #ff8426 0%, #e09900 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-karneval:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 132, 38, 0.4);
    color: #fff;
}

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

.hero-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 10px;
    mix-blend-mode: normal;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
    color: #fff;
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    color: #fff;
}

@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: center center;
}

.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;
    background: transparent;
}

.hoerproben-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    background-image: url('../assets/images/MM-10-24-Obererbach-184.jpg');
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    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, #26033f 0%, #4a1942 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, #ff8426 0%, #e09900 100%);
    padding: 30px 25px 25px;
    text-align: center;
    position: relative;
}

.ticket-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ticket-perforated {
    height: 20px;
    background: #26033f;
    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%, #26033f 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%, #26033f 50%);
}

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

.ticket-number {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ff8426;
    min-width: 40px;
}

.ticket-content {
    flex: 1;
}

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

.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, #ff8426 0%, #e09900 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;
    }
}

/* Musikmoment Promo Ticker */
.musikmoment-promo {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 20px 0;
    margin-top: auto;
}

.musikmoment-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;
}

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

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

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

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

.events-box-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#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-karneval {
    background-color: #ff8426 !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-karneval-event {
    background: linear-gradient(135deg, #ff8426 0%, #e09900 100%);
    border: none;
}

.btn-karneval-event:hover {
    background: linear-gradient(135deg, #e09900 0%, #ff8426 100%);
    color: #fff;
    transform: translateY(-2px);
}

.event-info-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff8426;
    margin-bottom: 10px;
}

.event-sub-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 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;
        padding: 40px 15px;
    }

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

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

    .events-section {
        margin-right: 0;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }

    .events-box {
        min-width: 100%;
    }

    .ticket-header {
        padding: 20px;
    }

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

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

/* ==================== PARTY PUR PARALLAX ==================== */
.party-parallax {
    background: url('../assets/images/MM-10-24-Obererbach-115.jpg') 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(38, 3, 63, 0.8) 0%,
        rgba(255, 132, 38, 0.4) 100%
    );
}

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

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

.party-parallax h2 {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Fjalla One', sans-serif;
    letter-spacing: 5px;
}

.party-parallax h4 {
    color: #ff8426 !important;
}

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

/* ==================== REPERTOIRE SECTION ==================== */
.repertoire-parallax {
    background: url('../assets/images/MM-10-24-Obererbach-253.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;
}

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

.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: 'Fjalla One', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #26033f;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.story-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #ff8426;
    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) {
    .repertoire-parallax,
    .party-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) {
    .repertoire-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/MM-10-24-Obererbach-184.jpg') 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(38, 3, 63, 0.85) 0%,
        rgba(255, 132, 38, 0.5) 100%
    );
}

.booking-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 400;
    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, #ff8426 0%, #e09900 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: 'KÖLLE ALAAF';
    position: absolute;
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
}

.booking-slogan {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 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);
    box-shadow: 0 0 0 2px rgba(255, 132, 38, 0.5);
}

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

.booking-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff8426 0%, #e09900 100%);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    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(255, 132, 38, 0.4);
}

/* 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) {
    .party-parallax,
    .repertoire-parallax {
        background-attachment: scroll;
    }
}

/* 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-purple);
    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: 767px) {
    .liquid-text {
        font-size: clamp(2rem, 14vw, 4rem);
        letter-spacing: 0.15em;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 5px;
    }

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

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

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

    .party-parallax .container {
        padding-left: 20px;
    }

    .background-text {
        font-size: clamp(3rem, 12vw, 8rem);
        left: 20px;
    }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(38, 3, 63, 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, #ff8426 0%, #e09900 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 132, 38, 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;
    }
}

/* ==================== 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, #26033f 0%, #4a1942 50%, #26033f 100%);
    border: 2px solid #ff8426;
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow:
        0 0 30px rgba(255, 132, 38, 0.3),
        0 0 60px rgba(255, 132, 38, 0.1),
        inset 0 0 60px rgba(255, 132, 38, 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: partyBounce 0.6s ease-out;
}

@keyframes partyBounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-15deg) scale(1.1); }
    75% { transform: rotate(15deg) scale(1.1); }
}

.success-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ff8426;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 132, 38, 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, #ff8426 0%, #e09900 100%);
    border: none;
    border-radius: 30px;
    padding: 15px 50px;
    color: #fff;
    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(255, 132, 38, 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.1em;
    }

    .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.08em;
    }

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

    /* 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;
    }

    /* 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;
    }
}

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

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

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

    .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;
    }
}

/* 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;
    }
}

/* 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;
    }
}

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

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

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

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

/* ==================== 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;
}

/* Compact Hero Section */
.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);
}

@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);
    }
}

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

.anniversary-badge-small .badge-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    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;
}

/* 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);
}

/* 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;
}

@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-large:hover {
    transform: translateY(-3px) scale(1.05);
    color: #1a1a1a;
}

.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);
    }
}

/* 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;
}

.participation-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(40, 40, 60, 0.8);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.participation-form select:focus {
    outline: none;
    border-color: #f8a5c2;
    background-color: rgba(50, 50, 70, 0.9);
}

.participation-form select option {
    background: #2a2a3e;
    color: #fff;
    padding: 10px;
}

.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 Anniversary 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 {
        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;
    }

    .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;
    }

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

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

    .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-content {
        width: 95%;
        max-width: 400px;
        height: auto;
        max-height: 90vh;
        border-radius: 20px;
        padding: 25px 20px;
        overflow-y: auto;
        margin: auto;
    }

    .form-popup-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .form-popup-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
        padding-right: 30px;
    }

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

    .participation-form input,
    .participation-form textarea,
    .participation-form select {
        padding: 12px 14px;
        font-size: 16px;
    }

    .participation-form textarea {
        rows: 2;
        min-height: 60px;
    }

    .form-submit-btn {
        width: 100%;
        padding: 14px;
        font-size: 0.95rem;
        margin-top: 5px;
    }
}
