/* =============================== */
/*      GRUNDSTIL / GLOBAL         */
/* =============================== */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* verhindert horizontales Scrollen */
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Wrapper um den Hauptinhalt */
.content_wrapper {
    width: 100%;
    max-width: 1200px; /* Begrenzung für große Bildschirme */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box; /* Padding wird in die Gesamtbreite eingerechnet */
}

/* =============================== */
/*       ÜBERSCHRIFTEN / TEXT      */
/* =============================== */

.hotel_info {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.hotel_info2 {
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* =============================== */
/*            EINTRÄGE             */
/* =============================== */

.eintrag {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.35); /* leichte Transparenz */
    backdrop-filter: blur(10px); /* Glas-Effekt */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%; /* Kein Überlauf */
}

.eintrag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Jeder zweite Eintrag gespiegelt */
.eintrag:nth-child(even) {
    flex-direction: row-reverse;
}

/* =============================== */
/*             BILDER              */
/* =============================== */

.link-bild {
    width: 100%;
    max-width: 300px; /* Desktopgröße */
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.link-bild:hover {
    transform: scale(1.05);
}

/* =============================== */
/*        TEXTBEREICH LINKS        */
/* =============================== */

.link-info {
    flex: 1;
}

.link-info h3 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    color: #333;
}

.link-info p {
    margin: 0 0 12px;
    color: #555;
    line-height: 1.6;
}

.link-info a {
    color: #c5a14e; /* Goldton passend zur Website */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-info a:hover {
    text-decoration: underline;
    color: #a88a3f;
}

/* =============================== */
/*           HAUPTSEKTION          */
/* =============================== */

.main_section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 40px;
}

/* =============================== */
/*         RESPONSIVE DESIGN       */
/* =============================== */

/* ----------- Desktop ----------- */
@media (min-width: 1024px) {
    .link-bild {
        max-width: 320px;
    }

    .eintrag {
        gap: 50px;
        padding: 30px;
    }

    .hotel_info {
        font-size: 32px;
    }

    .hotel_info2 {
        font-size: 21px;
    }
}

/* ----------- Tablet & Mobile ----------- */
@media (max-width: 768px) {
    .content_wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .eintrag {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
        max-width: 100%;
    }

    .eintrag:nth-child(even) {
        flex-direction: column;
    }

    .link-bild {
        width: 90%;
        max-width: 300px;
    }

    .hotel_info {
        font-size: 24px;
    }

    .hotel_info2 {
        font-size: 16px;
        line-height: 1.4;
    }

    .link-info h3 {
        font-size: 1.4rem;
    }

    .link-info p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .link-info a {
        font-size: 1rem;
    }
}
