:root {
    --primary: #2f73ff;
    --primary-dark: #195de0;

    --text: #13223a;
    --muted: #728198;

    --surface: #ffffff;
    --background: #f7f9fc;

    --border: #e7edf5;

    --green: #11aa79;
    --orange: #ff8a48;
    --red: #ef554d;

    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
        scroll-behavior: smooth;

}

body {

    min-height:100vh;

    display:flex;
    flex-direction:column;

    background:var(--background);

    color:var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

}

a {
    color: inherit;
    text-decoration: none;
}


/* HEADER */

.guest-header {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 20;

    max-width: 1240px;

    margin: auto;

    padding: 28px 28px;

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

.guest-brand {
    color: white;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: -1px;
}

.guest-brand span {
    color: #77adff;
}

.guest-menu-button {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.3);

    background: rgba(255,255,255,.15);
    color: white;

    border-radius: 12px;

    backdrop-filter: blur(14px);
}


/* HERO */

.guest-hero {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            140deg,
            #274d78,
            #4d7793 45%,
            #75a081
        );
}

.guest-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(255,255,255,.22),
            transparent 35%
        );
}

.guest-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 25, 50, .72),
            rgba(10, 25, 50, .15)
        );
}

.guest-hero-content {
    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    padding-bottom: 75px;

    color: white;
}

.guest-location {
    display: block;

    margin-bottom: 15px;

    color: #cfe1ff;

    font-size: 13px;
    font-weight: 600;
}

.guest-hero h1 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(38px, 6vw, 65px);

    line-height: 1.05;
    letter-spacing: -2.5px;
}

.guest-hero p {
    max-width: 540px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.82);

    font-size: 17px;
    line-height: 1.6;
}

.room-badge {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 28px;

    padding: 9px 14px;

    background: rgba(255,255,255,.15);

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 50px;

    backdrop-filter: blur(10px);

    font-size: 12px;
}


/* CONTAINER */

.guest-container {
    width: min(1180px, calc(100% - 48px));

    margin: -40px auto 0;

    position: relative;

    z-index: 10;
}


/* QUICK CARDS */

.quick-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.quick-card {
    min-height: 105px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow:
        0 15px 45px rgba(29, 45, 72, .08);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.quick-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(29, 45, 72, .12);
}

.quick-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 20px;
    font-weight: 700;
}

.quick-icon.orange {
    background: #fff0e8;
    color: var(--orange);
}

.quick-icon.blue {
    background: #eaf2ff;
    color: var(--primary);
}

.quick-icon.red {
    background: #ffeded;
    color: var(--red);
}

.quick-icon.green {
    background: #e9f8f2;
    color: var(--green);
}

.quick-card div:not(.quick-icon) {
    min-width: 0;

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.quick-card strong {
    font-size: 14px;
}

.quick-card div span {
    color: var(--muted);

    font-size: 11px;
}

.quick-card .arrow {
    color: var(--primary);

    font-size: 18px;
}


/* SECTIONS */

.section {
    padding-top: 70px;
    
}


.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.section-header h2 {
    margin: 5px 0 0;

    font-size: 27px;
    letter-spacing: -1px;
}

.section-header > a {
    color: var(--primary);

    font-size: 12px;
    font-weight: 600;
}

.section-eyebrow {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;
}


/* INFO */

.info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.info-card {
    padding: 22px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.info-card-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ff;

    color: var(--primary);

    border-radius: 14px;
}

.info-card > div:last-child {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.info-card span {
    color: var(--muted);

    font-size: 11px;
}

.info-card strong {
    font-size: 14px;
}

/* DISCOVER */

.discover-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.discover-grid a {
    min-height: 120px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 12px;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    font-size: 14px;
    font-weight: 600;
}

.discover-grid a span {
    color: var(--primary);

    font-size: 24px;
}


/* NEWSLETTER */

.newsletter-card {
    margin-top: 70px;
    margin-bottom: 70px;

    padding: 45px;

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

    gap: 50px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #286af1,
            #4f8eff
        );

    border-radius: 28px;
}

.newsletter-card h2 {
    margin: 8px 0;

    font-size: 27px;
}

.newsletter-card .section-eyebrow {
    color: #cfe0ff;
}

.newsletter-card p {
    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 13px;
}

.newsletter-form {
    min-width: 380px;

    display: flex;

    padding: 5px;

    background: white;

    border-radius: 13px;
}

.newsletter-form input {
    min-width: 0;

    flex: 1;

    border: 0;
    outline: none;

    padding: 0 15px;
}

.newsletter-form button {
    border: 0;

    padding: 13px 18px;

    color: white;
    background: var(--primary-dark);

    border-radius: 9px;

    cursor: pointer;
}


/* FOOTER */

footer {
    min-height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border-top: 1px solid var(--border);

    background: white;
}

footer strong {
    font-size: 18px;
}

footer span {
    color: var(--muted);

    font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 980px) {

    .quick-grid,
    .discover-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        align-items: stretch;
        flex-direction: column;
    }

    .newsletter-form {
        min-width: 0;
    }

}

