/* ==========================================
    1. GRUNDLAGEN & RESET
    ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #383838;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #6ea5c3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a84a6;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typografie */
h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 1rem;
    color: #000;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

li {
    margin-bottom: 0.5rem;
}

/* Container für zentrierten Inhalt */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ==========================================
    2. HEADER & NAVIGATION
    ========================================== */
.header-content {
    background-color: #d1e3ed; /* Hellblau aus header_footer.css */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.header-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    text-align: center;
}

.header-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #444;
}

/* ==========================================
    3. PREISE (TABELLE)
    ========================================== */
.pricing-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-table .season {
    font-weight: bold;
}

.pricing-table .min-nights {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
}

/* ==========================================
    4. VERFÜGBARKEIT & BUCHUNG
    ========================================== */
.calendar-section {
    text-align: center;
    margin-bottom: 40px;
}

.calendar-img {
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.legend {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.legend .red { color: #d71d23; font-weight: bold; }
.legend .orange { color: #f39c12; font-weight: bold; }

.booking-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    background-color: #6ea5c3;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #4a84a6;
    color: #fff;
    text-decoration: none;
}

/* ==========================================
    5. AUSSTATTUNG (Hellblauer Bereich)
    ========================================== */
.amenities-wrapper {
    background-color: rgba(215,230,239,1); /* Original hellblau */
    padding: 60px 20px;
}

.amenities-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-col h3 {
    color: #d71d23; /* Rote Überschriften */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.amenity-col ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.amenity-col li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #666;
}

/* ==========================================
    6. RESPONSIVE DESIGN
    ========================================== */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 50px;
    }

    .header-text h1 {
        font-size: 2.5rem;
    }
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-table th, .pricing-table td {
        text-align: center;
    }
    .pricing-table td:first-child {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .pricing-table th, .pricing-table td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }
}