/* Beim Böckhiasl – Nachbau im Originaldesign (monstroid2 / Elementor) */

:root {
    --green: #9a9f94;
    --green-hover: rgb(192, 197, 186);
    --accent: #d7e8dd;
    --muted: #b0aebe;
    --heading: #34314b;
    --text: #000;
    --footer-bg: #3c3c3b;
    --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Hind', sans-serif;
    font-weight: 400;
    color: var(--heading);
    line-height: 1.4;
    margin: 0 0 .5em;
}

h1 { font-size: 34px; }
h2 { font-size: 26px; }
h3 { font-size: 21px; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-hover); }

p { margin: 0 0 1em; }

img { max-width: 100%; display: block; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: 'Hind', sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--green);
    padding: 14px 28px;
    border: 0;
    transition: background .2s ease;
}
.btn:hover { background: var(--green-hover); }
.btn + .btn { margin-left: 12px; }
.btn-outline {
    background: transparent;
    color: var(--green) !important;
    box-shadow: inset 0 0 0 2px var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff !important; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 30;
    padding: 22px 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo { line-height: 1; display: block; }
.site-logo img {
    height: 46px;
    width: auto;
    /* logo is sage-green on transparent -> lift it to near-white for the dark hero header */
    filter: brightness(0) invert(1);
}
.main-nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); }

/* Primärer "Buchen"-Button in der Nav */
.main-nav a.nav-cta {
    background: var(--green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 2px;
    transition: background .2s ease;
}
.main-nav a.nav-cta:hover,
.main-nav a.nav-cta.active { background: var(--green-hover); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: #fff; margin: 5px 0;
}

/* ---------- Hero (Slider) ---------- */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* immer 16:9 */
    max-height: 640px;      /* auf großen Monitoren nicht zu hoch */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.hero .slides { position: absolute; inset: 0; }
.hero .slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 24s infinite;
}
.hero .slide:nth-child(1) { animation-delay: 0s; }
.hero .slide:nth-child(2) { animation-delay: 6s; }
.hero .slide:nth-child(3) { animation-delay: 12s; }
.hero .slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    25%  { opacity: 1; }
    29%  { opacity: 0; }
    100% { opacity: 0; }
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(40, 38, 55, .35);
}
.hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 24px;
}
.hero h1 {
    color: #fff;
    font-size: 56px;
    margin-bottom: .15em;
}
.hero .lead {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

/* page hero (smaller, for Unterseiten) */
.page-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* immer 16:9 */
    max-height: 560px;      /* Unterseiten-Banner etwas schlanker */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(40, 38, 55, .4);
}
.page-hero .hero-inner { position: relative; z-index: 2; padding: 70px 24px 0; }
.page-hero h1 { color: #fff; font-size: 40px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.alt { background: #f7f7f5; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.eyebrow {
    display: inline-block;
    font-family: 'Hind', sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

/* About: image + text */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.signature {
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    color: var(--heading);
    margin-top: 1em;
}

/* Category cards (bg image tiles) */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(40,38,55,.75), rgba(40,38,55,.05));
    transition: background .3s ease;
}
.card:hover::after { background: linear-gradient(to top, rgba(40,38,55,.85), rgba(40,38,55,.25)); }
.card h3 { position: relative; z-index: 2; color: #fff; margin: 0; }

/* Offers (image cards with text) */
.offers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.offer { background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.offer img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.offer .body { padding: 30px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--footer-bg);
    color: #c9c8d4;
    padding: 70px 0 30px;
    font-size: 14px;
}
.site-footer a { color: #c9c8d4; }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}
.site-footer h4 {
    color: #fff;
    font-size: 18px;
    letter-spacing: .5px;
    margin-bottom: 18px;
}
.site-footer .brand img {
    height: 50px; width: auto; margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.hours-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 50px; padding-top: 22px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

/* ---------- Mittagsmenü list ---------- */
.menu-price {
    text-align: center;
    font-family: 'Hind', sans-serif;
    font-weight: 900;
    color: var(--green);
    letter-spacing: 1px;
    font-size: 22px;
    margin-bottom: 50px;
}
.menu-days { max-width: 720px; margin: 0 auto; }
.menu-day {
    border-bottom: 1px solid #e6e6e2;
    padding: 28px 0;
}
.menu-day:last-child { border-bottom: 0; }
.menu-day .day {
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin-bottom: 10px;
}
.menu-day .course { margin: 4px 0; }
.menu-day .alt-sep { color: var(--muted); font-style: italic; }
.menu-day .dessert { color: var(--heading); font-style: italic; }

/* ---------- Buchungswidget (AIDA) ---------- */
.booking-widget {
    max-width: 900px;
    margin: 0 auto;
    min-height: 420px;
}
.booking-widget #easiplugin_container { min-height: 380px; }

/* ---------- Preisliste (Zimmer & Preise) ---------- */
.price-list { max-width: 760px; margin: 0 auto; }
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    border-bottom: 1px solid #e6e6e2;
    padding: 22px 0;
}
.price-item:last-child { border-bottom: 0; }
.price-item .label { flex: 1; }
.price-item .label .title {
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    color: var(--heading);
    font-size: 17px;
}
.price-item .label .note { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.price-item .amount {
    font-family: 'Hind', sans-serif;
    font-weight: 900;
    color: var(--green);
    font-size: 22px;
    white-space: nowrap;
}
.price-cta { text-align: center; margin-top: 44px; }

/* ---------- Galerie ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* feature list */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}
.feature-list li::before {
    content: "›";
    position: absolute; left: 0; top: -1px;
    color: var(--green);
    font-weight: 900;
    font-size: 18px;
}
.feature-list.two-col { column-count: 2; column-gap: 40px; }
.feature-list.two-col li { break-inside: avoid; }

/* ---------- Seminar-Pakete ---------- */
.packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.package {
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.package h3 { margin-bottom: 18px; }
.package .feature-list { flex: 1; font-size: 14px; }
.package .feature-list li { margin-bottom: 8px; }
.pkg-price {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e6e6e2;
    font-family: 'Hind', sans-serif;
    font-weight: 900;
    color: var(--green);
    font-size: 26px;
}
.pkg-price small {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0;
    margin-bottom: 4px;
}

/* ---------- Kontakt ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.contact-block { margin-bottom: 28px; }
.contact-block .lbl {
    font-family: 'Hind', sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    /* Header als fester Balken oben – NICHT mehr über dem Bild.
       Reihenfolge: Header, dann Bild, dann Text. */
    .site-header {
        position: relative;
        background: var(--green);
        padding: 14px 0;
    }
    .site-logo img { height: 40px; }

    .main-nav { display: none; }
    .nav-toggle { display: block; }
    .main-nav.open {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--green);
        padding: 10px 0;
        z-index: 40;
    }
    .main-nav.open ul { flex-direction: column; gap: 0; }
    .main-nav.open li { text-align: center; }
    .main-nav.open a { display: block; padding: 14px; }
    /* Buchen-Button im Mobile-Menü als normale Zeile, nicht als Chip */
    .main-nav.open a.nav-cta { background: transparent; border-radius: 0; padding: 14px; }

    .split, .offers, .footer-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .cards, .gallery, .packages { grid-template-columns: 1fr; }
    .feature-list.two-col { column-count: 1; }
    .hero h1 { font-size: 38px; }
    .hero .lead { font-size: 17px; }
    .section { padding: 60px 0; }
    .main-nav ul { gap: 22px; }
}

@media (max-width: 1024px) and (min-width: 861px) {
    .main-nav ul { gap: 20px; }
    .main-nav a { font-size: 12px; letter-spacing: 1px; }
}
