@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: 
        linear-gradient(315deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(255, 255, 255, 0.05) 30%, 
            transparent 60%
        ),
        linear-gradient(315deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -20vh;
    right: -20vw;
    width: 140vw;
    height: 140vh;
    background:
        conic-gradient(from -20deg at 100% 0%,
            rgba(255, 255, 255, 0.35) 0deg,
            rgba(255, 255, 255, 0.22) 22deg,
            rgba(255, 255, 255, 0.10) 42deg,
            rgba(255, 255, 255, 0.00) 70deg
        ),
        radial-gradient(ellipse at top right,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.14) 45%,
            rgba(255, 255, 255, 0.00) 100%
        );
    transform: none;
    filter: blur(15px);
    -webkit-mask-image: radial-gradient(ellipse at top right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 45%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: radial-gradient(ellipse at top right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 45%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    /* Animation deaktiviert für bessere Performance */
}

@keyframes light-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
}

body > * {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    will-change: opacity;
    animation: pulse 12s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Jewish Symbols Background */
.symbol-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-of-david {
    position: absolute;
    opacity: 0.10;
    /* Blur entfernt für bessere Performance */
    will-change: opacity;
    animation: star-pulse 15s ease-in-out infinite;
}

.star-of-david svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Overlapping stars with different blue tones - responsive sizes */
.star-1 {
    width: clamp(300px, 50vw, 650px);
    height: clamp(346px, 57.7vw, 750px);
    top: 48%;
    left: 48%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.star-2 {
    width: clamp(320px, 52vw, 680px);
    height: clamp(369px, 60vw, 785px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.10;
    animation-delay: 2.7s;
}

.star-3 {
    width: clamp(280px, 48vw, 620px);
    height: clamp(323px, 55.4vw, 715px);
    top: 52%;
    left: 52%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation-delay: 5.3s;
}

.star-4 {
    width: clamp(340px, 54vw, 700px);
    height: clamp(392px, 62.3vw, 808px);
    top: 49%;
    left: 51%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    animation-delay: 1.5s;
}

.star-5 {
    width: clamp(290px, 49vw, 640px);
    height: clamp(335px, 56.5vw, 738px);
    top: 51%;
    left: 49%;
    transform: translate(-50%, -50%);
    opacity: 0.09;
    animation-delay: 4s;
}

@keyframes star-pulse {
    0%, 100% {
        opacity: 0.06;
    }
    50% {
        opacity: 0.14;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

@keyframes rotate-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.festival-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.2em;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.festival-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: #cbd5e1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.festival-motto {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: #94a3b8;
    margin-bottom: 3rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.2em;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
    margin: 2rem 0;
    border-radius: 2px;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    margin-bottom: 1.5rem;
}

.welcome-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.2em;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #60a5fa;
    margin: 2rem 0 1rem 0;
}

.welcome-text h3 {
    color: #60a5fa;
    margin: 1.5rem 0 1rem 0;
}

.welcome-text ul, .welcome-text ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.welcome-text li {
    margin-bottom: 0.5rem;
}

.welcome-text strong {
    color: #60a5fa;
    font-weight: 600;
}

.welcome-text blockquote {
    border-left: 4px solid #60a5fa;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #94a3b8;
}

.welcome-text hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
    margin: 2rem 0;
}

.signature {
    margin-top: 3rem;
    font-style: italic;
    color: #94a3b8;
}

/* Concert Cards Grid Container */
.concerts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .concerts-grid {
        grid-template-columns: 1fr;
    }
}

.concert-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.concert-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.concert-card-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .concert-card-content {
        grid-template-columns: 1fr;
    }
}

.concert-card-info {
    display: flex;
    flex-direction: column;
}

