/* ----------------------------------------------------
   HOME (R9-STYLE) - ERGÄNZUNGEN
   -> unten in style.css einfügen
---------------------------------------------------- */

/* kleine Button-Variante */
.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
}

/* Section Head: Titel links, Button rechts */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}

.section-head h2 {
    margin: 0;
}

/* HERO Layout (Main + Tiles) */
.hero-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: stretch;
}

/* große Hauptfläche */
.hero-main {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 360px;
    background: url('../images/hero/hero_main.jpg') center/cover no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
}

.hero-main-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.hero-main-overlay h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.hero-main-overlay p {
    margin: 0 0 14px;
    font-size: 14px;
    max-width: 680px;
    opacity: 0.95;
}

.hero-main-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Tiles rechts */
.hero-tiles {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}

.hero-tile {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
    border: 1px solid #333;
    text-decoration: none;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-tile img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.hero-tile-text {
    padding: 12px 14px;
}

.hero-tile-text h2 {
    margin: 0 0 6px;
    font-size: 16px;
}

.hero-tile-text p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.hero-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.45);
    border-color: #e60023;
}

/* Booking Bar Variante (unter Hero) */
.booking--bar {
    margin-top: 16px;
    background: rgba(0,0,0,0.58);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
}

.booking-head {
    margin-bottom: 10px;
}

.booking-head h2 {
    margin: 0 0 4px;
}

/* STATS Top Split */
.stats-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
    text-align: left;
}

.stats-note {
    background: #ffffff;
    border-radius: 6px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-size: 13px;
}

.stats-note a {
    color: #e60023;
    font-weight: 600;
    text-decoration: none;
}

.stats-note a:hover {
    text-decoration: underline;
}

/* UPCOMING Meta */
.upcoming-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.upcoming-date {
    font-size: 12px;
    color: #777;
}

/* BRANDS als Link (a.brand) */
.brand-grid a.brand {
    text-decoration: none;
    color: #fff;
    border-radius: 0; /* bleibt wie bisher */
}

.brand-grid a.brand:visited {
    color: #fff;
}

/* ----------------------------------------------------
   GLOBAL SETTINGS
---------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #222222;
}

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

/* Seite allgemein */
.page {
    background: #ffffff;
}

/* Zentrierter Inhalts-Wrapper */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Alle Sections standardmäßig animiert einblenden */
section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ----------------------------------------------------
   HERO (GLOBAL)
---------------------------------------------------- */
.hero {
    background: linear-gradient(to right, #000000, #1b1b1b);
    padding: 40px 0 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    animation-delay: 0.1s;
}

/* Logo-Emblem im Hero oben links */
.hero::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    width: 110px;
    height: 110px;
    background: url('../images/logo.png') no-repeat center/contain;
    opacity: 0.12;          /* dezent, edel */
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.6));
}

/* Damit der Inhalt über dem Emblem liegt */
.hero .section-inner,
.hero .hero-slider,
.hero .main-slide,
.hero .small-slide,
.hero .main-slide-content,
.hero .booking,
.hero .hero-top,
.hero .hero-main,
.hero .hero-tiles {
    position: relative;
    z-index: 2;
}

.special { animation-delay: 0.2s; }
.stats { animation-delay: 0.3s; }
.news,
.news-page { animation-delay: 0.4s; }
.brands,
.brands-page { animation-delay: 0.5s; }
.rooms-page,
.contact-page { animation-delay: 0.2s; }


/* ----------------------------------------------------
   KEYFRAME ANIMATIONS
---------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes subtlePulse {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}


/* ----------------------------------------------------
   HEADER / NAVIGATION
---------------------------------------------------- */
.main-header {
    background: #000000;
    color: #ffffff;
    padding: 12px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeIn 0.6s ease-out forwards;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: translateY(-1px);
    color: #e60023;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

/* Unterstreich-Animation bei Hover */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #e60023;
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: #e60023;
}

.nav-links a:hover::after {
    width: 100%;
}


/* ----------------------------------------------------
   HERO SECTION / SLIDER (ALT - kann bleiben, wenn genutzt)
---------------------------------------------------- */
.hero-slider {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    min-height: 320px;
}

