/* Farbpalette & Variablen */
:root {
    --bg-warm: #fdfaf5;       /* Warmes Off-White */
    --accent-sand: #d4a373;    /* Sanftes Sandbeige */
    --accent-green: #a3b18a;   /* Beruhigendes Salbeigrün */
    --text-main: #344e41;      /* Dunkles Waldgrün für Text */
    --white: #ffffff;
    --soft-shadow: 0 10px 30px rgba(52, 78, 65, 0.08);
}

/* Weiche Übergänge & Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

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

/* Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(163, 177, 138, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-family: 'Lora', serif;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-sand);
}

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

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.4s;
}

nav ul li a:hover {
    color: var(--accent-sand);
}

/* Hero Bereich */
.hero {
    height: 85vh;
    background: url('dji_fly_20240829_131144_314_1724930113829_photo_optimized.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

/* Buttons */
.btn-primary {
    background: var(--accent-sand);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #bc8a5f;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--text-main);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--white);
}

/* Intro */
.intro {
    padding: 100px 20px;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Apartment Karten */
.apt-card {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.6s ease;
}

.apt-card:hover {
    transform: translateY(-5px);
}

.apt-card.alt {
    flex-direction: row-reverse;
}

.apt-image {
    flex: 1.2;
}

.apt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apt-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent-sand);
    font-weight: bold;
    margin-bottom: 10px;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li::before {
    content: "✓";
    color: var(--accent-green);
    margin-right: 10px;
    font-weight: bold;
}

/* Buchungsbereich */
.booking-area {
    padding: 100px 0;
    background: #f4f1ea;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

#secra-client-container {
    background: var(--white);
    padding: 20px;
    border-radius: 25px;
    box-shadow: var(--soft-shadow);
}

/* Lage Highlights */
.location-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 100px 20px;
    text-align: center;
}

.highlight h4 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(163, 177, 138, 0.2);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 20px;
    font-size: 0.9rem;
}

.copy {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .apt-card, .apt-card.alt {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .location-highlights {
        grid-template-columns: 1fr;
    }
}
/* Social Media Icons Styling */
nav ul li a i {
    font-size: 1.2rem;
    transition: color 0.4s;
}

nav ul li a i:hover {
    color: #E1306C; /* Der typische Instagram-Farbton */
}

footer .social-links {
    margin-top: 20px;
    font-size: 1.5rem;
}

footer .social-links a {
    color: var(--text-main);
    margin: 0 10px;
    text-decoration: none;
}
/* Google Maps Styling */
.map-container {
    width: 100%;
    border-radius: 20px; /* Macht die Ecken rund */
    overflow: hidden; 
    box-shadow: var(--soft-shadow); /* Fügt den gleichen weichen Schatten wie bei den Wohnungen hinzu */
    transition: transform 0.6s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}
/* Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 800px;
}

.cookie-banner a {
    color: var(--text-main);
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/* Gastgeber Sektion Styling */
.about-us {
    padding: 100px 0;
    background-color: var(--white); /* Oder var(--bg-warm) für einen weicheren Look */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 30px; /* Passend zu deinen Apartment-Karten */
    box-shadow: var(--soft-shadow);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.about-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background-color: var(--accent-green);
    border-radius: 5px;
}

.about-text p {
    margin-bottom: 20px;
}

.phone-note {
    background: var(--bg-warm);
    padding: 20px;
    border-radius: 20px;
    border: 1px dashed var(--accent-green);
    font-style: italic;
}

/* Anpassung für Mobile */
/* --- GEMEINSAME MOBILE ANPASSUNGEN (Handy & Tablet) --- */

/* Der Hamburger-Button (wird nur am PC versteckt) */
.menu-toggle {
    display: none; 
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

@media (max-width: 768px) {
    /* 1. HAMBURGER MENÜ LOGIK */
    .menu-toggle {
        display: block; /* Button anzeigen */
    }

    .nav-list {
        display: none; /* Menü standardmäßig zu */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        border-top: 1px solid rgba(163, 177, 138, 0.2);
    }

    .nav-list.active {
        display: flex; /* Zeigt Menü wenn angeklickt */
    }

    .nav-list li {
        margin: 15px 0;
    }

    .nav-list li a {
        margin-left: 0;
        font-size: 1.2rem;
    }

    /* 2. GASTGEBER-SEKTION (Jeanny & Holger) */
    .about-container {
        flex-direction: column; /* Bild über Text statt nebeneinander */
        text-align: center;
    }
    
    .about-text h2 {
        padding-left: 0;
    }
    
    .about-text h2::before {
        display: none; /* Grüner Strich weg, wenn zentriert */
    }

    /* 3. ALLGEMEINE OPTIK */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .apt-card, .apt-card.alt {
        flex-direction: column; /* Wohnungen untereinander */
    }
}