@media (max-width: 680px) {

    .guest-header {
        padding: 20px;
    }

    .guest-container,
    .guest-hero-content {
        width: calc(100% - 30px);
    }

    .guest-hero {
        min-height: 520px;
    }

    .guest-hero-content {
        padding-bottom: 75px;
    }

    .guest-hero h1 {
        font-size: 42px;
    }

    .quick-grid,
    .discover-grid {
        grid-template-columns: 1fr;
    }

    .guest-meal {
        grid-template-columns: 1fr;
    }

    .guest-meal-image {
        min-height: 220px;
    }

    .guest-meal-content {
        padding: 28px;
    }

    .newsletter-card {
        padding: 28px;
    }

    .newsletter-form {
        flex-direction: column;

        gap: 5px;
    }

    .newsletter-form input {
        min-height: 48px;
    }

}

/* ============================================================
   INNER HEADER
============================================================ */

.guest-header-inner {
    position: absolute;
}


/* ============================================================
   INNER HERO
============================================================ */

.inner-hero {
    min-height: 320px;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            135deg,
            #264d78,
            #4f7ca0
        );

    color: white;
}

.inner-hero-content {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    padding-bottom: 55px;
}

.inner-hero h1 {
    margin: 8px 0 0;

    font-size: clamp(34px, 5vw, 52px);

    letter-spacing: -1.8px;
}

.inner-hero p {
    max-width: 580px;

    margin: 15px 0 0;

    color: rgba(255, 255, 255, .78);

    line-height: 1.6;
}

.inner-hero .section-eyebrow {
    color: #cfe1ff;
}

.back-link {
    display: inline-block;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, .8);

    font-size: 12px;
    font-weight: 500;
}


/* ============================================================
   INNER CONTAINER
============================================================ */

.inner-container {
    margin-top: 0;

    padding-top: 55px;
    padding-bottom: 70px;
}


/* ============================================================
   INFORMATION GRID
============================================================ */

.information-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.information-card {
    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 24px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.information-card:hover {
    transform: translateY(-2px);

    border-color: #cfddf4;

    box-shadow:
        0 14px 40px rgba(25, 48, 84, .08);
}

.information-card-icon {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #eaf2ff;

    color: var(--primary);

    font-size: 22px;
    font-weight: 700;
}

.information-card-content {
    min-width: 0;

    flex: 1;
}

.information-card h2 {
    margin: 0;

    font-size: 16px;
}

.information-card p {
    margin: 7px 0 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.5;
}

.information-card-arrow {
    color: var(--primary);

    font-size: 20px;
}


/* ============================================================
   CONTENT DETAIL
============================================================ */

.content-detail {
    max-width: 850px;

    margin: 0 auto;

    padding: 38px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 24px;
}

.content-detail-header {
    display: flex;
    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--border);
}

.content-detail-icon {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;

    color: var(--primary);

    border-radius: 17px;

    font-size: 24px;
}

.content-detail-header h2 {
    margin: 6px 0 0;

    font-size: 27px;
    letter-spacing: -1px;
}

.content-detail-body {
    padding: 30px 0;

    color: #4c5d76;

    font-size: 15px;
    line-height: 1.8;
}

.content-detail-footer {
    padding-top: 25px;

    border-top: 1px solid var(--border);
}


