/* Moderne Fonts importieren */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

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

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e9df 100%);
    color: #2d2d2d;
    line-height: 1.7;
    background-attachment: fixed;
}

/* Header – MENÜLEISTE mittig über dem Hero-Bild */
header {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(47, 65, 47, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,0.45);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    background: #f8f5f0;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

nav ul {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: #e0c9a6;
    transition: width 0.35s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 95vh;
    min-height: 150px;
    background-size: cover;
    background-position: center 30%;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
}

/* Sanfter Übergang zum Content */
.hero-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, transparent 0%, #f8f5f0 60%, #f8f5f0 100%);
    z-index: 1;
    pointer-events: none;
}

/* Main Content */
main {
    position: relative;
    background: #f8f5f0;
    padding: 2rem 5% 6rem;
    box-shadow: 0 -25px 50px rgba(0,0,0,0.1);
}

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

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #3a5a3a;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2:after {
    content: '';
    width: 90px;
    height: 4px;
    background: #c9a87c;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Grid & Mini-Galerie */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    margin: 4rem 0;
}

.about-text p {
    margin-bottom: 1.4rem;
    font-size: 1.08rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.about-text li {
    margin: 1.2rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.08rem;
}

.about-text li::before {
    content: "•";
    color: #c9a87c;
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.philosophy-block {
    background: rgba(201, 168, 124, 0.07);
    border-left: 5px solid #c9a87c;
    border-radius: 0 8px 8px 0;
    padding: 2rem 2.2rem;
    margin: 3.5rem 0 2.5rem;
}

.philosophy-block h3 {
    color: #3a5a3a;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.highlight-quote {
    font-style: italic;
    font-size: 1.28rem;
    color: #4a6c4a;
    margin: 1.6rem 0;
    padding: 0 1rem;
    border-left: 4px solid #e0c9a6;
}

.mini-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

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

/* Angebot-Karten + Preis-Info (wieder vollständig hinzugefügt) */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.offer-card {
    background: white;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(201,168,124,0.15);
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.offer-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #c9a87c;
}

.offer-card h3 {
    color: #3a5a3a;
    font-size: 1.4rem;
    margin: 0.8rem 0 0.5rem;
}

.offer-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3a5a3a;
    margin: 0.8rem 0;
}

.offer-card .description {
    font-size: 1rem;
    color: #555;
    margin-top: 0.8rem;
}

.offer-card.highlight {
    background: linear-gradient(135deg, #3a5a3a 0%, #4a6c4a 100%);
    color: white;
}

.offer-card.highlight h3,
.offer-card.highlight .price,
.offer-card.highlight .description {
    color: white;
}

.price-info {
    background: rgba(201,168,124,0.08);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(201,168,124,0.3);
}

.price-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #2f412f;
    color: #e0e0e0;
    text-align: center;
    padding: 4rem 1rem 2.5rem;
    font-size: 0.98rem;
}

/* Cookie Banner */
#cookies-eu-banner {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.12);
    padding: 1.8rem 6%;
    display: none;
    flex-wrap: wrap;
    gap: 1.8rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.18);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

#cookies-eu-banner button {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#cookies-eu-accept { background: #3a5a3a; color: white; }
#cookies-eu-accept:hover { background: #2d452d; }
#cookies-eu-reject { background: #e0c9a6; color: #2d2d2d; }
#cookies-eu-reject:hover { background: #d4b48f; }

/* HERO CTA BUTTONS */
.hero-cta-buttons {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #3a5a3a;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.2rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #2d452d;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.cta-btn.phone {
    background: #2d452d;
}

.cta-btn.phone:hover {
    background: #1f3320;
}

.cta-btn.email {
    background: #c9a87c;
    color: #2d2d2d;
}

.cta-btn.email:hover {
    background: #b8945e;
}

.icon {
    font-size: 1.6rem;
}

/* RESPONSIVE DESIGN – MOBIL ANPASSUNGEN */
@media (max-width: 1024px) {
    header {
        padding: 1rem 4%;
        height: 80px;
        top: 28%;
    }
  
    .logo img {
        width: 110px;
        height: 110px;
    }
 
    .hero {
        height: 70vh;
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    header {
        top: 10%;
        padding: 0.7rem 5%;
        height: auto;
        min-height: 60px;
        background: rgba(47, 65, 47, 0.94);
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        width: 70px;
        height: 70px;
        border-width: 5px;
    }

    .logo span {
        display: none;
    }

    nav ul {
        gap: 1.2rem;
        margin-top: 0;
    }

    nav a {
        font-size: 0.80rem;
        font-weight: 600;
    }

    .hero {
        height: 75vh;
        min-height: 520px;
        background-position: center 20%;
    }

    .hero-cta-buttons {
        top: 26%;
        bottom: auto;
        flex-direction: row;
        gap: 1rem;
        padding: 0 15px;
    }

    .cta-btn {
        font-size: 1.02rem;
        padding: 0.8rem 1.6rem;
        min-width: 165px;
    }

    .cta-btn .icon {
        font-size: 1.35rem;
    }

    .about-grid,
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
  
  
  
}

@media (max-width: 480px) {
    header {
        top: 8%;
        padding: 0.6rem 4%;
    }

    .logo img {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }

    nav a {
        font-size: 0.8rem;
    }

    .hero {
        height: 72vh;
        min-height: 480px;
        background-position: center 15%;
    }

    .hero-cta-buttons {
        top: 40%;
        gap: 0.3rem;
        flex-direction: row;
    }

    .cta-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1.0rem;
        min-width: 150px;
    }
  
}





