/* ============================================
   CHORLIBE – CSS Styles
   Pastellige Farbtöne, Modern & Elegant
   ============================================ */

/* ---------- Reservation Info Hinweis ---------- */
.reservation-info {
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fff7e6;
    border: 1px solid #ffd591;
    color: #7a4b00;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reservation-info i {
    margin-right: 6px;
    color: #faad14;
}

/* ---------- Variables ---------- */
:root {
    --pastel-pink: #f4c2c2;
    --pastel-pink-light: #fce4e4;
    --pastel-lavender: #d4c5f9;
    --pastel-lavender-light: #ede7fb;
    --pastel-mint: #b5ead7;
    --pastel-mint-light: #daf5ea;
    --pastel-peach: #ffd5b8;
    --pastel-peach-light: #ffead4;
    --pastel-blue: #b5d5f5;
    --pastel-blue-light: #ddeefb;
    --pastel-yellow: #fef3c7;

    --text-dark: #2d2d3a;
    --text-medium: #555566;
    --text-light: #888899;
    --white: #ffffff;
    --off-white: #faf9fe;
    --bg-alt: #f5f0fa;

    --gradient-primary: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 50%, var(--pastel-peach) 100%);
    --gradient-hero: linear-gradient(135deg, #e8d5f5 0%, #f4c2c2 40%, #ffd5b8 100%);
    --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--pastel-lavender-light) 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 4px 20px rgba(212, 197, 249, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.hidden {
    display: none !important;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 197, 249, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-logo i {
    color: var(--pastel-lavender);
}

.navbar.scrolled .nav-logo {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--text-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--text-dark);
    background: var(--pastel-lavender-light);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 197, 249, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 194, 194, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(181, 234, 215, 0.3) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 58, 0.35);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Animate In */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.2s; }
.animate-in:nth-child(2) { animation-delay: 0.4s; }
.animate-in:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- News / Aktuelles ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.news-card-body {
    padding: 24px;
}

.news-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.news-card-body p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.news-link {
    color: var(--pastel-lavender);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.news-link:hover {
    gap: 10px;
    color: var(--text-dark);
}

/* ---------- Calendar / Termine ---------- */
.calendar-wrapper {
    max-width: 700px;
    margin: 0 auto 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cal-month {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.cal-nav {
    background: var(--pastel-lavender-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cal-nav:hover {
    background: var(--pastel-lavender);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 8px 0;
}

.cal-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: default;
    transition: var(--transition);
    color: var(--text-medium);
}

.cal-day.today {
    background: var(--pastel-lavender-light);
    color: var(--text-dark);
    font-weight: 600;
}

.cal-day.has-event {
    background: var(--gradient-primary);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.cal-day.has-event:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

.cal-day.other-month {
    color: var(--text-light);
    opacity: 0.4;
}

.events-list {
    max-width: 700px;
    margin: 0 auto;
}

.events-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.event-date-badge {
    min-width: 60px;
    text-align: center;
    padding: 10px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.event-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--pastel-lavender);
    background: transparent;
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.photo-item.photo-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.photo-item:hover img {
    transform: scale(1.08);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 45, 58, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.video-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-thumb img,
.video-thumb video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-thumb video.playing {
    height: auto;
    max-height: 400px;
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 45, 58, 0.3);
    transition: var(--transition);
}

.video-play i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.video-item:hover .video-play i {
    transform: scale(1.1);
    background: var(--white);
}

.video-item h4 {
    padding: 16px 16px 4px;
    font-size: 1.05rem;
}

.video-item p {
    padding: 0 16px 16px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- About ---------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Team */
.team-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-dark);
    overflow: hidden;
}

.team-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-role {
    color: var(--pastel-lavender);
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- Tickets ---------- */
.ticket-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.ticket-events h3,
.ticket-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.ticket-event-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.ticket-event-card:hover,
.ticket-event-card.selected {
    border-color: var(--pastel-lavender);
    box-shadow: var(--shadow-glow);
}

.ticket-event-icon {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.ticket-event-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.ticket-event-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticket-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.ticket-date-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: var(--pastel-lavender-light);
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ticket-date-tag i {
    font-size: 0.7rem;
    color: var(--text-light);
}

.ticket-event-status {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    align-self: flex-start;
}

.ticket-event-status.available {
    background: var(--pastel-mint-light);
    color: #2d7a5a;
}

.ticket-event-status.free {
    background: var(--pastel-blue-light);
    color: #2d5a7a;
}

.ticket-event-status.sold-out {
    background: var(--pastel-pink-light);
    color: #a03030;
}

.ticket-event-status.low {
    background: var(--pastel-peach-light);
    color: #8a5a20;
}

/* Capacity Info */
.capacity-info {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.capacity-info i {
    font-size: 1rem;
}

.capacity-info.available {
    background: var(--pastel-mint-light);
    color: #2d7a5a;
    border: 1px solid var(--pastel-mint);
}

.capacity-info.low {
    background: var(--pastel-peach-light);
    color: #8a5a20;
    border: 1px solid var(--pastel-peach);
    animation: pulse-warning 2s ease-in-out infinite;
}

.capacity-info.sold-out {
    background: var(--pastel-pink-light);
    color: #a03030;
    border: 1px solid var(--pastel-pink);
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

/* Ticket Form */
.ticket-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e4f0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pastel-lavender);
    box-shadow: 0 0 0 4px rgba(212, 197, 249, 0.2);
}

.form-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #888;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 2px solid #e8e4f0;
    font-size: 1.1rem;
    font-weight: 600;
}

#totalPrice {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--pastel-lavender);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-list i {
    margin-top: 4px;
    color: var(--pastel-lavender);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--pastel-lavender);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: var(--white);
    padding: 16px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    z-index: 3000;
    transition: var(--transition);
    opacity: 0;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--pastel-mint);
    font-size: 1.2rem;
}

.toast.toast-error {
    background: #8b2020;
}

.toast.toast-error i {
    color: var(--pastel-peach);
}

.toast.toast-success {
    background: var(--text-dark);
}

.toast.toast-success i {
    color: var(--pastel-mint);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }

    .ticket-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text-medium);
        padding: 12px 16px;
        width: 100%;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--pastel-lavender-light);
        color: var(--text-dark);
    }

    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .news-grid { grid-template-columns: 1fr; }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .photo-item.photo-wide {
        grid-column: span 2;
    }

    .about-stats { gap: 24px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-item.photo-wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

    .video-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SITZPLAN – PDF-Overlay mit Klick-Auswahl
   ============================================ */

/* Wrapper */
.sp-wrapper {
    background: var(--white);
    border: 2px solid var(--pastel-lavender-light);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 12px 0 20px;
}

/* Info-Leiste (Legende + Zähler) */
.sp-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-legend {
    display: flex;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--text-medium);
}