/* ============================================================
   BUTTONS
============================================================ */

.button-primary,
.button-secondary {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 600;
}

.button-primary {
    color: white;
    background: var(--primary);
}

.button-secondary {
    color: var(--primary);
    background: #eaf2ff;
}


/* ============================================================
   EMPTY STATE
============================================================ */

.empty-state {
    max-width: 600px;

    margin: 40px auto;

    padding: 45px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: 24px;
}

.empty-state-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--primary);
    background: #eaf2ff;

    font-size: 24px;
    font-weight: 700;
}

.empty-state h2 {
    margin: 0;

    font-size: 22px;
}

.empty-state p {
    margin: 12px auto 24px;

    max-width: 420px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}


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

@media (max-width: 720px) {

    .information-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero-content {
        width: calc(100% - 30px);
    }

    .content-detail {
        padding: 24px;
    }

    .content-detail-header {
        align-items: flex-start;
    }

}



/* ============================================================
   SPEISEPLAN – WOCHENNAVIGATION
============================================================ */

.meal-week-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;

    margin-bottom: 30px;

    padding: 18px;

    background: white;

    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.meal-week-button {
    color: var(--primary);

    font-size: 12px;
    font-weight: 600;
}

.meal-week-button:last-child {
    text-align: right;
}

.meal-week-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    text-align: center;
}

.meal-week-current span {
    color: var(--muted);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.meal-week-current strong {
    font-size: 15px;
}


/* ============================================================
   SPEISEPLAN – TAGE
============================================================ */

.meal-week {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.meal-day {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);
    border-radius: 22px;
}

.meal-day.is-today {
    border-color: rgba(47, 115, 255, .35);

    box-shadow:
        0 10px 35px rgba(47, 115, 255, .07);
}

.meal-day-header {
    min-height: 90px;

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

    gap: 20px;

    padding: 22px 26px;

    border-bottom: 1px solid var(--border);
}

.meal-day-weekday {
    color: var(--primary);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .6px;
}

.meal-day-header h2 {
    margin: 5px 0 0;

    font-size: 22px;
    letter-spacing: -.7px;
}

.today-badge {
    padding: 6px 10px;

    background: #eaf2ff;
    color: var(--primary);

    border-radius: 30px;

    font-size: 10px;
    font-weight: 700;
}


/* ============================================================
   SPEISEPLAN – MAHLZEITGRUPPEN
============================================================ */

.meal-groups {
    padding: 5px 26px 25px;
}

.meal-group {
    padding-top: 22px;
}

.meal-group + .meal-group {
    margin-top: 22px;

    border-top: 1px solid var(--border);
}

.meal-group-title {
    margin: 0 0 14px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .6px;
}

.meal-group-items {
    display: grid;
    gap: 12px;
}


/* ============================================================
   SPEISEPLAN – GERICHT
============================================================ */

.meal-list-card {

    display:grid;

    grid-template-columns:220px 1fr;

    overflow:hidden;

    background:white;

    border:1px solid var(--border);

    border-radius:22px;

    box-shadow:
        0 8px 25px rgba(25,48,84,.05);

}

.meal-list-image {

    min-height:220px;

    background-position:center;

    background-size:cover;

}

.meal-list-content {

    padding:28px 32px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.meal-list-content h4 {

    margin:0;

    font-size:22px;

    letter-spacing:-.5px;

}
.meal-list-content > p {

    margin:12px 0 0;

    color:var(--muted);

    font-size:14px;

    line-height:1.7;

}


/* ============================================================
   SPEISEPLAN – ALLERGENE
============================================================ */

.meal-allergens {

    margin-top:22px;

    padding-top:18px;

    border-top:1px solid var(--border);

    color:var(--muted);

    font-size:12px;

}

.meal-allergens summary {
    cursor: pointer;

    color: #52647d;

    font-weight: 600;
}

.meal-allergens p {
    margin: 10px 0 0;

    line-height: 1.6;
}


/* ============================================================
   SPEISEPLAN – LEER
============================================================ */

.meal-day-empty {
    padding: 25px 26px;

    color: var(--muted);

    font-size: 12px;
}


/* ============================================================
   SPEISEPLAN – RESPONSIVE
============================================================ */

@media (max-width: 720px) {

    .meal-week-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .meal-week-current {
        grid-column: 1 / -1;
        grid-row: 1;

        margin-bottom: 8px;
    }

    .meal-week-button {
        grid-row: 2;
    }

    .meal-day-header {
        padding: 20px;
    }

    .meal-groups {
        padding: 4px 20px 20px;
    }

.meal-list-card {

        grid-template-columns:1fr;

    }


    .meal-list-image {

        min-height:220px;

    }


    .meal-list-content {

        padding:24px;

    }

}

/* ============================================================
   MELDUNG – LAYOUT
============================================================ */

.report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 25px;
    align-items: start;
}

.report-form-card,
.report-info-card,
.report-success {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
}

.report-form-card {
    padding: 32px;
}

.report-info-card {
    position: sticky;
    top: 25px;

    padding: 28px;
}

.report-info-card h2 {
    margin: 8px 0 12px;

    font-size: 21px;
    letter-spacing: -.6px;
}

.report-info-card > p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}

