/* ===========================
   Gemeinsame Seitenbausteine
   Stand: Sprint 7.0
=========================== */

/*
   Diese Datei bleibt bewusst klein.
   Seitenspezifische Styles liegen jetzt in:
   assets/css/pages/
*/


/* ===========================
   Standardseiten / Reserve
=========================== */

.page-main {
    padding: 100px 0;
    background: var(--cream);
}

.page-content {
    width: min(960px, 92%);
    margin: auto;
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 70px;
    box-shadow: var(--shadow-soft);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: clamp(42px, 6vw, 64px);
    color: var(--primary);
    margin: 15px 0 0;
}

.page-body {
    font-size: 21px;
    line-height: 1.8;
    color: var(--text);
}

.page-body h2,
.page-body h3 {
    color: var(--primary);
    margin-top: 45px;
}

.page-body a {
    color: var(--accent);
    font-weight: 700;
}

.page-body img {
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}


/* ===========================
   Unterseiten-Hero
   Wird z. B. von Speisen und Galerie genutzt
=========================== */

.subpage-hero {
    padding: 120px 0 90px;
    text-align: center;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
}

.subpage-hero h1 {
    max-width: 900px;
    margin: 20px auto;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.12;
    color: var(--primary);
}

.subpage-hero p {
    max-width: 760px;
    margin: auto;
    font-size: 22px;
    line-height: 1.7;
    color: var(--accent);
}


/* ===========================
   Videos Startseite
   Noch Reserve, bis die Freigabe da ist
=========================== */

.video-section {
    padding: 110px 0;
    background: var(--cream-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.video-section h2 {
    font-size: clamp(42px, 6vw, 64px);
    color: var(--primary);
    margin: 20px 0 25px;
}

.video-section-intro {
    max-width: 760px;
    margin: 0 auto 60px;
    font-size: 22px;
    line-height: 1.7;
    color: var(--accent);
}

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

.video-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.video-card video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    background: var(--primary);
}

.video-credit {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--accent);
}
