 /* Cormorant Garamond */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2'),
         url('fonts/CormorantGaramond-Regular.woff') format('woff'),
         url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Tauscht die Schrift, sobald sie geladen ist */
}


@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
         url('fonts/Montserrat-Regular.woff') format('woff'),
         url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap; /* Tauscht die Schrift, sobald sie geladen ist */
}


 :root {
            --primary-color: #1a2634;
            --primary-light: #2c3e50;
            --secondary-color: #e63946;
            --secondary-dark: #c0392b;
            --accent-color: #f8f9fa;
            --accent-warm: #fff5f5;
            --text-color: #2d3748;
            --text-light: #718096;
            --background-color: #ffffff;
            --gradient-primary: linear-gradient(135deg, #1a2634 0%, #2c3e50 100%);
            --gradient-secondary: linear-gradient(135deg, #e63946 0%, #c0392b 100%);
            --gradient-accent: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --shadow-red: 0 8px 24px rgba(230, 57, 70, 0.25);
        }
        html {
             scroll-padding-top: 70px; /* Anpassen an die Höhe Ihrer Navbar */
           }
           html, body {
  margin: 0;
  padding: 0;
  /* height: 100%; wurde entfernt, damit die Seite frei wachsen kann */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            background-color: var(--background-color);
            padding-top: 70px;
            line-height: 1.7;
            font-size: 16px;
        }
        h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4; 
    padding-bottom: 0.1em; /* Verhindert das Abschneiden der unteren Buchstaben-Ränder */
}
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; color: var(--primary-color); }
        h3 { font-size: 1.5rem; }
        .navbar {
            background: var(--gradient-primary);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            z-index: 2000;
        }
        .navbar-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
        }
        .navbar-brand:hover {
            color: #ffffff;
            transform: scale(1.02);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: #ffffff;
        }
        .nav-link::after {
            content: none;
        }
        @media (hover: hover) and (min-width: 992px) {
            .nav-link::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 2px;
                background: var(--secondary-color);
                transition: all 0.3s ease;
                transform: translateX(-50%);
            }
            .nav-link:hover::after {
                width: 80%;
            }
        }
        .hero {
            background-color: var(--primary-color);
            padding: 8rem 0 6rem;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 38, 52, 0.88) 0%, rgba(44, 62, 80, 0.75) 50%, rgba(26, 38, 52, 0.88) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-slider {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0;
            animation: heroSliderFade 18s infinite;
        }
        .hero-slide-1 {
            background-image: url('assets/event.webp');
            animation-delay: 0s;
        }
        .hero-slide-2 {
            background-image: url('assets/wedding.png');
            animation-delay: 6s;
        }
        .hero-slide-3 {
            background-image: url('assets/concert.png');
            animation-delay: 12s;
        }
        @keyframes heroSliderFade {
            0%   { opacity: 0; }
            5%   { opacity: 1; }
            33%  { opacity: 1; }
            38%  { opacity: 0; }
            100% { opacity: 0; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-slide {
                animation: none;
                opacity: 1;
            }
            .hero-slide-2,
            .hero-slide-3 {
                opacity: 0;
            }
        }
        .btn-custom {
            background: var(--gradient-secondary);
            border: none;
            color: #ffffff;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-red);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(230, 57, 70, 0.4);
            color: #ffffff;
            background: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
        }
        .btn-custom:active {
            transform: translateY(-1px);
        }
        .btn-custom1 {
            background: var(--gradient-secondary);
            border: none;
            color: #ffffff;
            padding: 0.5rem 1.25rem;
            font-weight: 600;
            border-radius: 15px;
            transition: all 0.3s ease;
            margin-left: 15px;
            box-shadow: var(--shadow-sm);
        }
        .btn-custom1:hover {
            background: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: #ffffff;
        }
        .feature-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            box-shadow: var(--shadow-sm);
            position: relative;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-secondary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card .card-body {
            padding: 2.5rem 2rem;
        }
        .feature-card .card-text {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .feature-icon {
            font-size: 3rem;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        .testimonial {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
            height: 100%;
        }
        .testimonial:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(5px);
        }
        .testimonial .fw-bold {
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        #testimonials {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }
        #testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
        }
        
        #contact {
    background: var(--gradient-primary);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0; /* Wichtig: Viel Platz nach oben und unten */
}
        #contact::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        #contact h2 {
            color: #ffffff;
        }

        /* Features Section */
        #features {
            background: var(--gradient-accent);
            position: relative;
            overflow: hidden;
        }
        #features1 {
            background: #ffffff;
            overflow: hidden;
        }

        /* Ensure sections don't overlap */
        section {
    position: relative;
    z-index: 1;
    padding: 4rem 0; /* Zwingt jede Sektion dazu, oben und unten Luft zu haben! */
}
        #scrollToTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 22px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
            display: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
        }
        #scrollToTopBtn.show {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            visibility: visible;
        }
        #scrollToTopBtn:hover {
            background: linear-gradient(135deg, #c0392b 0%, var(--secondary-color) 100%);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
        }
        #scrollToTopBtn:active {
            transform: translateY(-2px) scale(1.05);
        }
        #scrollToTopBtn i {
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-3px); }
        }
        footer {
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a2634 0%, #0f1419 100%) !important;
    padding: 2rem 0; /* Fügt Puffer über und unter dem Copyright-Text hinzu */
}
        footer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        main {
            flex: 1 0 auto;
        }
        #faq {
            background-color: #f9f9f9; /* Hintergrundfarbe für den gesamten Abschnitt */
        }

        #faq .btn {
            min-width: 200px; /* Mindestbreite der Buttons */
        }

        #faq .btn.active {
            background-color: #343a40; /* Dunkle Farbe für den aktiven Button */
            color: #fff; /* Textfarbe für den aktiven Button */
        }

        #faq .accordion-button {
            background-color: #fff; /* Hintergrund der Fragen */
            color: #000; /* Textfarbe der Fragen */
            border: none; /* Entfernt Ränder */
            padding: 1rem 1.25rem; /* Abstand innerhalb der Fragen */
            font-weight: bold;
            font-family: Arial, sans-serif;
            font-size: 14px;
        }

        #faq .accordion-button:focus {
            box-shadow: none; /* Entfernt den Fokus-Rahmen */
        }

        #faq .accordion-item {
            border-bottom: 1px solid #ddd; /* Untere Linie zwischen den Fragen */
        }
        h3 {

          margin-bottom: 5px;
        }

        .payment-methods i {
          font-size: 20px;
          margin-right: 20px;
          color: #ffffff;
        }
        /* Payment Methods - Simple inline display */
        .live-video-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Montserrat', sans-serif;
        }

        .live-video-badge i {
            font-size: 2rem;
            margin: 0 0.5rem;
            opacity: 0.85;
            transition: all 0.3s ease;
        }

        .live-video-badge i:hover {
            opacity: 1;
            transform: scale(1.15);
        }

        .badge-text {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-text strong {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 0.25rem;
        }
        /* Smartphones - Tablets */
    @media (max-width: 1024px) {
        .live-video-badge {
            margin-top: 1.5rem;
        }

        .live-video-badge i {
            font-size: 1.75rem;
            margin: 0 0.4rem;
        }

        .badge-text strong {
            font-size: 0.7rem;
        }

        #contact {
            padding-bottom: 2rem !important;
        }

        .btn-custom1 {
            margin-left: 0px;
        }
     }

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Pricing Section */
#pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 5rem 0;
}

