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

:root {
    --buba-pink: #FF007F;
    --bg-color: #fdfdfd;
    --text-dark: #1a1a1a;
}

html { scroll-behavior: smooth; }

body { 
    font-family: 'Helvetica Neue', Arial, sans-serif; 
    background: var(--bg-color); 
    color: var(--text-dark); 
    line-height: 1.6; 
}

/* NAVIGATION */
nav { 
    position: fixed; top: 0; width: 100%; 
    background: rgba(255, 255, 255, 0.98); 
    padding: 15px 0; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); 
    z-index: 1000; 
}
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; position: relative; }
#main-menu { list-style: none; display: flex; gap: clamp(10px, 3vw, 30px); }
#main-menu a { text-decoration: none; color: var(--text-dark); font-weight: bold; text-transform: uppercase; font-size: 0.85rem; }
#scroll-indicator { width: 8px; height: 8px; background: var(--buba-pink); border-radius: 50%; position: absolute; top: 35px; transition: 0.4s; opacity: 0; }

/* Hero-Bereich Update */
header { 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background: linear-gradient(180deg, #fff 0%, #fff0f5 100%); 
    padding: 20px; 
}

/* Logo als massiver Aufmacher */
.logo-container { 
    width: 90%;
    max-width: 500px; /* Hier wurde die Größe deutlich erhöht */
    height: auto;
    margin-bottom: 30px; /* Mehr Platz zur Tagline */
    display: block;
}

.main-logo { 
    width: 100%; 
    height: auto !important; 
    display: block;
    object-fit: contain; 
}

/* Tagline Styling ohne Überschrift darüber */
.tagline { 
    font-size: 1.5rem; /* Etwas größer, da sie jetzt prominenter steht */
    color: var(--buba-pink); 
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive Anpassung für Mobile */
@media (max-width: 768px) {
    .logo-container {
        max-width: 300px; /* Auf Handys etwas dezenter, damit es nicht den Screen sprengt */
    }
    .tagline {
        font-size: 1.2rem;
    }
}

h1 { font-size: clamp(2rem, 10vw, 3.5rem); margin-top: 10px; }
.tagline { font-size: 1.2rem; color: var(--buba-pink); margin-top: 5px; }

/* SECTIONS */
section { padding: 100px 20px; max-width: 1100px; margin: 0 auto; text-align: center; }
h2 { margin-bottom: 40px; font-size: clamp(1.8rem, 5vw, 2.5rem); }
h2::after { content: ''; display: block; width: 40px; height: 4px; background: var(--buba-pink); margin: 10px auto; }

/* CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer; transition: 0.3s; border-top: 4px solid transparent; }
.card:hover { transform: translateY(-5px); border-top: 4px solid var(--buba-pink); }
.card h3 { color: var(--buba-pink); margin-bottom: 10px; }

/* EVENT TABLE */
.event-table-container { overflow-x: auto; margin-top: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.event-table { width: 100%; border-collapse: collapse; background: white; text-align: left; min-width: 600px; }
.event-table th, .event-table td { padding: 15px; border-bottom: 1px solid #eee; }
.event-table th { background: #f8f8f8; color: var(--buba-pink); }
.event-table tr:hover { background: #fffafa; cursor: pointer; }

/* MODAL */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.modal-content { background: white; margin: 10vh auto; padding: 40px; width: 90%; max-width: 550px; border-radius: 25px; position: relative; }
.close { position: absolute; right: 25px; top: 20px; font-size: 30px; cursor: pointer; }
.modal-description { white-space: pre-wrap; margin-top: 15px; font-size: 1.05rem; text-align: left; }
.contact-section { margin-top: 40px; padding-top: 25px; border-top: 1px solid #eee; }
#contact-text { margin-bottom: 25px; }

/* ABOUT SECTION */
.about-content { 
    text-align: center; 
    max-width: 850px; 
    margin: 0 auto; 
    background: white; 
    padding: 40px; 
    border-radius: 25px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
}
.about-content p { margin-bottom: 20px; font-size: 1.1rem; color: #444; }

/* BUTTONS */
.contact-btn { background: var(--buba-pink); color: white; border: none; padding: 8px 15px; border-radius: 20px; cursor: pointer; }
.cta-button { background: var(--buba-pink); color: white; border: none; padding: 15px 25px; border-radius: 50px; cursor: pointer; font-weight: bold; width: 100%; }

footer { padding: 40px; text-align: center; color: #888; font-size: 0.8rem; }

@media (max-width: 768px) {
    #main-menu { gap: 10px; }
    #main-menu a { font-size: 0.7rem; }
    header { height: auto; padding-top: 120px; padding-bottom: 60px; }
}