/* Große Hauptkachel */
.slide.main-slide {
    position: relative;
    padding: 24px;
    background: url('../images/hero/hero_main.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    border-radius: 6px;
    overflow: hidden;
    transform-origin: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.main-slide-content {
    position: relative;
    color: #ffffff;
}

.main-slide h1 {
    font-size: 28px;
    margin: 0 0 8px;
}

.main-slide p {
    font-size: 14px;
    margin: 0;
}

/* Hover-Effekt für Hauptkachel */
.main-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}

/* Kleine Kacheln */
.slide.small-slide {
    background: #111111;
    border: 1px solid #333333;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 6px;
    transform-origin: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.small-slide img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.small-slide .slide-text {
    padding: 12px 14px;
    color: #ffffff;
}

.small-slide h2 {
    font-size: 16px;
    margin: 0 0 6px;
}

.small-slide p {
    font-size: 13px;
    margin: 0;
}

/* Hover-Effekt kleine Kacheln */
.small-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: #e60023;
}


/* ----------------------------------------------------
   HOME (R9-STYLE) - NEU (für neue index.php)
---------------------------------------------------- */

/* kleine Button-Variante */
.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
}

/* Section Head: Titel links, Button rechts */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}

.section-head h2 {
    margin: 0;
}

/* HERO Layout (Main + Tiles) */
.hero-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: stretch;
}

/* große Hauptfläche */
.hero-main {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 360px;
    background: url('../images/hero/hero_main.jpg') center/cover no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
}

.hero-main-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.hero-main-overlay h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.hero-main-overlay p {
    margin: 0 0 14px;
    font-size: 14px;
    max-width: 680px;
    opacity: 0.95;
}

.hero-main-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Tiles rechts */
.hero-tiles {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}

.hero-tile {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
    border: 1px solid #333;
    text-decoration: none;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-tile img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.hero-tile-text {
    padding: 12px 14px;
}

.hero-tile-text h2 {
    margin: 0 0 6px;
    font-size: 16px;
}

.hero-tile-text p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.hero-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.45);
    border-color: #e60023;
}

/* Booking Bar Variante (unter Hero) */
.booking--bar {
    margin-top: 16px;
    background: rgba(0,0,0,0.58);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
}

.booking-head {
    margin-bottom: 10px;
}

.booking-head h2 {
    margin: 0 0 4px;
}


/* ----------------------------------------------------
   BOOKING-BEREICH (wie bei R9)
---------------------------------------------------- */
.booking {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
    padding: 20px 20px 22px;
    color: #ffffff;
}

.booking h2 {
    margin: 0 0 4px;
    font-size: 18px;
    letter-spacing: 1px;
}

.booking p {
    margin: 0 0 14px;
    font-size: 13px;
    opacity: 0.9;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1.3fr 1fr 0.8fr 0.8fr;
    gap: 12px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
}

.booking-field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.booking-field select,
.booking-field input[type="date"] {
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 7px 9px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    appearance: none;
}

.booking-field select:focus,
.booking-field input[type="date"]:focus {
    border-color: #e60023;
}

.booking-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}


/* ----------------------------------------------------
   BUTTONS
---------------------------------------------------- */
.btn-primary {
    display: inline-block;
    background: #e60023;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
    margin-top: 10px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    background: #ff0030;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 3px;
    border: 1px solid #222;
    text-decoration: none;
    font-size: 14px;
    color: #222;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    background: #222;
    color: #fff;
}


/* ----------------------------------------------------
   SPECIAL SECTION
---------------------------------------------------- */
.special {
    padding: 60px 40px;
}

.special h2 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border-left: 4px solid #e60023;
    padding-left: 10px;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.special-item {
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    transform-origin: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.special-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.special-item h3 {
    margin: 0;
    padding: 10px 14px 14px;
    font-size: 15px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

/* Hover-Karte Special */
.special-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}


/* ----------------------------------------------------
   STATS SECTION + STANDORTE
---------------------------------------------------- */
.stats {
    padding: 80px 40px;
    background: #fafafa;
    text-align: center;
}

.stats-box h1 {
    font-size: 40px;
    margin: 0 0 10px;
    animation: subtlePulse 2.2s ease-in-out infinite;
}

.stats-box p {
    margin: 0;
    font-size: 14px;
}

/* STATS Top Split (neu) */
.stats-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
    text-align: left;
}

.stats-note {
    background: #ffffff;
    border-radius: 6px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-size: 13px;
}

.stats-note a {
    color: #e60023;
    font-weight: 600;
    text-decoration: none;
}

.stats-note a:hover {
    text-decoration: underline;
}

/* Standorte / Projektübersicht */
.location-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: left;
}

.location-region {
    background: #ffffff;
    border-radius: 6px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-size: 13px;
}

.location-region h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.location-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-region li {
    margin-bottom: 4px;
}


/* ----------------------------------------------------
   NEWS SECTION (Startseite & news.php)
---------------------------------------------------- */
.news,
.news-page {
    padding: 60px 40px;
}

.news h2,
.news-page h1 {
    font-size: 22px;
    margin-bottom: 16px;
}

.news-list {
    border-top: 1px solid #e0e0e0;
}

.news-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    transition: background 0.18s ease, padding-left 0.18s ease;
}

