/* ═══════════════════════════════════════════════
   Elke's Fewo – Hauptstylesheet
   Struktur:
   01  Reset & Variablen
   02  Base / Typography
   03  Header & Navigation
   04  Hero
   05  Fakten-Leiste
   06  Highlights / Feature-Cards
   07  Split (Bild + Text)
   08  Galerie
   09  Video
   10  Ausstattung
   11  Ort (La Croix Valmer)
   12  Ausflugsziele
   13  Lage & Karte
   14  Footer
   15  Responsive
   ═══════════════════════════════════════════════ */

/* ── 01  RESET & VARIABLEN ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-dark:  #1a2d3d;
    --primary-navy:  #2d4a5f;
    --accent-gold:   #c9a96e;
    --text-dark:     #1a1a1a;
    --text-light:    #666666;
    --bg-white:      #ffffff;
    --bg-cream:      #f9f8f5;
    --border-light:  #e8e6e1;
    --shadow:        0 4px 20px rgba(0,0,0,0.07);
    --shadow-lg:     0 16px 40px rgba(0,0,0,0.12);
}

/* ── 02  BASE / TYPOGRAPHY ── */
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

section { padding: 6rem 0; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

.section-label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

section h2 {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 4rem;
    line-height: 1.9;
}

/* ── 03  HEADER & NAVIGATION ── */
header {
    background: var(--bg-white);
    padding: 1.4rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.logo img { height: 34px; width: auto; }

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.25s;
}
nav a:hover { color: var(--accent-gold); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-navy);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-nav {
    background: var(--primary-navy);
    color: white;
    padding: 0.75rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s;
}
.btn-nav:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* ── 04  HERO ── */
.hero {
    background: linear-gradient(to bottom, rgba(26,45,61,0.45) 0%, rgba(26,45,61,0.25) 60%, rgba(26,45,61,0.55) 100%),
                url('../images/hero.jpg') center/cover no-repeat;
    color: white;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.92;
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    padding: 1.1rem 3rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: white;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s;
}
.btn-hero:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── 05  FAKTEN-LEISTE ── */
.facts-bar {
    background: var(--primary-navy);
    color: white;
    padding: 2.5rem 0;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.fact-item span {
    display: block;
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
}
.fact-item p {
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ── 06  HIGHLIGHTS / FEATURE-CARDS ── */
.highlights-bg { background: var(--bg-cream); }

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    text-align: left;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-gold);
    transform: translateY(-4px);
}

.feature-num {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--border-light);
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; }

/* ── 07  SPLIT (BILD + TEXT) ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.split-img { overflow: hidden; min-height: 520px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.split-img:hover img { transform: scale(1.03); }

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-cream);
}
.split-text h2 { text-align: left; font-size: 2.4rem; margin-bottom: 1.5rem; }
.split-text .section-label { text-align: left; margin-bottom: 1rem; }
.split-text p { color: var(--text-light); font-size: 0.98rem; line-height: 1.9; margin-bottom: 1.2rem; }
.split-text ul { list-style: none; margin-bottom: 2rem; }
.split-text li {
    padding: 0.55rem 0 0.55rem 1.8rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}
.split-text li::before { content: "—"; position: absolute; left: 0; color: var(--accent-gold); }

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.25s;
    align-self: flex-start;
}
.btn-outline:hover { background: var(--primary-navy); color: white; }

/* ── 08  GALERIE ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-grid .g-wide { grid-column: span 2; }

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1.5rem 1.2rem;
    background: linear-gradient(transparent, rgba(26,45,61,0.85));
    color: white;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── 09  VIDEO ── */
.video-section {
    background: var(--primary-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.video-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.video-wrap { position: relative; overflow: hidden; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,45,61,0) 60%, var(--primary-dark) 100%);
    pointer-events: none;
}
.video-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4.5rem;
    position: relative;
    z-index: 1;
}
.video-text .section-label { text-align: left; margin-bottom: 1rem; }
.video-text h2 {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    color: white;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}
.video-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    max-width: 440px;
}
.video-gold-line {
    width: 48px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 2rem;
    opacity: 0.7;
}
.video-mute-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    background: none;
    border: 1px solid rgba(201,169,110,0.45);
    color: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    transition: all 0.25s;
    align-self: flex-start;
}
.video-mute-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.video-mute-btn svg {
    width: 1rem; height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ── 10  AUSSTATTUNG ── */
.amenities-bg { background: var(--bg-cream); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.amenity-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-top: 3px solid var(--accent-gold);
}
.amenity-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.amenity-card ul { list-style: none; }
.amenity-card li {
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}
.amenity-card li:last-child { border-bottom: none; }
.amenity-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-gold); font-size: 0.8rem; }

/* ── 11  ORT (LA CROIX VALMER) ── */
.ort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.ort-grid img { width: 100%; height: 420px; object-fit: cover; display: block; }

.ort-text h3 {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.ort-text p { color: var(--text-light); font-size: 0.98rem; line-height: 1.9; margin-bottom: 1rem; }
.ort-text strong { color: var(--primary-navy); font-weight: 600; }

.ort-themen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}
.ort-thema h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 1.2rem 0 0.8rem;
    font-weight: 500;
}
.ort-thema p { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; }
.ort-thema strong { color: var(--primary-navy); }