#pricing h2 {
    margin-bottom: 0.5rem;
}

#pricing .lead {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-bottom: none;
    padding: 2rem 1.5rem;
}

.pricing-card .card-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-card .card-body {
    padding: 2rem 1.5rem;
}

.pricing-card .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.pricing-card .display-4::after {
    display: none;
}

.pricing-card .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.pricing-card .list-unstyled li:last-child {
    border-bottom: none;
}

.pricing-card.popular {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(230, 57, 70, 0.1);
    z-index: 10;
    position: relative;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.popular .card-header {
    background: var(--gradient-secondary) !important;
}

.pricing-card.popular .card-header h4 {
    color: #ffffff;
}

.pricing-card.popular .guests-badge {
    color: rgba(255, 255, 255, 0.9);
}

/* Guests Badge */
.guests-badge {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Button styles in pricing cards */
.pricing-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card .btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricing-card .btn-primary {
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* Addon Options */
.addon-option {
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e9ecef !important;
}

.addon-option:hover {
    border-color: var(--secondary-color) !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.addon-option strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.addon-option .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

/* Scroll to Top Button Accessibility */
#scrollToTopBtn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Hero Section Improvements */
.hero h1 {
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    color: #ffffff;
}

.hero .lead {
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn-custom {
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* Section Titles */
section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.text-center h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

/* Alert Styling */
.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    border-radius: 12px;
    color: var(--text-color);
}

.alert-light {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
}

/* Badge Styling */
.badge.bg-danger {
    background: var(--gradient-secondary) !important;
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: 20px;
}

/* Better Mobile Spacing */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero .lead {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    #pricing .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h2 {
        font-size: 2rem;
    }

    .feature-card .card-body {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 3rem 0 !important;
    }
}

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

/* Selection Color */
::selection {
    background: var(--secondary-color);
    color: #ffffff;
}

/* Link Styling */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-dark);
}

/* Dropdown Improvements */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: #ffffff;
    min-width: 160px;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--text-color);
}

.dropdown-item:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.dropdown-item img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Language Selector Styling */
.language-selector,
#languageDropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.4rem 1rem !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    align-self: flex-start;
}

#languageDropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hide dropdown arrow */
#languageDropdown::after {
    display: none;
}

#current-flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

#current-language {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}