/* Footer – erweiterte Styling */
footer {
    background: #2f412f;
    color: #e0e0e0;
    text-align: center;
    padding: 4rem 5% 3rem;
    font-size: 0.98rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.copyright {
    margin: 0;
    opacity: 0.9;
    font-size: 1.05rem;
}

.footer-nav {
    display: flex;
    flex-wrap: nowrap;           /* ← verhindert Umbruch */
    gap: 2rem;                   /* oder 1.8rem – 2.5rem je nach Geschmack */
    justify-content: center;
    align-items: center;
    white-space: nowrap;         /* verhindert, dass Text innerhalb der Links umbricht */
}

.footer-nav a {
    color: #d4c9b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    position: relative;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: #e0c9a6;
}

.footer-separator {
    color: #c9a87c;
    font-weight: 300;
    user-select: none;
}

/* Mobile – trotzdem nebeneinander halten */
@media (max-width: 768px) {
    .footer-nav {
        gap: 1.4rem;             /* etwas enger auf kleinen Bildschirmen */
        font-size: 0.95rem;      /* optional: etwas kleiner */
    }
    
    .footer-nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 1.1rem;             /* noch etwas enger */
    }
    
    .footer-nav a {
        font-size: 0.92rem;
    }
}






/* ────────────────────────────────────────
   Hauptmenü + Dropdown (Klick-basiert)
───────────────────────────────────────── */

.main-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu > li {
    position: relative;
}

.dropdown-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 600;
    font-size: 1.08rem;          /* gleiche Größe wie normale Links */
    text-decoration: none;
    cursor: pointer;
    padding: 0.4rem 0.3rem;
    transition: all 0.2s;
    user-select: none;
}

.dropdown-label:hover,
.dropdown-label:focus {
    color: #e0c9a6;
}

.arrow {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

#dropdown-toggle-angebote:checked ~ .dropdown-menu {
    display: block;
}

#dropdown-toggle-angebote:checked + .dropdown-label .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(47, 65, 47, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    padding: 10px 0;
    margin-top: 10px;
    z-index: 2000;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    font-size: 1.03rem;           /* etwas kleiner als Hauptmenü → wirkt natürlicher */
    transition: background 0.18s, color 0.18s;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: rgba(201, 168, 124, 0.22);
    color: #f0d9b0;
}

/* ────────────────  Mobile-Anpassungen ──────────────── */

//* =============================================
   DROPDOWN – Klick-basiert (Desktop & Mobile)
============================================= */

.has-dropdown {
    position: relative;
}

.dropdown-checkbox {
    display: none; /* versteckt die Checkbox */
}

.dropdown-label {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.4rem 0.6rem;
    transition: color 0.2s;
}

.dropdown-label:hover,
.dropdown-label:focus {
    color: #e0c9a6;
}

.arrow {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

/* Dropdown-Inhalt – Standard (Desktop) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(47, 65, 47, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1500;
    list-style: none;
}

/* Öffnen per :checked */
#dropdown-toggle-angebote:checked ~ .dropdown-menu {
    display: block;
}

#dropdown-toggle-angebote:checked + .dropdown-label .arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    font-size: 1.03rem;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: rgba(201, 168, 124, 0.25);
}

/* =============================================
   MOBILE – immer nebeneinander + Dropdown darüber
============================================= */

@media (max-width: 768px) {

    .main-menu {
        flex-direction: row;
        justify-content: center;
        gap: 1.2rem 1.6rem;
        flex-wrap: nowrap;              /* KEIN Umbruch */
        width: 100%;
        margin: 0.6rem 0;
    }

    .main-menu > li {
        flex: 0 0 auto;
    }

    .dropdown-label,
    .main-menu > li > a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        min-width: 80px;
        text-align: center;
        justify-content: center;
    }

    /* Dropdown auf Mobile: zentriert unter Angebote, überlagert Preise/Inhalt */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 200px;
        max-width: 85vw;
        margin-top: 4px;
        padding: 6px 0;
        border-radius: 0 0 10px 10px;
        z-index: 2000;                  /* höher als Header-Inhalt */
        box-shadow: 0 12px 35px rgba(0,0,0,0.55);
    }

    .dropdown-menu a {
        font-size: 1rem;
        padding: 0.9rem 1.6rem;
        text-align: center;
    }

    /* Extra Sicherheit: Label-Bereich vergrößern für besseres Tippen */
    .dropdown-label {
        padding: 1rem 1.2rem;
        min-height: 48px;               /* besseres Touch-Target */
    }
}

/* Neuer Testimonials-Block – ähnlich philosophy-block */
.testimonials-block {
    display: none;
    background: rgba(201, 168, 124, 0.07);
    border-left: 5px solid #c9a87c;
    border-radius: 0 8px 8px 0;
    padding: 2rem 2.2rem;
    margin: 3.5rem 0 2.5rem;
}

.testimonials-block h3 {
    color: #3a5a3a;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    text-align: center;
}

.testimonial-item {
    margin-bottom: 2rem;
}

.testimonial-bubble {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(201, 168, 124, 0.3);
    border-radius: 12px;
    padding: 1.2rem 1.6rem;
    font-style: italic;
    color: #4a6c4a;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.testimonial-author {
    text-align: right;
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    font-weight: 600;
}












/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    .main-menu {
        gap: 0.9rem 1.2rem;
        justify-content: space-evenly;
    }

    .dropdown-label,
    .main-menu > li > a {
        font-size: 0.96rem;
        padding: 0.7rem 0.9rem;
        min-width: 70px;
    }

    .dropdown-menu {
        min-width: 180px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
    }
}