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

:root {
    --primary-red: #FF3B3F;
    --primary-blue: #4A90E2;
    --primary-green: #50C878;
    --primary-yellow: #FFC107;
    --primary-pink: #FF69B4;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --bg-light: #FFF9F5;
    --bg-gradient: linear-gradient(135deg, #FFF5E6 0%, #F0F9FF 50%, #F5FFF0 100%);
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-colorful: 0 4px 15px rgba(74, 144, 226, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--bg-gradient);
    background-attachment: fixed;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('bild_header.jpg') center/cover no-repeat;
    padding: 2.5rem 0;
    box-shadow: var(--shadow-colorful);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.header-icons {
    display: flex;
    gap: 0.8rem;
}

.header-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
}

.header-icon:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-icon:hover .icon {
    color: var(--primary-blue);
}

.header-icon .icon {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-icon:nth-child(1):hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.header-icon:nth-child(1):hover .icon,
.header-icon:nth-child(1):hover span {
    color: var(--white);
}

.header-icon:nth-child(2):hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.header-icon:nth-child(2):hover .icon,
.header-icon:nth-child(2):hover span {
    color: var(--white);
}

.title-wrapper {
    text-align: center;
}

.site-title {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.3rem;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    line-height: 1.4;
}

.location-subtitle {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
    letter-spacing: 0.3px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

nav a:hover,
nav a.active {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colorful);
    text-shadow: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Hero Section - Nur Startseite */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.hero-content {
    padding: 2rem;
}

.hero-title {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-images {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.grid-img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.img-1 {
    border: 3px solid var(--primary-red);
}

.img-2 {
    border: 3px solid var(--primary-blue);
}

.img-3 {
    border: 3px solid var(--primary-green);
}

.img-4 {
    border: 3px solid var(--primary-yellow);
}

/* Willkommens-Sektion - Andere Seiten */
.welcome-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: center;
}

.welcome-section h2 {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.welcome-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* Scroll to Gallery Button */
.scroll-to-gallery-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.scroll-to-gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

.scroll-to-gallery-btn .arrow-down {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

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

/* Slider */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border: 3px solid var(--white);
    color: var(--white);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    box-shadow: var(--shadow-colorful);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

/* Content-Sektion */
.content-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.content-section h3 {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-section ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.content-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tagesmutter-Vorstellung */
.about-me {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    color: var(--text-dark);
}

.about-me-image {
    flex: 0 0 250px;
    text-align: center;
}

.about-me-image img {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue)) border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-me-text {
    flex: 1;
    min-width: 300px;
}

.about-me-text h3 {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-me-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-item:nth-child(6n+1) {
    border-color: var(--primary-red);
}

.gallery-item:nth-child(6n+2) {
    border-color: var(--primary-blue);
}

.gallery-item:nth-child(6n+3) {
    border-color: var(--primary-green);
}

.gallery-item:nth-child(6n+4) {
    border-color: var(--primary-yellow);
}

.gallery-item:nth-child(6n+5) {
    border-color: var(--primary-pink);
}

.gallery-item:nth-child(6n) {
    border-color: var(--primary-red);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-colorful);
}

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

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

/* Bewertungen */
.reviews-container {
    display: grid;
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-name {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: bold;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-colorful);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.4);
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
}

/* Kontaktinfos */
.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FFF5E6, #F0F9FF);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-item:nth-child(2) {
    border-left-color: var(--primary-blue);
}

.contact-item:nth-child(3) {
    border-left-color: var(--primary-green);
}

.contact-item:nth-child(4) {
    border-left-color: var(--primary-yellow);
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-red);
}

/* Google Maps */
.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.map-container h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 15px rgba(74, 144, 226, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Button Click Effect */
.submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95) !important;
}

/* Navbar Link Active Animation */
nav a {
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

nav a:hover::before,
nav a.active::before {
    transform: translateX(0);
}

/* Card Shine Effect */
.review-card::after,
.gallery-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%,
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.review-card:hover::after,
.gallery-item:hover::after {
    transform: translateX(100%);
}

/* Image Transition */
.about-me-image img,
.gallery-item img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Form Focus Animation */
.form-group {
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Slider Fade Transition */
.slide {
    animation: slideIn 0.5s ease;
}

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

/* Verfügbare Plätze Seite */
.availability-section {
    margin: 3rem 0;
}

.availability-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.availability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue));
}

.availability-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.availability-header h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.availability-icon {
    font-size: 2.5rem;
}

.availability-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.availability-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(80, 200, 120, 0.3);
    position: relative;
    animation: pulse-circle 3s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(80, 200, 120, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(80, 200, 120, 0.5);
    }
}

