
body {
    font-family: Garamond, serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}


header {
    background-color: transparent; 
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative; 
    display: inline-block;
    margin: 0 15px;
}


nav ul li a {
    font-family:Cormorant Garamond;
    text-decoration: none;
    color: #4f94cd !important; 
    font-weight: bold;
    font-style: italic; 
    font-size: 16px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out; 
}


nav ul li.active::before {
    content: "";
    position: absolute;
    top: -5px; 
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #4f94cd;
    transform: translateX(-50%);
}


nav ul li:hover a {
    font-size: 18px;
}

nav ul li:hover::before {
    width: 100%; 
    height: 4px; 
}



.title-section {
    text-align: center;
    margin: 32px 0;
}

.title-section h1 {
    font-size: 48px;
    font-weight: bold;
    color: black;
    margin-bottom: 2px;
}

.title-section h2 {
    font-size: 24px;
    color: black;
}


.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}


.intro-box {
    background: #4f94cd;
    padding: 30px;
    width: 450px;
    height: auto;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 28%;
    right: 12%;
    z-index: 20;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    font-size: 22px
}


.aufenthalt-button {
    display: inline-block;
    background-color: white;
    color: #4f94cd;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #4f94cd;
    color: white;
}


.slider {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    overflow: hidden;
    position: relative;
    margin-top: 13px;
    margin-left: -20%;
    border-radius: 1px;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.active {
    opacity: 1;
}


.image-text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -100px;
}


.reviews {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4f94cd;
    padding: 100px 10% 120px; 
    border-radius: 10px;
    position: relative;
}


.review {
    width: 45%;
    font-size: 20px;
    color: white;
    padding: 10px;
    line-height: 1.5;
    text-align: justify;
    padding-top: 0px; 
}


.author {
    color: black; 
    font-weight: bold;
    font-size: 16px;
}


.review-image {
    width: 35%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: -60px; 
    right: 10%;
    z-index: 5;
    transform: translateY(40%);
}



.location {
    display: flex;
    align-items: center;
    padding: 40px;
    margin-top: 100px;
}

.map {
    width: 50%;
    height: 300px;
    border-radius: 10px;
}

.address {
    width: 50%;
    padding-left: 20px;
    font-size: 18px;
    color: black;
}


.address p strong {
    color: #5a3d7a;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.address p strong::before {
    content: "📞";
    margin-right: 10px;
}


footer {
    background: #4f94cd;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
}

ANFRAGE: 


body {
    font-family: Garamond, serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.header-box {
    width: 100%;
    color: black;
    text-align: center;
    padding: 10px;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    margin-top: 50px;
}


.container {
    width: 100%;
    max-width: 2400px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margim-left: 10%;
}


.kontakt-section {
    margin: 0 auto;
    width: 80%;
}


.kontakt-section h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 10px;
}


.kontakt-section p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}


.buchungskalender-btn {
    display: block;
    width: 220px;
    padding: 12px;
    background-color: black;
    color: white;
    text-align: center;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    margin: 10px auto;
    cursor: pointer;
    text-decoration: none;
}

.buchungskalender-btn:hover {
    background-color: #333;
}


.form-group {
    text-align: left;
    margin-bottom: 15px;
}


.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}


input, textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
}


input:focus, textarea:focus {
    border-color: #3498db;
    outline: none;
}


.button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4f94cd;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.button:hover {
    background-color: #2980b9;
}


.confirmation-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}


footer {
    background: #4f94cd;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 10%;
}



PREISE und Kontakt



header {
    background-color: #4f94cd; 
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 12px;
}

nav ul li a {
    text-decoration: none;
    color: white; 
    font-weight: bold;
}

.container {
    width: 9s0%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}


.preise-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    max-width: 2000px;
    font-size: 30px;
}

.preise-tabelle th, .preise-tabelle td {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 25px;
}

.preise-tabelle th {
    background-color: #b0c4de;
}

body {
    font-size: 20px; 
}


table {
    font-size: 14px; 
}

.gueltig-hinweis {
    font-size: 15px;
    margin-top: -10px;
    color: #555;
    margin-left: -84%;
}



.confirmation-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}


footer {
    background: #4f94cd;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 3%;
}


footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}


footer a:hover {
    color: #ffdd57; 
    text-decoration: underline;
}

Ferienhaus:


.ferienhaus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; 
}


.ferienhaus-section {
    position: relative;
    width: 70%;
    margin: 80px auto; 
}


.ferienhaus-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    border: 3px solid #4f94cd;
    margin: 40px auto;
}

.ferienhaus-slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.ferienhaus-slide {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: none;
    cursor: pointer;
}

.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.info-box.ferienhaus-info {
    position: absolute;
    background: #4f94cd;
    padding: 25px;
    border-radius: 5px;
    text-align: left;
    width: 30%;
    margin-top: 60px;
    color: white;
    font-size: 17px;
    line-height: 1.4;
    right: -7%; /* Überlappt rechts */
    top: 35%;
    transform: translateY(-50%);
}

.info-box.komfort-info {
    position: absolute;
    background: #4f94cd;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
    width: 40%;
    color: white;
    font-size: 17px;
    left: 15%;
    top: -5%;  
    transform: translateX(-50%);
    z-index: 1;    
}

.info-box.baeder-info {
    position: absolute;
    background: #4f94cd;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
    width: 32%;
    color: white;
    font-size: 17px;
    top: -13%; /* Überlappt oben */
    left: 80%;
    transform: translateX(-50%);
}

