/* ===========================
   Grundlayout & Typografie
   =========================== */

body {
    margin: 0;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #2F2F2F;
    background: #F7F5F0; /* Einheitliche Hintergrundfarbe */
}


h1, h2 {
    margin-top: 0;
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.section.dark {
    background: #ffffff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===========================
   Header & Navigation
   =========================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #F7F5F0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}




nav a {
    font-weight: bold;
    color: #333;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* ===========================
   Hero Bereich
   =========================== */

.hero {
    padding: 120px 20px;
    text-align: center;
    color: #2F2F2F; /* dunkles Treibholz – wirkt natürlicher als Weiß */
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.55), 
            rgba(255, 255, 255, 0.55)
        ),
        url('bilder/hero4.jpg') center/cover no-repeat;
}


.hero h1 {
    font-size: 2.4rem;
}

.hero p {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #0066cc;
    color: white;
    border-radius: 6px;
    font-weight: bold;
}

.btn:hover {
    background: #004c99;
}

/* ===========================
   Galerie
   =========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
	height: 290px;
    object-fit: cover;
}

.fotohinweis {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    margin-top: 20px;
}


/* ===========================
   Ausstattung
   =========================== */

.features-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 40px;
}

.features-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.features-list li::before {
    content: "✓";
    color: #0066cc;
    position: absolute;
    left: 0;
}

/* ===========================
   Lage
   =========================== */


.karte {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    overflow: hidden;
    border-radius: 8px; /* gleiche Rundung wie die Fotos */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px; /* gleiche Rundung wie Container */
}



/* ===========================
   Preise
   =========================== */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pricing-table th,
.pricing-table td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
}

.pricing-table th {
    background: #eee;
}

/* ===========================
   Belegungskalender
   =========================== */

.calendar-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Verhältnis anpassbar */
    overflow: hidden;
    border-radius: 8px;
}

.calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.calendar-hinweis {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}




/* ===========================
   Kontaktformular
   =========================== */

.mail-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #4a7a8c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.mail-button:hover {
    background-color: #3a6473;
}


/*.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background: #004c99;
}*/

/* ===========================
   Footer
   =========================== */

footer {
    text-align: center;
    padding: 20px;
    background: #F7F5F0;
    color: white;
}

/* ===========================
   Mobile Navigation
   =========================== */

@media (max-width: 768px) {

    nav ul {
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        display: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Schriftarten */
body {
    font-family: 'Merriweather', serif;
    background: #F7F5F0; /* Muschel-Weiß */
    color: #2F2F2F; /* Treibholz */
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

/* Buttons */
.btn,
.contact-form button {
    background: #3A6EA5; /* Dünen-Blau */
    color: white;
}

.btn:hover,
.contact-form button:hover {
    background: #2F5680;
}

/* Navigation */
nav a {
    color: #2F2F2F;
}

nav ul {
    background: white;
}

/* Sektionen */
.section.dark {
    background: #ffffff;
}

/* Ausstattung-Häkchen */
.features-list li::before {
    color: #6C8A6E; /* Küsten-Grün */
}

/* Galerie */
.gallery-grid img {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #3A6EA5;
    color: white;
}

html { scroll-behavior: smooth; }

footer a {
    color: #ffffff !important;
    text-decoration: underline; /* optional, aber gut für Lesbarkeit */
}

footer a:hover {
    color: #e0e0e0 !important; /* leichtes Grau beim Hover, optional */
}