/* Hover-Effekt für News-Zeilen */
.news-item:hover {
    background: #f9f9f9;
    padding-left: 6px;
}


/* ----------------------------------------------------
   IN PLANUNG / UPCOMING
---------------------------------------------------- */
.upcoming {
    padding: 60px 40px;
    background: #f8f8f8;
}

.upcoming h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.upcoming p {
    font-size: 14px;
    margin-bottom: 18px;
}

.upcoming-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.upcoming-item {
    background: #ffffff;
    border-radius: 6px;
    padding: 14px 16px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-size: 13px;
    position: relative;
}

.upcoming-item h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.upcoming-item p {
    margin: 0 0 10px;
}

.upcoming-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #111;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
}

/* UPCOMING Meta (neu) */
.upcoming-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.upcoming-date {
    font-size: 12px;
    color: #777;
}


/* ----------------------------------------------------
   BRANDS SECTION (Startseite & brands.php)
---------------------------------------------------- */
.brands,
.brands-page {
    padding: 60px 40px;
}

.brands h2,
.brands-page h1 {
    font-size: 22px;
    margin-bottom: 20px;
}

.brands h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.brand {
    position: relative;
    height: 200px;
    padding: 18px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.brand img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.brand span {
    position: relative;
    z-index: 1;
}

/* Brand-Farben */
.brand-dark   { background: #000000; }
.brand-grey   { background: #4a4a4a; }
.brand-red    { background: #e60023; }
.brand-gold   { background: #a3874a; }
.brand-purple { background: #8d7cc7; }
.brand-green  { background: #5ba57b; }

/* Hover-Effekte Brands */
.brand:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
    filter: brightness(1.06);
}

.brand:hover img {
    opacity: 0.9;
}

/* BRANDS als Link (a.brand) */
.brand-grid a.brand {
    text-decoration: none;
    color: #fff;
}
.brand-grid a.brand:visited {
    color: #fff;
}


/* ----------------------------------------------------
   ROOMS PAGE
---------------------------------------------------- */
.rooms-page {
    padding: 60px 40px;
}

.rooms-page h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.rooms-page p {
    font-size: 14px;
}

.rooms-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.room-card {
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform-origin: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.room-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.room-card h2 {
    margin: 12px 14px 4px;
    font-size: 18px;
}

.room-card p {
    margin: 0 14px 16px;
    font-size: 14px;
}

/* Hover-Effekt Rooms */
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}


/* ----------------------------------------------------
   CONTACT PAGE
---------------------------------------------------- */
.contact-page {
    padding: 60px 40px;
}

.contact-page h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-page p {
    font-size: 14px;
    max-width: 600px;
}


/* ----------------------------------------------------
   ABOUT PAGE
---------------------------------------------------- */
.about-page {
    padding: 60px 40px;
}

.about-page h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 30px;
    align-items: flex-start;
}

.about-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.about-text h2 {
    font-size: 18px;
    margin: 18px 0 8px;
}

/* rechter Bereich: Bild + kleine Facts */
.about-image-box {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    margin-bottom: 18px;
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    font-size: 13px;
}

.about-facts div {
    background: #111;
    color: #fff;
    padding: 10px 12px;
    border-radius: 4px;
    text-align: center;
}

.about-facts strong {
    display: block;
    font-size: 18px;
    color: #e60023;
}

.about-facts span {
    display: block;
    margin-top: 2px;
}

/* Responsive für About */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-page {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .about-facts {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------------------
   FOOTER (erweitert)
---------------------------------------------------- */
.footer {
    background: #000;
    color: #ccc;
    padding: 50px 40px 20px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo */
.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
}

.footer-logo span {
    color: #e60023;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #e60023;
}

/* Social Icons */
.footer-social a {
    color: #ccc;
    font-size: 20px;
    margin-right: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    color: #e60023;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #333;
    font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 850px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer {
        padding: 40px 20px 20px;
    }
}


/* ----------------------------------------------------
   NEWS PAGE LAYOUT (KARTEN + SIDEBAR)
---------------------------------------------------- */
/* Layout: Hauptbereich + Sidebar */
.news-layout {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 32px;
}

.news-main h1 {
    margin-bottom: 6px;
}

.news-subtitle {
    margin: 0 0 20px;
    font-size: 14px;
    color: #555;
}

/* News-Einträge als Karten */
.news-list {
    border-top: none; /* alten Rand deaktivieren */
}

.news-item {
    background: #ffffff;
    border-radius: 6px;
    padding: 14px 16px 16px;
    border: 1px solid #e3e3e3;
    margin-bottom: 14px;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.news-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-date::before {
    content: "📅 ";
}

.news-category {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #e60023;
}

.news-title {
    font-size: 18px;
    margin: 4px 0 6px;
}

.news-excerpt {
    font-size: 14px;
    margin: 0 0 10px;
}

.news-more {
    font-size: 13px;
    text-decoration: none;
    color: #e60023;
    font-weight: 600;
}

/* Hover-Effekt für News-Karte */
.news-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

/* Sidebar */
.news-sidebar h3 {
    font-size: 16px;
    margin: 0 0 8px;
}

.news-sidebar ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.news-sidebar ul li {
    margin-bottom: 6px;
}

.news-sidebar a {
    font-size: 14px;
    text-decoration: none;
    color: #333;
}

.news-sidebar a:hover {
    color: #e60023;
}

.news-sidebar-text {
    font-size: 13px;
    margin-bottom: 10px;
}

/* Highlights leicht abgesetzt */
.news-highlight-list li::before {
    content: "★ ";
    color: #e6b800;
}

/* Pagination */
.news-pagination {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.page-link {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
}

.page-link.active,
.page-link:hover {
    background: #e60023;
    border-color: #e60023;
    color: #fff;
}

/* Empty State */
.empty-news {
    padding: 40px 20px;
    text-align: center;
    border: 1px dashed #ccc;
    border-radius: 6px;
    background: #fafafa;
}

.empty-news-text {
    font-size: 15px;
    color: #777;
}


/* ----------------------------------------------------
   COOKIE BANNER
---------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 14px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
}

.cookie-banner a {
    color: #e60023;
    text-decoration: underline;
}

.cookie-banner button {
    background: #e60023;
    border: none;
    padding: 8px 14px;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s ease;
}

.cookie-banner button:hover {
    background: #ff0033;
}


/* ----------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------- */

/* Tablet: max. 1024px */
@media (max-width: 1024px) {

    .main-header {
        padding: 10px 20px;
    }

    .hero {
        padding: 32px 0 40px;
    }

    /* ALT Slider */
    .hero-slider {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: auto auto;
    }

    .main-slide {
        grid-column: 1 / 3; /* über beide Spalten */
        min-height: 260px;
    }

    /* NEU Hero Top */
    .hero-top {
        grid-template-columns: 1fr;
    }

    .hero-tiles {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .hero-tile img {
        height: 110px;
    }

    .hero-main {
        min-height: 320px;
    }

    .special {
        padding: 50px 20px;
    }

    .stats,
    .news,
    .brands,
    .rooms-page,
    .news-page,
    .brands-page,
    .contact-page,
    .upcoming,
    .about-page {
        padding: 50px 20px;
    }

    .special-grid,
    .rooms-grid,
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upcoming-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-top {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

/* Handy: max. 768px */
@media (max-width: 768px) {

    .main-header {
        padding: 10px 16px;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-links {
        justify-content: flex-start;
        gap: 14px;
    }

    .hero {
        padding: 24px 0 32px;
    }

    /* ALT Slider */
    .hero-slider {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .main-slide {
        min-height: 220px;
    }

    .small-slide {
        flex-direction: row;
        height: auto;
    }

    .small-slide img {
        width: 40%;
        height: 100%;
    }

    .small-slide .slide-text {
        width: 60%;
    }

    /* NEU Hero Tiles */
    .hero-main-overlay h1 {
        font-size: 28px;
    }

    .hero-tiles {
        grid-template-columns: 1fr;
    }

    .hero-tile {
        flex-direction: row;
    }

    .hero-tile img {
        width: 40%;
        height: 100%;
    }

    .hero-tile-text {
        width: 60%;
    }

    .booking {
        margin-top: 24px;
    }

    .booking-row {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        justify-content: flex-start;
    }

    .special,
    .stats,
    .news,
    .brands,
    .rooms-page,
    .news-page,
    .brands-page,
    .contact-page,
    .upcoming,
    .about-page {
        padding: 40px 16px;
    }

    .stats-box h1 {
        font-size: 32px;
    }

    .special-grid,
    .rooms-grid,
    .brand-grid {
        grid-template-columns: 1fr;
    }

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

    .upcoming-list {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 20px 16px;
    }

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

/* sehr kleines Handy: max. 480px */
@media (max-width: 480px) {

    .hero::before {
        top: 12px;
        left: 12px;
        width: 80px;
        height: 80px;
        opacity: 0.10;
    }

    .main-slide h1 {
        font-size: 24px;
    }

    .main-slide p {
        font-size: 13px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 8px 16px;
        font-size: 13px;
    }

    .special h2,
    .news h2,
    .brands h2,
    .rooms-page h1,
    .brands-page h1,
    .news-page h1,
    .contact-page h1,
    .about-page h1 {
        font-size: 20px;
    }

    .logo img {
        height: 64px;
    }
}