.sp-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
}
.sp-dot-free      { background: var(--pastel-lavender-light); border: 2px solid var(--pastel-lavender); }
.sp-dot-selected  { background: var(--pastel-peach); border: 2px solid #f0a060; }
.sp-dot-reserved  { background: #e5e5e5; border: 2px solid #ccc; }

.sp-counter {
    font-size: 0.88rem;
    color: var(--text-dark);
}

.sp-counter strong {
    color: var(--pastel-lavender);
    font-size: 1.1rem;
}

/* Bühne */
.sp-stage {
    text-align: center;
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    margin: 8px 0;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

/* Viewport (scrollbarer Bereich) */
.sp-viewport {
    overflow: auto;
    border: 2px solid #f0ecf5;
    border-radius: var(--radius-md);
    position: relative;
    max-height: 520px;
    -webkit-overflow-scrolling: touch;
    background: var(--off-white);
}

.sp-inner {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
    transform-origin: top center;
}

.sp-canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.sp-svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    cursor: default;
}

/* Sitze (SVG) */
.sp-seat {
    cursor: pointer;
    transition: fill 0.15s ease, stroke 0.15s ease, opacity 0.15s ease;
}

.sp-seat-free {
    fill: var(--pastel-lavender-light);
    stroke: var(--pastel-lavender);
    stroke-width: 1.5;
}

.sp-seat-free:hover {
    fill: var(--pastel-lavender);
    stroke: #8b6cbf;
    stroke-width: 2;
}

.sp-seat-selected {
    fill: var(--pastel-peach);
    stroke: #f0a060;
    stroke-width: 2.5;
}

.sp-seat-selected:hover {
    fill: #ffcba4;
    stroke: #e08030;
}

.sp-seat-reserved {
    fill: #e5e5e5;
    stroke: #ccc;
    stroke-width: 1;
    cursor: not-allowed;
    opacity: 0.55;
}

/* Shake-Animation bei Max erreicht */
@keyframes sp-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}
.sp-seat-shake {
    animation: sp-shake 0.35s ease;
}

/* Reihen-Label */
.sp-row-label {
    font-size: 11px;
    font-weight: 700;
    fill: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Sitznummern im SVG */
.sp-seat-num {
    font-size: 8px;
    fill: var(--text-medium);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    user-select: none;
}

/* Zoom-Steuerung */
.sp-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.sp-zoom-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--pastel-lavender-light);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    font-size: 0.85rem;
    transition: var(--transition);
}

.sp-zoom-btn:hover {
    background: var(--pastel-lavender-light);
    border-color: var(--pastel-lavender);
    color: var(--text-dark);
}

.sp-zoom-label {
    font-size: 0.82rem;
    color: var(--text-light);
    min-width: 40px;
    text-align: center;
}

/* Gewählte Plätze Anzeige */
.sp-selected-list {
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--pastel-yellow);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 2;
}

.sp-seat-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--pastel-peach);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 2px;
    font-size: 0.8rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.sp-tag-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 0 2px;
    line-height: 1;
    transition: color 0.15s;
}

.sp-tag-remove:hover {
    color: #e44;
}

/* Hinweis-Text */
.sp-hint {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.5;
}

/* Per-Seat Kategorie-Auswahl */
.seat-category-list {
    margin-top: 16px;
    padding: 16px;
    background: var(--pastel-lavender-light, #f5f0fa);
    border-radius: var(--radius-lg, 12px);
}

.seat-category-list > label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

#seatCategoryItems {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seat-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    background: #fff;
    border-radius: var(--radius-md, 8px);
    border: 1px solid #e8e4f0;
}

.seat-cat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}

.seat-cat-select {
    padding: 6px 10px;
    border: 1px solid #e0dce8;
    border-radius: var(--radius-md, 8px);
    background: #faf9fe;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.seat-cat-select:focus {
    border-color: var(--pastel-lavender);
    box-shadow: 0 0 0 3px rgba(212, 197, 249, 0.2);
    outline: none;
}

/* Responsive Sitzplan */
@media (max-width: 768px) {
    .sp-wrapper {
        padding: 12px;
    }

    .sp-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .sp-legend {
        gap: 10px;
        font-size: 0.75rem;
    }

    .sp-viewport {
        max-height: 400px;
    }

    .sp-controls {
        margin-top: 10px;
    }

    .sp-selected-list {
        font-size: 0.82rem;
    }
}