.report-location {
    display: flex;
    flex-direction: column;
    gap: 5px;

    margin: 24px 0;

    padding: 17px;

    background: var(--background);

    border-radius: 14px;
}

.report-location span {
    color: var(--muted);

    font-size: 10px;
}

.report-location strong {
    font-size: 13px;
}

.report-info-note {
    padding-top: 20px;

    border-top: 1px solid var(--border);
}


/* ============================================================
   FORMULAR
============================================================ */

.report-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: var(--text);

    font-size: 12px;
    font-weight: 600;
}

.form-field label span {
    margin-left: 5px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);
    border-radius: 11px;

    outline: none;

    background: white;
    color: var(--text);

    font: inherit;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-field textarea {
    resize: vertical;

    min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(47, 115, 255, .08);
}

.form-field small {
    color: var(--muted);

    font-size: 10px;
}

.form-section {
    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.form-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.form-section-header h2 {
    margin: 0;

    font-size: 17px;
}

.form-section-header span {
    padding: 5px 8px;

    color: var(--muted);
    background: var(--background);

    border-radius: 20px;

    font-size: 9px;
    font-weight: 600;
}

.form-section > p {
    margin: 8px 0 20px;

    color: var(--muted);

    font-size: 11px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-bottom: 20px;
}

.report-submit {
    width: 100%;

    border: 0;

    cursor: pointer;
}


/* ============================================================
   FEHLER
============================================================ */

.form-errors {
    margin-bottom: 25px;

    padding: 17px 20px;

    color: #b33b35;
    background: #fff0ef;

    border: 1px solid #ffd9d6;
    border-radius: 13px;

    font-size: 12px;
}

.form-errors strong {
    display: block;

    margin-bottom: 8px;
}

.form-errors ul {
    margin: 0;
    padding-left: 18px;

    line-height: 1.6;
}


/* ============================================================
   ERFOLG
============================================================ */

.report-success {
    max-width: 620px;

    margin: 20px auto;

    padding: 45px;

    text-align: center;
}

.report-success-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    color: var(--green);
    background: #e8f8f2;

    border-radius: 50%;

    font-size: 27px;
    font-weight: 700;
}

.report-success h2 {
    margin: 8px 0;

    font-size: 28px;
}

.report-success > p {
    margin: 0 auto;

    max-width: 430px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.report-reference {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin: 28px 0;

    padding: 20px;

    background: var(--background);

    border-radius: 14px;
}

.report-reference span {
    color: var(--muted);

    font-size: 10px;
}

.report-reference strong {
    font-size: 21px;
    letter-spacing: 1px;
}

.report-success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}


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

@media (max-width: 850px) {

    .report-layout {
        grid-template-columns: 1fr;
    }

    .report-info-card {
        position: static;
    }

}

@media (max-width: 620px) {

    .report-form-card,
    .report-success {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .report-success-actions {
        flex-direction: column;
    }

}


.report-room-context {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 18px;

    background: #eef5ff;

    border: 1px solid #d8e7ff;
    border-radius: 14px;
}

.report-room-context-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 11px;

    color: var(--primary);

    font-size: 18px;
}

