/* zimmer-preise.css */
.page-hero{
    position: relative;
    min-height: clamp(34rem, 76svh, 48rem);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: clamp(7rem, 11vw, 8rem);
    background:
            linear-gradient(90deg, rgba(43,35,28,.74) 0%, rgba(43,35,28,.48) 42%, rgba(43,35,28,.24) 100%),
            url('../img/zurmuehleIMG.jpg') center center / cover no-repeat;
    color: #fff;
}

.page-hero::after{
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(244,239,231,0), rgba(244,239,231,1));
}

.hero-content{
    position: relative;
    z-index: 2;
    padding-top: clamp(3.5rem, 8vw, 7rem);
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.page-hero h1{
    color: #fff;
    font-size: clamp(3rem, 8vw, 6.1rem);
    line-height: .88;
    max-width: 11ch;
    margin-bottom: 1.2rem;
    overflow-wrap: break-word;
}

.page-hero p{
    font-size: 1.12rem;
    color: rgba(255,255,255,.88);
    max-width: 55ch;
    margin-bottom: 2rem;
}

.hero-facts{
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    max-width: 760px;
}

.hero-fact{
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.booking-card{
    position: relative;
    z-index: 3;
    background: rgba(255,250,245,.92);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    margin-top: 2.5rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.booking-grid{
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) auto;
    gap: .75rem;
    align-items: stretch;
}

.booking-field{
    background: #fff;
    border: 1px solid rgba(90,70,51,.10);
    border-radius: 18px;
    padding: .95rem 1rem;
    min-height: 72px;
    min-width: 0;
}

.booking-field label{
    display: block;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .25rem;
    font-weight: 600;
}

.booking-input{
    border: 0;
    outline: none;
    padding: 0;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    width: 100%;
    min-width: 0;
}

.intro-band{
    background:
            radial-gradient(circle at top left, rgba(168,181,154,.12), transparent 30%),
            linear-gradient(180deg, rgba(244,239,231,.98), rgba(255,255,255,.65));
    border-bottom: 1px solid var(--line);
}

.content-panel,
.room-card,
.service-card,
.notice-panel,
.cta-panel{
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.content-panel{
    padding: clamp(1.5rem, 3vw, 2.4rem);
    height: 100%;
}

.room-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.room-card{
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-image{
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}

.room-slide-frame{
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.room-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover .room-image img{ transform: scale(1.045); }

.room-slide-btn{
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(31,31,31,.38);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}

.room-slide-btn:hover{
    background: rgba(31,31,31,.58);
    transform: translateY(-50%) scale(1.04);
}

.room-slide-btn--prev{ left: .85rem; }
.room-slide-btn--next{ right: .85rem; }

.room-slide-count{
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    border-radius: 999px;
    padding: .35rem .65rem;
    color: #fff;
    background: rgba(31,31,31,.48);
    font-size: .78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.room-badge{
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    padding: .55rem .8rem;
    background: rgba(255,255,255,.9);
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.room-body{
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-body h2{
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 1;
    margin-bottom: .65rem;
}

.room-body p{
    color: var(--muted);
    margin-bottom: 1.15rem;
}

.room-features{
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    display: grid;
    gap: .55rem;
}

.room-features li{
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    color: var(--text);
    font-size: .96rem;
}

.room-features i{
    color: var(--green-dark);
    margin-top: .22rem;
    flex: 0 0 auto;
}

.price-row{
    margin-top: auto;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.price-label{
    display: block;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .1rem;
}

.price{
    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    line-height: .9;
    color: var(--green-dark);
    font-weight: 700;
    white-space: nowrap;
}

.service-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
}

.service-card{
    padding: 1.45rem 1.2rem;
    height: 100%;
    box-shadow: 0 14px 35px rgba(28,22,16,.08);
}

.service-icon{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(116,134,108,.14);
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card h3{
    font-size: 1.55rem;
    margin-bottom: .4rem;
}

.service-card p{
    color: var(--muted);
    margin: 0;
    font-size: .96rem;
    line-height: 1.55;
}

.price-table-wrap{
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(255,255,255,.82);
}

.price-table{
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.price-table th,
.price-table td{
    padding: 1.05rem 1.15rem;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.price-table th{
    background: rgba(116,134,108,.10);
    color: var(--green-dark);
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.price-table tr:last-child td{ border-bottom: 0; }
.price-table td:first-child{ font-weight: 700; color: var(--text); }
.price-table td:not(:first-child){ color: var(--muted); }

.notice-panel{
    padding: clamp(1.5rem, 3vw, 2.35rem);
    background:
            linear-gradient(135deg, rgba(51,69,56,.94), rgba(116,134,108,.9)),
            url('../img/hero.png') center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.notice-panel h2,
.notice-panel h3{ color: #fff; }

.notice-panel p,
.notice-panel li{ color: rgba(255,255,255,.82); }

.notice-list{
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: .8rem;
}

.notice-list li{
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.notice-list i{
    color: #fff;
    margin-top: .2rem;
    flex: 0 0 auto;
}

.cta-panel{
    overflow: hidden;
    background: #fff;
}

.cta-content{
    padding: clamp(1.5rem, 3vw, 2.6rem);
}

.cta-image{
    min-height: 100%;
    background: url('../img/hero.png') center / cover no-repeat;
}

.restaurant-footer{
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 0;
}

.footer-top{
    padding: 2.6rem 0 1.8rem;
    border-bottom: 1px solid var(--footer-border);
}

.footer-logo{
    width: 160px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-heading{
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .95rem;
}

.footer-note{
    font-size: .95rem;
    color: var(--footer-muted);
    max-width: 34ch;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{ margin-bottom: .55rem; }

.footer-links a,
.footer-contact a,
.footer-bottom a{
    color: var(--footer-text);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover{ color: #fff; }

.footer-contact strong{
    color: #fff;
    display: block;
    margin-bottom: .35rem;
    font-size: 1rem;
}

.phone{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.phone i{ color: var(--green-light); margin-right: .35rem; }
.footer-time{ color: var(--footer-muted); font-size: .9rem; }

.footer-bottom{ padding: 1rem 0 1.15rem; }

.footer-bottom-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .9rem;
    color: var(--footer-muted);
}

.footer-mini-links{
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
}

.socials{
    display: flex;
    gap: .6rem;
    align-items: center;
}

.socials a{
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

.socials a:hover{
    background: rgba(255,255,255,.16);
    transform: translateY(-1px);
}

.room-gallery-modal .modal-content{
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: #101312;
    color: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.room-gallery-modal .btn-close{
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    opacity: .92;
}

.room-modal-stage{
    position: relative;
    min-height: min(72vh, 760px);
    background: #090b0a;
    display: grid;
    place-items: center;
}

.room-modal-stage img{
    width: 100%;
    height: min(72vh, 760px);
    object-fit: contain;
    background: #090b0a;
}

.room-modal-btn{
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.12);
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}

.room-modal-btn:hover{
    background: rgba(255,255,255,.22);
    transform: translateY(-50%) scale(1.04);
}

.room-modal-btn--prev{ left: 1.25rem; }
.room-modal-btn--next{ right: 1.25rem; }

.room-modal-caption{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #101312;
}

.room-modal-caption h2{
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.room-modal-caption span{
    color: rgba(255,255,255,.72);
    font-weight: 700;
}

@media (max-width: 1199.98px){
    .booking-grid{ grid-template-columns: 1fr 1fr; }
    .booking-grid .d-grid{ grid-column: 1 / -1; }
    .room-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .service-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 991.98px){
    .main-nav{ border-radius: 24px; }

    .navbar-nav{
        background: rgba(255,255,255,.08);
        border-radius: 18px;
        padding: .75rem;
        margin-top: .5rem;
        width: 100%;
    }

    .navbar-wrap.scrolled .navbar-nav{ background: rgba(51,69,56,.04); }

    .navbar .nav-link{
        width: 100%;
        padding: .9rem 1rem !important;
    }

    .navbar .nav-link::after{ display: none; }

    .brand-logo{
        height: 46px;
        max-width: 150px;
    }

    .brand-mark{
        min-width: auto;
        min-height: 46px;
    }

    .room-grid{ grid-template-columns: 1fr; }
    .cta-image{ min-height: 340px; }
    .footer-bottom-inner{ justify-content: center; text-align: center; }
}

@media (max-width: 767.98px){
    html{ scroll-padding-top: 92px; }
    .section-space{ padding: 3.5rem 0; }
    .page-hero{ min-height: auto; }
    .page-hero h1{
        max-width: 8em;
        font-size: clamp(2.65rem, 11vw, 3.4rem);
        line-height: .9;
    }
    .booking-grid{ grid-template-columns: 1fr; }
    .booking-grid .d-grid{ grid-column: auto; }
    .hero-fact{ width: 100%; justify-content: center; }
    .service-grid{ grid-template-columns: 1fr; }
    .price-table-wrap{ overflow-x: auto; }
    .price-table{ min-width: 640px; }
    .room-slide-btn{
        width: 2.2rem;
        height: 2.2rem;
    }
    .room-modal-stage,
    .room-modal-stage img{
        height: 62vh;
        min-height: 360px;
    }
    .room-modal-btn{
        width: 2.5rem;
        height: 2.5rem;
    }
    .footer-logo{ width: 140px; }
    .footer-bottom-inner{ flex-direction: column; }
    .footer-mini-links{ justify-content: center; text-align: center; }
}