.ort-thema-img-wrap { overflow: hidden; }
.ort-thema-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s; }
.ort-thema-img-wrap:hover .ort-thema-img { transform: scale(1.04); }

.thema-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem; height: 2rem;
    background: rgba(201,169,110,0.12);
    border-radius: 50%;
    flex-shrink: 0;
}
.thema-icon svg {
    width: 1rem; height: 1rem;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ort-fakten {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    background: var(--primary-navy);
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    text-align: center;
}
.ort-fakt { display: flex; flex-direction: column; gap: 0.4rem; }
.of-val {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
}
.of-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); letter-spacing: 0.8px; text-transform: uppercase; }

.ort-links { border-top: 1px solid var(--border-light); padding-top: 2.5rem; }
.ort-links-intro { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.5rem; }
.ort-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.ort-links-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    background: var(--bg-cream);
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.ort-links-list a:hover { background: var(--primary-navy); color: white; }
.ol-icon { display: flex; align-items: center; }
.ol-icon svg { width: 1rem; height: 1rem; stroke: var(--accent-gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ol-arrow { margin-left: auto; color: var(--accent-gold); }

/* ── 12  AUSFLUGSZIELE ── */
.ausflug-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.ausflug-card { background: var(--bg-white); overflow: hidden; transition: box-shadow 0.3s; }
.ausflug-card:hover { box-shadow: var(--shadow-lg); }
.ausflug-card-img { overflow: hidden; height: 220px; }
.ausflug-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.ausflug-card:hover .ausflug-card-img img { transform: scale(1.05); }
.ausflug-card-body { padding: 2rem; }
.dist-badge {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
}
.ausflug-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.ausflug-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.85; }

/* ── 13  LAGE & KARTE ── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.location-text h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 500;
}
.location-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.5rem; }

.distances { list-style: none; margin-bottom: 2rem; }
.distances li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
}
.distances li:last-child { border-bottom: none; }
.place { color: var(--primary-navy); font-weight: 500; }
.dist { color: var(--text-light); }

.map-wrap { height: 480px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── 14  FOOTER ── */
footer { background: var(--primary-dark); }

.footer-main { padding: 5rem 0 4rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: 0.85; }

.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-contacts a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--accent-gold); }
.fc-icon { font-size: 1rem; }

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 0.7rem; }
.footer-nav-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-nav-list a:hover { color: white; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); }

.footer-bar {
    padding: 1.5rem 0;
}
.footer-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bar p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

.footer-bar-links { display: flex; gap: 1.5rem; }
.footer-bar-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.footer-bar-links a:hover { color: white; }

/* ── 15  RESPONSIVE ── */
@media (max-width: 1024px) {
    .features          { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; }
    .ausflug-grid      { grid-template-columns: repeat(2, 1fr); }
    .ort-fakten        { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container         { padding: 0 1.2rem; }
    section h2         { font-size: 2rem; }

    /* Header */
    nav ul             { display: none; }
    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        gap: 0.5rem;
    }
    nav li             { border-bottom: 1px solid var(--border-light); padding: 0.6rem 0; }
    nav li:last-child  { border: none; }
    .mobile-menu-btn   { display: block; }
    .btn-nav           { display: none; }

    /* Hero */
    .hero h1           { font-size: 2.4rem; }

    /* Facts */
    .facts-grid        { grid-template-columns: repeat(2, 1fr); }

    /* Highlights */
    .features          { grid-template-columns: 1fr; }

    /* Split */
    .split             { grid-template-columns: 1fr; }
    .split-img         { min-height: 300px; }
    .split-text        { padding: 3rem 1.5rem; }

    /* Galerie */
    .gallery-grid      { grid-template-columns: 1fr 1fr; }
    .gallery-grid .g-wide { grid-column: span 1; }

    /* Video */
    .video-section-inner { grid-template-columns: 1fr; min-height: auto; }
    .video-wrap        { min-height: 280px; }
    .video-overlay     { background: linear-gradient(to bottom, rgba(26,45,61,0) 60%, var(--primary-dark) 100%); }
    .video-text        { padding: 3rem 1.5rem; }
    .video-text h2     { font-size: 1.9rem; }

    /* Ausstattung */
    .amenities-grid    { grid-template-columns: 1fr; }

    /* Ort */
    .ort-grid          { grid-template-columns: 1fr; }
    .ort-themen        { grid-template-columns: 1fr; gap: 2.5rem; }
    .ort-fakten        { grid-template-columns: repeat(2, 1fr); }

    /* Ausflugsziele */
    .ausflug-grid      { grid-template-columns: 1fr; }

    /* Lage */
    .location-grid     { grid-template-columns: 1fr; }
    .map-wrap          { height: 320px; }

    /* Footer */
    .footer-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-main       { padding: 3rem 0 2.5rem; }
    .footer-bar .container { flex-direction: column; gap: 0.8rem; text-align: center; }
    .footer-bar-links  { justify-content: center; }
}
