/* ==========================================
   RESET & BASIC STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset für sticky navbar */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================
   LAYOUT
   ========================================== */

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

section {
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF69B4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FF69B4;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF69B4;
    transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255,105,180,0.1) 0%, rgba(77,208,225,0.1) 100%);
    background-image: 
        linear-gradient(135deg, rgba(255,105,180,0.1) 0%, rgba(77,208,225,0.1) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23FF69B4" opacity="0.3"/><circle cx="30" cy="20" r="2" fill="%23D4E157" opacity="0.3"/><circle cx="50" cy="15" r="2" fill="%234DD0E1" opacity="0.3"/><circle cx="70" cy="25" r="2" fill="%23FF69B4" opacity="0.3"/><circle cx="90" cy="10" r="2" fill="%23D4E157" opacity="0.3"/></svg>');
    background-size: cover, 300px;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-button {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 2rem 3rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: left 0.5s ease;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-button.pink {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
}

.hero-button.yellow {
    background: linear-gradient(135deg, #D4E157 0%, #C0CA33 100%);
    color: #2c3e50;
}

.hero-button.turquoise {
    background: linear-gradient(135deg, #4DD0E1 0%, #26C6DA 100%);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #FF69B4;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.section-about {
    background: linear-gradient(135deg, #F4C2C2 0%, #FADADD 100%);
}

.section-about h2 {
    color: #2c3e50;
    font-size: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

/* ==========================================
   CONTENT SECTIONS (Kleider, Events, Kurse)
   ========================================== */

.section-kleider {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
}

.section-kleider h2 {
    color: #FF69B4;
    font-size: 3rem;
}

.section-events {
    background: linear-gradient(135deg, #FFFFE0 0%, #FFFACD 100%);
}

.section-events h2 {
    color: #C0CA33;
    font-size: 3rem;
}

.section-kurse {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
}

.section-kurse h2 {
    color: #26C6DA;
    font-size: 3rem;
}

.section-status {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0,0,0,0.1);
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.section-contact {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.section-contact h2 {
    color: #2c3e50;
    font-size: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h3,
.contact-directions h3 {
    color: #FF69B4;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #FF69B4;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #FF1493;
}

.availability {
    margin-top: 1rem;
    font-weight: 600;
    color: #C0CA33;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF69B4;
    transform: translateY(-3px);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    /* Navigation Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Section */
    .hero-button {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    /* Typography */
    h2 {
        font-size: 2rem;
    }
    
    .section-about h2,
    .section-kleider h2,
    .section-events h2,
    .section-kurse h2,
    .section-contact h2 {
        font-size: 2rem;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Sections Padding */
    section {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .hero-button {
        font-size: 1.3rem;
        padding: 1.2rem 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