.report-room-context > div:last-child {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.report-room-context span {
    color: var(--muted);

    font-size: 10px;
}

.report-room-context strong {
    font-size: 14px;
}

.report-room-context small {
    color: var(--muted);

    font-size: 9px;
}

 /* ============================================================
   FEEDBACK
============================================================ */

.feedback-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 25px;
    align-items: start;
}

.feedback-form-card {
    padding: 32px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 24px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* ============================================================
   RATING
============================================================ */

.feedback-rating-section {
    padding: 24px;

    background: var(--background);

    border: 1px solid var(--border);
    border-radius: 16px;

    text-align: center;
}

.feedback-label {
    display: block;

    margin-bottom: 15px;

    color: var(--text);

    font-size: 13px;
    font-weight: 600;
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: center;

    gap: 6px;
}

.star-rating input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    cursor: pointer;

    color: #d7dee9;

    font-size: 37px;
    line-height: 1;

    transition:
        color .15s ease,
        transform .15s ease;
}

.star-rating label:hover {
    transform: scale(1.08);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f5b942;
}

.rating-scale {
    display: flex;
    justify-content: space-between;

    max-width: 270px;

    margin: 12px auto 0;

    color: var(--muted);

    font-size: 9px;
}


/* ============================================================
   SUBMIT
============================================================ */

.feedback-submit {
    width: 100%;

    border: 0;

    cursor: pointer;
}


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

@media (max-width: 850px) {

    .feedback-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 620px) {

    .feedback-form-card {
        padding: 24px;
    }

    .star-rating label {
        font-size: 32px;
    }

}

.room-context-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.room-context-wrapper .room-badge {
    margin-top: 0;
}

.room-context-clear {
    color: rgba(255, 255, 255, .75);

    font-size: 10px;
    font-weight: 500;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.room-context-clear:hover {
    color: white;
}

.room-clear-link {
    display: inline-block;

    margin-top: 8px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 600;
}

.room-clear-link:hover {
    text-decoration: underline;
}

.newsletter-page-card {
    max-width: 650px;

    margin: 0 auto;

    padding: 32px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 24px;
}

.newsletter-page-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.newsletter-page-submit {
    width: 100%;

    border: 0;

    cursor: pointer;
}

.newsletter-privacy-note {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.6;
}

.newsletter-sandbox-link {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin: 25px 0;

    padding: 18px;

    background: var(--background);

    border-radius: 13px;
}

.newsletter-sandbox-link span {
    color: var(--muted);

    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;
}

.newsletter-sandbox-link a {
    color: var(--primary);

    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   STANDORTSUCHE
============================================================ */

.search-header {
    width: min(1180px, calc(100% - 48px));
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 28px 0;
}

.location-search-page {
    flex:1;
}


.location-search-hero {
    display:none;
}

.location-search-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.location-search-content h1 {
    margin: 10px 0 15px;
    font-size: clamp(38px, 6vw, 60px);
    letter-spacing: -2px;
}

.location-search-content > p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   SUCHFORMULAR
============================================================ */

.location-search-form {

    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
    margin-top:30px;
    padding:7px;
    background:white;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:
        0 15px 45px rgba(25,48,84,.08);

}

.location-search-form input {
    min-width: 0;
    padding: 13px 15px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
}

.location-search-form button {
    border: 0;
    cursor: pointer;
    padding-left: 24px;
    padding-right: 24px;
}


/* ============================================================
   SUCHERGEBNISSE
============================================================ */

.location-search-results {
    width: min(900px, calc(100% - 48px));

    margin: 0 auto;

    padding: 0 0 80px;
}

.location-search-results-header {
    margin-bottom: 20px;
}

.location-search-results-header h2 {
    margin: 7px 0 0;

    font-size: 24px;
}

.location-result-grid {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.location-result-card {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 22px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 17px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.location-result-card:hover {
    transform: translateY(-2px);

    border-color: #cfddf4;

    box-shadow:
        0 14px 40px rgba(25, 48, 84, .08);
}

.location-result-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;

    color: var(--primary);

    border-radius: 14px;

    font-size: 20px;
}

.location-result-content {
    min-width: 0;
    flex: 1;
}

.location-result-content h3 {
    margin: 0;

    font-size: 16px;
}

.location-result-content p {
    margin: 5px 0 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.5;
}

.location-result-address {
    font-weight: 600;
}

.location-result-arrow {
    color: var(--primary);

    font-size: 20px;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 620px) {

    .search-header {
        width: calc(100% - 30px);
    }

    .location-search-hero {
        min-height: 360px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .location-search-form {
        grid-template-columns: 1fr;
    }

    .location-search-form button {
        width: 100%;
    }

    .location-search-results {
        width: calc(100% - 30px);
    }

}

.guest-footer {
margin-top:auto;
    padding: 28px 24px;

    border-top: 1px solid var(--border);

    background: #fff;
}

.guest-footer-main {
    width: min(1180px, 100%);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin: 0 auto;
}

.guest-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guest-footer-brand strong {
    font-size: 16px;
}

.guest-footer-brand span {
    color: var(--muted);
    font-size: 11px;
}

.guest-footer-developer {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);
    font-size: 11px;
}

.guest-footer-developer-link {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--text);

    font-weight: 600;
    text-decoration: none;
}

.guest-footer-developer-link img {
    width: 55px;
    height: auto;

    display: block;
}

.guest-footer-developer-link:hover {
    opacity: .75;
}

@media (max-width: 700px) {

    .guest-footer-main {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .guest-footer-developer {
        flex-wrap: wrap;
        justify-content: center;
    }

}

.guest-hero {
    position: relative;
    min-height: 420px;

    display: flex;
    align-items: flex-end;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.guest-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(12, 25, 44, .08) 0%,
            rgba(12, 25, 44, .72) 100%
        );
}


#service {
    scroll-margin-top: 100px;
}

#freizeit {
    scroll-margin-top: 100px;
}

