/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    scroll-behavior: smooth;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ff69b4;
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    transition: top 0.3s ease; /* We add smooth transition for the hide and show effect */
}

/* When the header is hidden */
header.nav-hidden {
    top: -100px; /* Hide the header when scrolling down */
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

nav img {
    height: 80px; /* Bigger logo */
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Hero Section */
#start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #ff69b4, #d3d3d3);
    color: white;
    text-align: center;
}

#start img {
    width: 330px;
    height: auto;
    margin-bottom: 20px;
}

#start h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

#start p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#start button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#start button:hover {
    background-color: #d14791;
}

/* Center "Unsere Leistungen" */
#services h2 {
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Service Section - Summary Bubbles */
.leistungen {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px; /* Added more spacing to separate elements */
}

.leistung {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.leistung img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
    transition: filter 0.3s ease;
}

/* Hover effect: Stronger pink + slight darkening of image */
.leistung:hover {
    background: rgba(255, 20, 147, 0.5); /* Stronger pink with transparency */
}

.leistung:hover img {
    filter: brightness(0.7); /* Darker image for better contrast */
}

/* "Jetzt Buchen" button styling */
.buchung-button {
    background-color: white;
    color: #ff1493;
    border: 2px solid #ff1493;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Show button on hover */
.leistung:hover .buchung-button {
    opacity: 1;
}

/* Button hover effect */
.buchung-button:hover {
    background-color: #ff69b4;
    color: white;
}

/* Fade-in Effect */
section {
    padding: 100px 20px;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hidden {
    opacity: 0;
}

.show {
    opacity: 1;
}

/* Detailed Service Sections */
.detailed-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: auto;
}

/* Alternating Background Colors */
.service-section.right {
    background-color: #ff85c2;
    flex-direction: row-reverse;
}

.service-section.left {
    background-color: #d47fb3;
    flex-direction: row;
}

/* Make text and image responsive */
.service-section img {
    width: 40%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.service-section .text {
    width: 50%;
    font-size: 1.2rem;
    line-height: 1.5;
    color: white;
    padding: 0 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .service-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .service-section img {
        width: 80%;
        max-height: 200px;
    }

    .service-section .text {
        width: 100%;
        font-size: 1rem;
    }
}

/* --- Slide Down Animation for Mehr Info --- */
.mehr-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding-top: 10px;
}

.mehr-info-content.open {
    max-height: 500px; /* Adjust based on your content height */
}

/* Optional: Button Styling */
.mehr-info-button {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: white;
    color: #d47fb3;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mehr-info-button:hover {
    background-color: #f5f5f5;
}



/* ========== Prozess/Roadmap Sektion ========== */
.prozess-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.prozess-section .section-title {
    color: #d14791;
    margin-bottom: 40px;
    font-size: 2rem;
}

.prozess-roadmap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.prozess-step {
    background-color: #f8f8f8;
    border-left: 4px solid #ff69b4;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    padding-left: 60px;
}

.prozess-step .circle {
    position: absolute;
    left: 15px;
    top: 25px;
    background-color: #ff69b4;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prozess-step h3 {
    margin: 0 0 10px;
    color: #d14791;
    font-size: 1.2rem;
}

.prozess-step p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Desktop: horizontale Roadmap */
@media (min-width: 768px) {
    .prozess-roadmap {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    .prozess-step {
        width: 23%;
        border-left: none;
        border-top: 4px solid #ff69b4;
        padding-left: 20px;
        padding-top: 60px;
        text-align: center;
    }

    .prozess-step .circle {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ========== Über Uns Sektion ========== */
.about-section {
    padding: 60px 20px;
    background-color: #fdfdfd;
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 40px;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-image {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text h3 {
    color: #d14791;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.fun-fact {
    font-style: italic;
    color: #777;
    font-size: 0.95rem;
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
    .about-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-text {
        text-align: left;
    }
}

/* ========== Kontakt Sektion ========== */
.contact-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    color: #333;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info h3 {
    color: #d14791;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info a {
    color: #ff69b4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ========== Kontaktformular auf der Startseite ========== */
.simple-contact-form {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-contact-form h3 {
    margin-bottom: 10px;
    color: #d14791;
    font-size: 1.3rem;
}

.simple-contact-form label {
    font-weight: bold;
    color: #444;
}

.simple-contact-form input,
.simple-contact-form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
    border-color: #ff69b4;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

.simple-contact-form button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.simple-contact-form button:hover {
    background-color: #d14791;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
    .simple-contact-form {
        padding: 20px 15px;
    }

    .simple-contact-form h3 {
        font-size: 1.1rem;
    }
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .full-contact-form-container {
        padding: 25px 20px;
    }

    .full-contact-form-container h2 {
        font-size: 1.6rem;
    }
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact-info,
    .simple-contact-form {
        width: 48%;
    }
}

/* Contact Form Page Styling */
.contact-form {
    background-color: #ff69b4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Taskbar for Contact Form Page */
.contact-form header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ff69b4;
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

.contact-form nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.contact-form nav img {
    height: 40px;
}

.contact-form nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Form Container */
#contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    margin-top: 100px;
}

#contact-form h2 {
    color: #ff69b4;
    margin-bottom: 10px;
}

#contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
}

#contact-form select,
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

#contact-form button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

#contact-form button:hover {
    background-color: #d14791;
}

/* Versteckte Felder */
.hidden {
    display: none;
    margin-top: 10px;
}

/* Hide Spezialreinigung Field */
.hidden {
    display: none;
}

/* Standard-Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ff69b4;
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Versteckte Navigation beim Scrollen */
.nav-hidden {
    transform: translateY(-100%);
}
