/* ========================================
   Mittel-BAR Inspirations-Seite
   Farben: Lila (#4A235A)
   ======================================== */

:root {
    --primary: #4A235A;
    --primary-light: #6B3A7A;
    --primary-dark: #2E1438;
    
    --gold: #D4AF37;
    --burgund: #8B1A3D;
    --gruen: #2A6F2A;
    --petrol: #005F6B;
    --magenta: #D9006C;
    
    --text-dark: #000000;
    --text-gray: #393E3F;
    --bg-light: #F9F9F7;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
}

h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.accent {
    color: var(--primary);
    font-style: italic;
}

.accent-white {
    color: var(--white);
    font-style: italic;
}

section {
    padding: 80px 0;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-primary-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-primary-white:hover {
    background: var(--bg-light);
}

.btn-secondary-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* ========================================
   Sektion 1: Hero
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 120px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subline {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.social-proof {
    margin-bottom: 16px;
    font-size: 16px;
}

.rating {
    color: #FFD700;
    font-weight: 600;
}

.regional-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
}

.image-collage {
    position: relative;
    height: 500px;
}

.image-collage img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.collage-img-1 {
    width: 400px;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 3;
}

.collage-img-2 {
    width: 300px;
    height: 200px;
    top: 150px;
    right: 0;
    z-index: 2;
}

.collage-img-3 {
    width: 300px;
    height: 200px;
    bottom: 0;
    left: 100px;
    z-index: 1;
}

/* ========================================
   Sektion 2: Video
   ======================================== */
.video-section {
    background: #F5F0FA;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.video-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   Sektion 3: Testimonials
   ======================================== */
.testimonials {
    background: var(--white);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 48px auto;
    min-height: 250px;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-gray);
}

.awards {
    margin-top: 64px;
    text-align: center;
}

.awards h3 {
    font-size: 32px;
    margin-bottom: 32px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.award-item {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 16px;
}

.award-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.award-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.award-item p {
    font-size: 14px;
}

/* ========================================
   Sektion 4: Bildergalerie
   ======================================== */
.bildergalerie {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 24px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-category.hochzeit {
    background: var(--gold);
    color: var(--white);
}

.gallery-category.firma {
    background: var(--burgund);
    color: var(--white);
}

.gallery-category.weitere {
    background: var(--gruen);
    color: var(--white);
}

.gallery-category.fotobox {
    background: var(--petrol);
    color: var(--white);
}

.gallery-overlay h3 {
    font-size: 20px;
    color: var(--white);
}

.gallery-cta {
    text-align: center;
}

/* ========================================
   Sektion 5: Magazin
   ======================================== */
.magazin {
    background: var(--white);
}

.magazin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.magazin-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magazin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 35, 90, 0.15);
}

.magazin-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.magazin-content {
    padding: 24px;
}

.magazin-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.magazin-category.hochzeit {
    background: var(--gold);
}

.magazin-category.firma {
    background: var(--burgund);
}

.magazin-category.fotobox {
    background: var(--petrol);
}

.magazin-date {
    float: right;
    font-size: 14px;
    color: var(--text-gray);
}

.magazin-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.magazin-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.magazin-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.magazin-link:hover {
    color: var(--primary-dark);
}

.magazin-cta {
    text-align: center;
}

/* ========================================
   Sektion 6: Moodboards
   ======================================== */
.moodboards {
    background: var(--bg-light);
}

.moodboards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.moodboard-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.moodboard-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moodboard-card:hover img {
    transform: scale(1.05);
}

.moodboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 35, 90, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.moodboard-card:hover .moodboard-overlay {
    opacity: 1;
}

.moodboard-overlay h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 28px;
}

/* ========================================
   Sektion 7: Upcoming Events
   ======================================== */
.upcoming-events {
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.event-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 35, 90, 0.15);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 24px;
}

.event-date {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.event-card p {
    font-size: 16px;
    margin-bottom: 16px;
}

.event-fomo {
    background: var(--magenta);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.events-cta {
    text-align: center;
}

/* ========================================
   Sektion 8: Final CTA
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 32px;
}

.final-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .image-collage {
        height: 400px;
    }
    
    .gallery-grid,
    .magazin-grid,
    .moodboards-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .gallery-grid,
    .magazin-grid,
    .moodboards-grid,
    .events-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .video-ctas,
    .final-ctas {
        flex-direction: column;
    }
    
    .image-collage {
        height: 300px;
    }
    
    .collage-img-1 {
        width: 300px;
        height: 200px;
    }
    
    .collage-img-2,
    .collage-img-3 {
        width: 200px;
        height: 150px;
    }
}
