/* 
 * domain - Main Stylesheet
 * Farben:
 * - Hintergrund: #f9f9f6 (hell-mandel)
 * - Akzente: #4b3f72 (dunkel-amethyst)
 * - Kontrast: #ed6a5a (korallen-rot)
 * - Text: #2e2e2e (graphit)
 * - Zusätzlich: #aee1cd (minze-grün)
 */

/* ---- Reset & Basis-Stile ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2e2e2e;
    background-color: #f9f9f6;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

a {
    color: #4b3f72;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ed6a5a;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ed6a5a;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    scroll-margin-top: 80px; /* Add space when scrolling to section */
}

/* ---- Text Logo Styles ---- */
.text-logo {
    font-size: 28px;
    font-weight: bold;
    color: #4b3f72;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin: 0;
}

.main-text-logo {
    font-size: 36px;
    font-weight: bold;
    color: #4b3f72;
    letter-spacing: 1px;
    text-transform: lowercase;
    padding: 10px 0;
    margin-bottom: 20px;
}

.footer-logo .text-logo {
    color: #f9f9f6;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: #4b3f72;
    color: #f9f9f6;
}

.primary-btn:hover {
    background-color: #3a304f;
    color: #f9f9f6;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #4b3f72;
    color: #4b3f72;
}

.secondary-btn:hover {
    background-color: #4b3f72;
    color: #f9f9f6;
}

/* ---- Header & Navigation ---- */
.site-header {
    background-color: #f9f9f6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.main-nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.main-nav ul li a {
    font-weight: 500;
    padding: 10px 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #4b3f72;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    display: none;
    background-color: #f9f9f6;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ---- Banner Sektion ---- */
#welcome-banner {
    background-color: #f9f9f6;
    padding: 60px 0;
}

#welcome-banner .container {
    display: flex;
    align-items: center;
}

.banner-content {
    flex: 1;
    padding-right: 30px;
}

.logo-container {
    margin-bottom: 30px;
}

.banner-image {
    flex: 1;
}

.banner-image img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.banner-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ---- Über uns Sektion ---- */
#about-us {
    background-color: #f5f5f2;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 0.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ---- Dienstleistungen Sektion ---- */
.services-image-container {
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.services-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-image:hover {
    transform: scale(1.05);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #4b3f72;
    z-index: -1;
}

.service-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #4b3f72;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4b3f72;
    margin: 20px 0;
}

/* ---- Vorteile Sektion ---- */
#benefits {
    background-color: #f5f5f2;
    position: relative;
    overflow: hidden;
}

.benefits-image-container {
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.benefits-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefits-image:hover {
    transform: scale(1.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
}

/* ---- Kundenbewertungen Sektion ---- */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.star {
    color: #ed6a5a;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: #aee1cd;
    font-size: 2rem;
    font-weight: bold;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
}

.author-company {
    font-size: 0.9rem;
    color: #777;
}

/* ---- Bestellformular Sektion ---- */
#bestellung {
    background-color: #f6f6f2;
    padding: 100px 0;
    position: relative;
}

#bestellung::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(174, 225, 205, 0.1) 0%, rgba(75, 63, 114, 0.05) 100%);
    z-index: 1;
}

#bestellung .container {
    position: relative;
    z-index: 2;
}

.bestellung-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bestellung-info {
    padding: 40px;
    background-color: #4b3f72;
    color: #f9f9f6;
    position: relative;
    background-image: linear-gradient(160deg, #4b3f72 0%, #3a304f 100%);
}

.bestellung-info h3 {
    color: #f9f9f6;
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.bestellung-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.bestellung-contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.bestellung-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bestellung-contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bestellung-contact-item svg {
    margin-right: 15px;
    min-width: 20px;
}

.bestellung-contact-item path {
    fill: #aee1cd;
}

.bestellung-contact-item span {
    font-size: 1.05rem;
}

.bestellung-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.bestellung-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.bestellung-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bestellung-form {
    padding: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4b3f72;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4b3f72;
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 63, 114, 0.1);
}

.form-checkboxes {
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #4b3f72;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked::before {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4b3f72;
    font-size: 12px;
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-submit {
    margin-top: 10px;
}

.form-submit button {
    width: 100%;
    font-size: 1.05rem;
    padding: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 63, 114, 0.3);
}

textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

textarea:focus {
    border-color: #4b3f72;
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 63, 114, 0.1);
}

/* ---- FAQ Sektion ---- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #4b3f72;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-question {
    background-color: #f5f5f2;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ---- Footer ---- */
.site-footer {
    background-color: #4b3f72;
    color: #f9f9f6;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.footer-company p {
    margin-bottom: 10px;
}

.company-info p {
    margin-bottom: 5px;
}

.contact-info a {
    color: #aee1cd;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    color: #ed6a5a;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-nav h3,
.footer-legal h3 {
    color: #aee1cd;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-legal ul li a {
    color: #f9f9f6;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: #aee1cd;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

/* ---- Cookie-Banner ---- */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    max-width: 400px;
    width: 90%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* ---- Rechtliche Seiten ---- */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    text-align: left;
    margin-top: 40px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h2::after {
    left: 0;
    transform: none;
}

.legal-content h3 {
    margin-top: 30px;
}

.legal-content ul, 
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* ---- Danke Seite ---- */
/* ---- Thank You Page ---- */
.thank-you-page {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #f9f9f6;
}

.thank-you-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-header {
    margin-bottom: 30px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: #aee1cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
}

.thank-you-content h2 {
    color: #4b3f72;
    margin-bottom: 20px;
}

.thank-you-message {
    margin-bottom: 40px;
}

.thank-you-message .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #4b3f72;
}

.thank-you-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.thank-you-info-card {
    background-color: #f9f9f6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4b3f72;
}

.info-icon {
    margin-bottom: 15px;
}

.thank-you-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ---- Responsive Design ---- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    #welcome-banner .container {
        flex-direction: column;
    }
    
    .banner-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-company {
        margin-bottom: 30px;
    }
    
    .company-info p {
        max-width: none;
    }

    .bestellung-container {
        grid-template-columns: 1fr;
    }
    
    .bestellung-info {
        border-radius: 10px 10px 0 0;
    }
    
    .bestellung-image {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        margin-bottom: 20px;
    }
    
    .order-form {
        padding: 30px 20px;
    }

    .thank-you-page {
        padding: 60px 0;
    }
    
    .thank-you-content {
        padding: 30px;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    #bestellung {
        padding: 70px 0;
    }
    
    .bestellung-info,
    .bestellung-form {
        padding: 30px;
    }
    
    .bestellung-info h3 {
        font-size: 1.5rem;
    }
    
    .bestellung-contact-info {
        padding: 15px;
    }
    
    .bestellung-contact-item {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .form-submit button {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card, 
    .benefit-item, 
    .testimonial-card {
        padding: 20px 15px;
    }
    
    #bestellung {
        padding: 50px 0;
    }
    
    .bestellung-info,
    .bestellung-form {
        padding: 25px 20px;
    }
    
    .bestellung-contact-item span {
        font-size: 0.95rem;
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
    }
} 