.concert-card-meta {
    display: flex;
    align-items: flex-start;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.concert-card-meta i,
.concert-card-meta svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    min-height: 16px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.concert-card-image-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.concert-card-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.concert-card-image-caption {
    font-size: 0.65rem;
    color: #94a3b8;
    font-style: italic;
    max-width: 150px;
    text-align: right;
    line-height: 1.2;
}

.concert-card-image-placeholder {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.concert-card-menorah {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.concert-date {
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.concert-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.concert-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.concert-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #60a5fa;
    margin: 2rem 0 1rem 0;
}

.concert-description h3 {
    color: #60a5fa;
    margin: 1.5rem 0 1rem 0;
}

.concert-description ul, .concert-description ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.concert-description li {
    margin-bottom: 0.5rem;
}

.concert-description strong {
    color: #60a5fa;
    font-weight: 600;
}

.concert-description blockquote {
    border-left: 4px solid #60a5fa;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #94a3b8;
}

.concert-description hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
    margin: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e7ff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.footer {
text-align: center;
padding: 3rem 2rem;
color: #64748b;
border-top: 1px solid rgba(96, 165, 250, 0.1);
margin-top: 4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    will-change: transform;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 58, 138, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

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

.nav-link.active {
    color: #60a5fa;
    font-weight: 600;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(96, 165, 250, 0.1);
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-dropdown-item:hover {
    background: linear-gradient(90deg, 
        rgba(96, 165, 250, 0.15) 0%, 
        rgba(167, 139, 250, 0.15) 100%);
    color: #ffffff;
    padding-left: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 2px solid rgba(96, 165, 250, 0.3);
        z-index: 1100;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(30, 41, 59, 0.8);
        border: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 200px;
    }
    
    .nav-dropdown-item {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Page Styles */
.page-container {
    padding-top: 80px;
}

.page-hero {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    padding-bottom: 0.2em;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title-icon-left,
.page-title-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title-icon {
    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .page-title-container {
        gap: 1rem;
    }
    
    .page-title-icon {
        width: 30px;
        height: 30px;
    }
}

/* Concert Detail Page - New Layout */
.concert-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.concert-detail-date {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.concert-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.concert-detail-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 4rem;
    line-height: 2;
}

.concert-detail-divider {
    width: 100%;
    height: 1px;
    background: rgba(96, 165, 250, 0.3);
    margin: 4rem 0;
}

.concert-detail-time-location {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #60a5fa;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 3rem;
}

.concert-detail-artists {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: #e2e8f0;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 4rem;
}

.concert-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.concert-nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    max-width: 45%;
}

.concert-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.concert-nav-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.concert-nav-prev .concert-nav-content {
    flex-direction: row;
}

.concert-nav-next .concert-nav-content {
    flex-direction: row-reverse;
}

.concert-nav-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.concert-nav-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.concert-nav-date {
    font-size: 0.9rem;
    color: #60a5fa;
    font-weight: 600;
}

.concert-nav-title {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 250px;
}

.concert-nav-spacer {
    flex: 1;
}

@media (max-width: 768px) {
    .concert-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .concert-nav-link {
        max-width: 100%;
        width: 100%;
    }
    
    .concert-nav-title {
        max-width: 200px;
    }
}

/* Image Gallery Styles */
.concert-image-gallery {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
    display: grid;
    gap: 1.5rem;
}

/* Single image - centered, max 800px */
.concert-image-gallery-1 {
    max-width: 800px;
    grid-template-columns: 1fr;
}

/* Two images - side by side */
.concert-image-gallery-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Three or more images - 2 column grid */
/* Three or more images - 3 column grid (side-by-side on desktop) */
.concert-image-gallery-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .concert-image-gallery-2,
    .concert-image-gallery-3 {
        grid-template-columns: 1fr;
    }
}

.concert-image-item {
    display: flex;
    flex-direction: column;
}

.concert-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    object-fit: cover;
}

/* For galleries with 2+ images, make images same height */
.concert-image-gallery-2 .concert-detail-image,
.concert-image-gallery-3 .concert-detail-image {
    height: 100%;
    min-height: 300px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .concert-image-gallery-2 .concert-detail-image,
    .concert-image-gallery-3 .concert-detail-image {
        height: auto;
        min-height: unset;
        max-height: unset;
    }
}

.concert-image-caption {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: right;
}

/* Legacy support for old single image format */
.concert-image-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 4rem;
}

.concert-detail-time,
.concert-detail-location {
    color: #60a5fa;
}

.concert-detail-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #cbd5e1;
    line-height: 2;
}

.concert-detail-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #f8fafc;
    margin: 3.5rem 0 1.5rem 0;
    font-weight: 600;
}

.concert-detail-description h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #e2e8f0;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
}

.concert-detail-description h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #cbd5e1;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.concert-detail-description p {
    margin-bottom: 2rem;
}

.concert-detail-description ul,
.concert-detail-description ol {
    margin-left: 2rem;
    margin-bottom: 2.5rem;
}

.concert-detail-description li {
    margin-bottom: 1rem;
}

.concert-detail-description strong {
    color: #60a5fa;
    font-weight: 600;
}

.concert-detail-description blockquote {
    border-left: 4px solid #60a5fa;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #94a3b8;
}

.concert-detail-description hr {
    border: none;
    height: 1px;
    background: rgba(96, 165, 250, 0.3);
    margin: 2rem 0;
}

.concert-detail-footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.concert-detail-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.concert-detail-price {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #60a5fa;
    font-weight: 600;
}

.concert-detail-ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.concert-detail-ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.concert-detail-calendar-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.concert-detail-calendar-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Legacy styles for backwards compatibility */
.concert-detail {
    max-width: 800px;
    margin: 0 auto;
}

.concert-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.free-entry {
    color: #4ade80;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Sponsors Section */
.sponsors-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sponsors-column {
    display: flex;
    flex-direction: column;
}

.sponsors-main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

.sponsor-logo {
    max-width: 120px;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.sponsor-logo-large {
    max-width: 250px;
}

.sponsor-logo:hover {
    transform: scale(1.05);
    filter: brightness(1);
}

@media (max-width: 768px) {
    .sponsors-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sponsors-grid {
        gap: 1rem;
    }
    
    .sponsor-logo {
        max-width: 100px;
    }
    
    .sponsor-logo-large {
        max-width: 180px;
    }
}

/* Program Gallery */
.program-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.program-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.program-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-item span {
    color: #60a5fa;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .program-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

/* Performance optimization: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body::before,
    .hero::before,
    .star-of-david,
    .scroll-indicator {
        animation: none !important;
    }
}
