/* ============================================
   HOTEL GOLDENE KRONE – Design-System
   Modern-rustikal, hochwertig, mobiloptimiert
   ============================================ */

/* --- CSS-Variablen (Farben, Schriften, Abstände) --- */
:root {
    /* Gold-Palette (Hauptfarbe) */
    --gold: #b8924a;
    --gold-light: #d4b272;
    --gold-dark: #8c6d36;
    --gold-bg: rgba(184, 146, 74, 0.08);

    /* Neutrale Töne */
    --cream: #faf6ef;
    --ivory: #f3ece0;
    --white: #ffffff;
    --dark: #1f1a14;
    --dark-soft: #2e2820;
    --text: #3a342c;
    --text-light: #f0e8d8;
    --muted: #7a7268;
    --border: #e6dcc8;

    /* Natur-Akzent (dezentes Waldgrün) */
    --forest: #4a6741;
    --forest-light: #6b8a5e;

    /* Abstände */
    --section-pad: 6rem;
    --section-pad-mobile: 3.5rem;
    --container-max: 1180px;
    --radius: 8px;
    --radius-lg: 12px;

    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);

    /* Übergänge */
    --transition: 0.3s ease;
}

/* --- Reset & Basis --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

/* --- Typografie --- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

p { margin-bottom: 1rem; }
strong { font-weight: 700; }

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold); }

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

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: var(--section-pad) 0; }
.section-light { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-dark { background: var(--dark); color: var(--text-light); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: #c8c0b0; }
.section-dark .eyebrow { color: var(--gold-light); }

.section-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}
.section-gold h2 { color: var(--white); }
.section-gold .eyebrow { color: rgba(255,255,255,0.85); }
.section-gold .lead { color: #fbf3df; }

/* --- Hilfselemente --- */
.eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 400;
}
.eyebrow-gold { color: var(--gold-dark); }

.lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.small-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-dark {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}
.btn-dark:hover {
    background: var(--dark-soft);
    border-color: var(--dark-soft);
    color: var(--cream);
}

.btn-white {
    background: var(--white);
    color: var(--gold-dark);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--gold-dark);
}

.btn-large { padding: 1.1rem 2.8rem; font-size: 0.92rem; }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.75rem; }

.link-arrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--gold-dark);
    transition: color var(--transition);
}
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { color: var(--gold); }

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(31, 26, 20, 0.97);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}
.logo:hover { color: var(--gold-light); }
.logo-img {
    height: 40px;
    width: auto;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    gap: 2rem;
}
.main-nav a {
    color: var(--white);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 400;
    position: relative;
    padding: 0.3rem 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
.main-nav a:hover { color: var(--gold-light); }

/* Header-Aktionen (Buchen-Button + Sprachwahl) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: flex;
    gap: 0.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.lang-switch a {
    color: rgba(255,255,255,0.6);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}
.lang-switch a:hover,
.lang-switch a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(31, 26, 20, 0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.mobile-nav a:hover { color: var(--gold-light); }

/* --- Hero --- */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20,15,8,0.45) 0%,
        rgba(20,15,8,0.55) 50%,
        rgba(20,15,8,0.7) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: 5rem;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 560px;
    color: var(--text-light);
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- USP-Bar --- */
.usp-bar {
    background: var(--ivory);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.usp-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.usp-item:hover { background: var(--gold-bg); }
.usp-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.usp-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.usp-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* --- Zwei-Spalten-Layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.two-col-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* --- Karten-Grid --- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-image {
    height: 220px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card-body {
    padding: 1.8rem;
}
.card-body h3 { color: var(--dark); }
.card-body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

/* --- Buchungsbereich --- */
.booking-section {
    text-align: center;
    padding: var(--section-pad) 0;
}
.booking-widget-placeholder {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 3rem 2rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    color: var(--muted);
    font-style: italic;
    background: rgba(255,255,255,0.5);
}

/* --- Testimonials --- */
.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    max-width: 700px;
    margin: 0 auto;
}
.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--muted);
}

/* --- Kontakt --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info p {
    margin-bottom: 0.5rem;
}
.contact-info a {
    font-weight: 400;
}
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Sticky Buchen-Button (Mobil) --- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    z-index: 90;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.sticky-cta:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: #a8a094;
    padding-top: 4rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-col .logo-text {
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}
.footer-col h4 { color: var(--white); }
.footer-col a {
    display: block;
    color: #a8a094;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.9rem; }

.footer-bottom {
    border-top: 1px solid #3a3428;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #6a6258;
}
.footer-bottom a { color: #8a8278; }
.footer-bottom a:hover { color: var(--gold-light); }

/* --- Hunde-Badge (Spezial-Element) --- */
.dog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-bg);
    border: 1px solid var(--gold-light);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 400;
}

/* --- Unterseiten-Hero (kleiner) --- */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero .hero-bg::after {
    background: linear-gradient(
        to bottom,
        rgba(20,15,8,0.5) 0%,
        rgba(20,15,8,0.65) 100%
    );
}
.page-hero .hero-content {
    padding-top: 6rem;
}

/* --- Rechtliche Seiten --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--section-pad) 2rem;
}
.legal-content h1 {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}
.legal-content p,
.legal-content ul,
.legal-content li {
    font-size: 0.95rem;
    color: var(--text);
}
.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.3rem; }

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

/* Tablet */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .hamburger { display: block; }
    .header-actions .btn { display: none; }

    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .cards { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .section { padding: var(--section-pad-mobile) 0; }
    .hero { min-height: 80vh; }
    .page-hero { min-height: 35vh; }
    .two-col-image img { height: 320px; }

    .sticky-cta { display: block; }
    body { padding-bottom: 52px; }
}

/* Smartphone */
@media (max-width: 540px) {
    .container { padding: 0 1.2rem; }
    .usp-grid { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-content { padding-top: 4rem; }
    .hero-sub { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .two-col-image img { height: 260px; }
}