.ferienhaus-slider-container.ferienhaus-slider {
    height: 800px;
    border: 3px solid #4f94cd;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin-top: 13px;
    margin-left: -10%;
}

.ferienhaus-slider-container.komfort-slider {
    height: 900px;
    border: 3px solid #4f94cd;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin-top: 200px; 
    margin-left: 9%;
}

.ferienhaus-slider-container.baeder-slider {
    height: 1000px;
    border: 3px solid #4f94cd;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
    margin-top: 300px;
    margin-left: 5%;
}

freizeitangebote:



/* Titelbereich */
.title-section {
    text-align: center;
    padding: 50px 20px;
    background: url('freizeit-header.jpg') center/cover no-repeat;
    color: white;
}

.title-section h1 {
    font-size: 42px;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.title-section h2 {
    font-size: 24px;
    margin-top: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.freizeit-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}


.freizeit-intro-box {
    background: #4f94cd;
    padding: 30px;
    width: 450px;
    height: auto;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 28%;
    right: 12%;
    z-index: 20;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    font-size: 22px
}

.freizeit-slider {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    overflow: hidden;
    position: relative;
    margin-top: 13px;
    margin-left: -20%;
    border-radius: 1px;
}

.freizeit-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.freizeit-active {
    opacity: 1;
}


.image-text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -100px;
}

img {
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.freizeit-activities {
    width: 90%;
    margin: auto;
    padding: 40px 0;
    text-align: center;
}

.freizeit-activities h2 {
    font-size: 40px;
    color: #4f94cd;
    margin-bottom: 20px; 
    text-transform: uppercase;
    border-bottom: 4px solid #4f94cd;
    display: inline-block;
    padding-bottom: 8px;
    font-weight: bold;
}


.activities-container {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    padding-top: 20px;
}


.freizeit-activity {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center; 
    width: 22%; 
    min-width: 250px; 
}


.freizeit-activity:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.freizeit-activity img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}


.freizeit-activity h3 {
    font-size: 26px;
    color: #4f94cd;
    margin: 15px 0 10px;
    font-weight: bold;
}


.freizeit-activity p {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    padding: 0 10px;
}


@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) {
    body {
        font-size: 18px;
    }

    .title-section h1 {
        font-size: 40px;
    }

    .title-section h2 {
        font-size: 22px;
    }

    .intro-box {
        width: 300px;
        font-size: 18px;
        right: 3%;
        top: 15%;
    }

.slider {
    width: 90%;
    max-width: 900px;
    height: 700px;
    margin-top: 13px;
    margin-left: -15%;
   
}

    .hero {
        padding: 15px 0;
    }

.reviews {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Damit Überschriften auf einer Linie sind */
    background-color: #4f94cd;
    padding: 100px 10% 120px;
    border-radius: 10px;
    position: relative;
}

.review {
    width: 45%;
    font-size: 20px;
    color: white;
    padding: 10px;
    line-height: 1.5;
    text-align: justify;
    display: flex;
    flex-direction: column;
    min-height: 200px; /* Setze eine Mindesthöhe für gleiche Box-Größe */
}

.review h3 {
    min-height: 50px; /* Gleiche Höhe für alle Überschriften */
    margin-bottom: 10px;
}


.author {
    color: black;
    font-weight: bold;
    font-size: 16px;
}


.review-image {
    width: 35%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: -70px; 
    right: 10%;
    z-index: 5;
    transform: translateY(40%);
}



.location {
    display: flex;
    align-items: center;
    padding: 40px;
    margin-top: 120px;
}

.map {
    width: 50%;
    height: 300px;
    border-radius: 10px;
}

.address {
    width: 50%;
    padding-left: 20px;
    font-size: 18px;
    color: black;
}


.address p strong {
    color: #5a3d7a;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.address p strong::before {
    content: "📞";
    margin-right: 10px;
}

 .preise-tabelle th, .preise-tabelle td {
        font-size: 20px;
        padding: 8px;
    }

    .ferienhaus-content {
        gap: 50px;
    }

    .ferienhaus-section {
        width: 90%;
    }

    .ferienhaus-slider-container {
        height: 350px;
    }

.info-box.ferienhaus-info {
    width: 30%;
    margin-top: 60px;
    color: white;
    font-size: 16px;
    line-height: 1.4;
    right: -2%; /* Überlappt rechts */
    top: 35%;
    transform: translateY(-50%);
}

.info-box.komfort-info {
    width: 34%;
    color: white;
    font-size: 16px;
    margin-left: 5%;
    top: -8%;  
    transform: translateX(-50%);    
}

.info-box.baeder-info {
    width: 32%;
    color: white;
    font-size: 16px;
    top: -10%; /* Überlappt oben */
    left: 85%;
    transform: translateX(-55%);
}

.ferienhaus-slider-container.ferienhaus-slider {
    height: 750px;
    width: 90%;
    max-width: 800px;
    margin-top: 13px;
    margin-left: 1%;
}

.ferienhaus-slider-container.komfort-slider {
    height: 780px;
    width: 90%;
    max-width: 900px;
    margin-top: 200px; 
    margin-left: 17%;
}

.ferienhaus-slider-container.baeder-slider {
    height: 850px;
    width: 90%;
    max-width: 750px;
    margin-top: 300px;
    margin-left: 8%;
}


    .info-box {
        width: 70%;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        margin: 20px auto;
    }

    .freizeit-intro-box {
        width: 380px;
        font-size: 20px;
        top: 22%;
        right: 3%;
    }

    .freizeit-slider {
        max-width: 800px;
        height: 600px;
    }

    .activities-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .freizeit-activity {
        width: 45%;
        min-width: auto;
    }
}