.location-search-content {

    max-width:760px;

    margin:0 auto;

}


.location-search-content h1 {

    margin:0 0 15px;

    font-size:42px;

    letter-spacing:-1.5px;

}


.location-search-content > p {

    margin:0;

    color:var(--muted);

    line-height:1.7;

}

.quick-icon svg,
.info-card-icon svg,
.discover-grid svg,
.room-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}


.room-badge-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
}


.info-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

}
.guest-meal-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px;
}

.guest-meal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   SPEISEPLAN SLIDER
============================================================ */

.guest-meal-slider {
    position: relative;
    overflow: hidden;
}


.guest-meal-track {

    display: flex;

    transition: transform .5s ease;

}


.guest-meal-slide {

    flex:0 0 100%;

    display:grid;

    grid-template-columns:45% 55%;

    min-height:330px;

    background:white;

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

}



/* Bild */

.guest-meal-image {
    height:300px;
    min-height:300px;
    background:#eee; 
}


.guest-meal-image img {

    width:100%;

    height:100%;

    object-fit:cover;

}



/* Inhalt */

.guest-meal-content {

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}



.guest-meal-content > span {

    color:var(--primary);

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}



.guest-meal-content h3 {

    margin:12px 0 15px;

    font-size:32px;

    line-height:1.15;

    letter-spacing:-1px;

}



.guest-meal-content p {

    margin:0;

    color:var(--muted);

    font-size:15px;

    line-height:1.7;

}



.meal-tags {

    display:flex;

    gap:8px;

    margin-top:22px;

}


.meal-tags span {

    padding:7px 12px;

    border-radius:30px;

    background:#eaf9f3;

    color:var(--green);

    font-size:10px;

    font-weight:600;

}


/* Punkte */

.guest-slider-dots {

    display:flex;

    justify-content:center;

    gap:8px;

    margin-top:18px;

}


.guest-slider-dots button {

    width:8px;

    height:8px;

    border-radius:50%;

    border:0;

    padding:0;

    background:#d7dee9;

}


.guest-slider-dots button.active {

    background:var(--primary);

}



@media(max-width:768px){

    .guest-meal-slide {

        grid-template-columns:1fr;

    }


    .guest-meal-image {

        min-height:220px;

    }


    .guest-meal-content {

        padding:28px;

    }

}