:root {
    /* Moderne Zirkus Farbpalette */
    --primary-red: #FF3366;
    --primary-purple: #8B5CF6;
    --primary-gold: #FFD700;
    --accent-pink: #FF6B9D;
    --accent-blue: #4F46E5;
    --dark-blue: #1E1B4B;
    --light-bg: #FFF5F7;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-orange: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2D3748;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.navbar-brand {
    padding: 0;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.50) 0%, 
        rgba(118, 75, 162, 0.55) 50%, 
        rgba(240, 147, 251, 0.45) 100%);
    z-index: 2;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    animation: sparkle 3s ease-in-out infinite;
}

.hero-section .container {
    z-index: 4;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.2) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}

.circus-logo-container {
    display: inline-block;
}

.circus-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6)) 
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.4));
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.circus-logo:hover {
    transform: scale(1.05) rotate(-1deg);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.25);
    border: 2px solid var(--accent-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.text-glow {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        2px 4px 8px rgba(0, 0, 0, 0.4);
}

.circus-name {
    font-size: 1.3em;
    background: linear-gradient(45deg, #FFD700, #FFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)) drop-shadow(2px 4px 8px rgba(0,0,0,0.4));
}

.text-gold {
    color: var(--accent-gold);
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.animate-logo {
    animation: logoEntrance 1.2s ease-out;
}

.animate-badge {
    animation: fadeInDown 1s ease-out 0.4s both;
}

.animate-title {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.animate-text {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.pulse-button {
    animation: pulse 2s ease-in-out infinite;
}

.hero-section .btn-danger {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-pink));
    border: none;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5);
    transition: all 0.3s ease;
}

.hero-section .btn-danger:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.7);
}

.hero-section .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-50px) rotate(-10deg);
    }
    60% {
        transform: scale(1.05) translateY(0) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 51, 102, 0.8);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 100%;
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .circus-logo {
        max-width: 350px;
    }
}

/* Price Image */
.price-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border: 3px solid var(--accent-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .price-image {
        max-width: 900px;
    }
}

.price-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25) !important;
    border-color: var(--primary-purple);
}

.card-title.text-danger,
.program-item h3 {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.display-1 {
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.2));
}

/* Gradient Backgrounds */
.bg-gradient-orange {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.bg-gradient-orange:hover {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f3a 50%, #0a2647 100%);
    box-shadow: 0 15px 40px rgba(15, 52, 96, 0.5);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Preise Cards */
.border-danger {
    border-color: var(--primary-red) !important;
    position: relative;
    overflow: hidden;
}

.border-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(139, 92, 246, 0.05));
    pointer-events: none;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-pink)) !important;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
}

.text-danger {
    color: var(--primary-red) !important;
}

.display-4.text-danger {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Backgrounds */
.bg-light {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%) !important;
}

.alert-success {
    background: linear-gradient(135deg, #D4F1E8 0%, #E8F5E9 100%);
    border: 2px solid #4CAF50;
    color: #1B5E20;
}

.alert-success .bi-check-circle-fill {
    color: #4CAF50;
}

/* Kontakt Cards */
.card.border-0.shadow-sm {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid rgba(139, 92, 246, 0.1) !important;
}

.text-primary {
    color: var(--primary-purple) !important;
}

.bi-facebook, .bi-telephone-fill, .bi-envelope-fill, .bi-globe {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Section Headings */
.display-5 {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .display-3 {
        font-size: 2.5rem !important;
    }
}

/* Artisten Page Styles */
.hero-section-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-small .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-section-small .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.50) 0%, 
        rgba(118, 75, 162, 0.55) 50%, 
        rgba(240, 147, 251, 0.45) 100%);
    z-index: 2;
}

.hero-section-small .sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    animation: sparkle 3s ease-in-out infinite;
}

.artist-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid rgba(139, 92, 246, 0.2);
}

.artist-image-placeholder i {
    font-size: 5rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.artist-image-placeholder .placeholder-text {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

.artist-image-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

/* Wenn echte Bilder eingefügt werden */
.artist-image {
    height: 400px;
    object-fit: contain;
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