.circle-content {
    background: var(--white);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.number-large {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.availability-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

.availability-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-item.occupied .stat-number {
    color: var(--primary-red);
}

.stat-item.total .stat-number {
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    font-size: 2rem;
    color: var(--text-light);
    font-weight: 300;
}

.availability-info {
    margin: 1rem 0;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.availability-message .availability-info {
    background: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
}

.info-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.availability-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.dot.occupied {
    background: linear-gradient(135deg, #FF6B6B, var(--primary-red));
    box-shadow: 0 4px 10px rgba(255, 59, 63, 0.3);
}

.dot.available {
    background: linear-gradient(135deg, var(--primary-green), #45B649);
    box-shadow: 0 4px 10px rgba(80, 200, 120, 0.3);
}

.availability-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.success-message {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.availability-message p:last-child {
    color: var(--text-light);
    font-size: 1rem;
}

.availability-info-box {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(80, 200, 120, 0.15));
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.2);
}

.availability-info-box .info-text {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

/* Section Navigation Buttons */
.section-navigation {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.section-nav-compact {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

.nav-btn span:first-child {
    font-size: 1.3rem;
}

/* Startseite Buttons - transparent mit Rahmen */
.hero-buttons .nav-btn,
.container > .section-navigation .nav-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: none;
}

.hero-buttons .nav-btn:hover,
.container > .section-navigation .nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact CTA Section */
.contact-cta-section {
    margin: 4rem 0;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    color: var(--white);
}

.contact-cta-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.btn-icon {
    font-size: 1.3rem;
}

/* Footer Links Hover */
.footer-section a {
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: ' →';
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

.footer-section a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Hamburger Menu Button - nur auf Mobile sichtbar */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header wird minimal auf Mobile */
    header {
        padding: 0.8rem 0;
        position: sticky;
    }

    .header-container {
        padding: 0 1rem;
    }

    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0;
    }

    .title-wrapper {
        flex: 1;
        text-align: left;
    }

    .header-icons {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .header-icon {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: auto;
    }

    .header-icon span:not(.icon) {
        display: none;
    }

    .header-icon .icon {
        font-size: 1.2rem;
    }

    .site-title {
        font-size: 0.85rem;
        letter-spacing: 0.1px;
        margin-bottom: 0;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .location-subtitle {
        display: none;
    }

    /* Hamburger Menu anzeigen */
    .hamburger-menu {
        display: flex;
    }

    /* Navigation verstecken und als Overlay anzeigen */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 4rem 1.5rem 2rem;
        gap: 0.5rem;
        margin-top: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: left;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    nav a:hover,
    nav a.active {
        background: var(--white);
        color: var(--primary-blue);
        transform: translateX(5px);
        text-shadow: none;
    }

    /* Overlay für Hintergrund */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .grid-img {
        height: 180px;
    }

    .welcome-section,
    .content-section,
    .contact-form,
    .contact-info {
        padding: 2rem;
    }

    .welcome-section h2 {
        font-size: 1.8rem;
    }

    .slide img {
        height: 300px;
    }

    .slider-btn {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    .about-me {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .about-me-image {
        flex: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .welcome-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3,
    .about-me-text h3 {
        font-size: 1.5rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}
