/* =========================
   1. Grundlayout & Reset
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 125%;
    overflow-y: scroll;
}


body {
    font-family: "Maiandra GD", "Tempus Sans ITC", serif;
    background-color: #f4f1ec;
    color: #2b2b2b;
    line-height: 1.6;
}

img {
    max-width: 100%;
height: auto;
    display: block;
}

section {
    padding: 4rem 6%;
}


/* =========================
   2. Header & Navigation
========================= */

.site-header {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6%;

    background-color: #3a2f28;
    color: #f4f1ec;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
}

.logo-text span {
    line-height: 1.2;
    display: block;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    white-space: nowrap;

}

.main-nav a {
    text-decoration: none;
    color: #f4f1ec;
    font-size: 0.95rem;
}

.main-nav a:hover {
    text-decoration: underline;
}

.content {
    padding-top: 170px;
}


/* =========================
   3. Hero / Willkommen
========================= */
.hero {
    margin-top: 6.5rem;
    min-height: 80vh;
    max-height: 80vh;
    border-radius: 6px;
    overflow: hidden;
    padding: 0; 

    background-image: url("../images/banner.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}


.hero-text {
    max-width: 790px;
    background-color: rgba(58, 47, 40, 0.75);
    color: #f4f1ec;
    padding: 1.5rem;
    margin-bottom: 2rem;
    
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.05rem;
}


/* =========================
   4. Lieblingsstücke
========================= */

.favorites h2 {
    margin-bottom: 2rem;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.favorite-item {
    background-color: #ffffff;
    padding: 1rem;
}

.favorite-info {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}


/* =========================
   5. Quiz Box
========================= */

.quiz-box { 
    background-color: #e6dfd6;
}

.quiz-link {
    text-decoration: none;
    color: inherit;
}

.quiz-content {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.quiz-content img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
}

figcaption {
	font-style: italic;
	font-size: 75%;
}



.quiz-text h2 {
    margin-bottom: 0.7rem;
font-size: 1.9rem;
}

.quiz-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quiz-text .btn {
    margin-top: auto;      /* drückt den Button nach unten */
    align-self: flex-end;  /* rechtsbündig */
}

@media (max-width: 900px) {
    .quiz-text .btn {
        align-self: flex-start;
        margin-top: 1rem;
    }
    .quiz-content {
        flex-direction: column;
        align-items: center;
    }

    .quiz-content img {
        max-width: 100%;
    }
}



/* =========================
   6. Teaser (Werkstatt, etc.)
========================= */

.teaser {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.teaser.reverse {
    flex-direction: row-reverse;
}

.teaser-text h2 {
    font-size: 1.9rem;
    margin-bottom: 0.7rem;

}

.teaser-text {
    max-width: 720px;          /* feste, ruhige Textbreite */
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid #3a2f28;
    text-decoration: none;
    color: #3a2f28;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #3a2f28;
    color: #f4f1ec;
}


/* =========================
   7. Rezensionen
========================= */

.reviews {
    background-color: #ffffff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

blockquote {
    font-style: italic;
    border-left: 3px solid #3a2f28;
    padding-left: 1rem;
}


/* =========================
   8. Kontakt
========================= */

.contact-section {
    background-color: #e6dfd6;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
}

.contact-form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.4rem;
    margin-top: 0.3rem;
    border: 1px solid #999;
    font-family: inherit;
}

.contact-form button {
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background-color: #3a2f28;
    color: #f4f1ec;
    border: none;
    cursor: pointer;
}

.contact-info iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.address {
    margin-top: 1rem;
}

.address a {
    text-decoration: none;
    color: #3a2f28;
}

.instagram a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3a2f28;
    text-decoration: none;
}

.instagram svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.instagram a:hover {
    text-decoration: underline;
}


/* ===================
 9. Impressum 
====================== */
.impressum {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.impressum h1 {
    margin-bottom: 2rem;
}

.impressum h2 {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.impressum p {
    margin-bottom: 1rem;
}



/* =========================
   Aktuelles – Platzhalter
========================= */

.content {
    text-align: center;
}

/* Überschrift */
.content h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Party-Bild */
.party-image {
    max-width: 1000px;
    margin: 0 auto;
}

.party-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================
   Responsive Anpassung
========================= */

@media (max-width: 768px) {

    .content h1 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .party-image {
        max-width: 90%;
    }
}





/* =========================
   werkstatt Rundtour
========================= */

.rundtour {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.rundtour-beschreibung {
    flex: 1;
}

.rundtour-video {
    flex: 1;
}

.rundtour-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .rundtour {
        flex-direction: column;
    }
}


/* =========================
   Werkstatt – Detailbereiche
========================= */

.werkstatt-detail {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Allgemeine Zeile */
.detail-row {
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* 3-spaltige Variante */
.detail-row.three-col {
    align-items: stretch;
}

/* Bilder */
.detail-image {
    flex: 1;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Text */
.detail-text {
    flex: 1;
}

.detail-text h2 {
    margin-bottom: 0.7rem;
}

.detail-text p {
    font-size: 0.95rem;
}

/* Zentrierter Mitteltext */
.center-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* =========================
   Seiten-Überschrift – Werkstatt & Produkte
========================= */

.page-werkstatt .content > h1,
.page-produkte .content > h1 {
    color: #5a4a42;       /* etwas heller als Standard */
    font-size: 2.2rem;   /* subtil größer */
    margin-top: 1.3rem;  /* weiter nach unten */
    margin-bottom: 2.5rem;
    font-weight: 500;    /* ruhiger, weniger dominant */
}


/* =========================
   Seiten-Banner (Werkstatt & Produkte)
========================= */

.page-banner .rundtour {
    display: flex;
    align-items: center;
    gap: 8rem;
}



.page-banner .rundtour-beschreibung {
    flex: 0 0 55%;
}

.page-banner .rundtour-video {
    flex: 0 0 40%;
}

.page-banner {
    background-color: #e6dfd6;
    width: 100%;
    padding: 2rem 0;
}

.banner-inner {
    padding: 0 6%;
}


/* Innencontainer – gleiche Breite wie Sections */
.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
}

/* Optional: etwas Luft für Video/Text */
.page-banner .rundtour,
.page-banner .produkt-row {
    margin: 0;
}



/* =========================
   Responsive Anpassung
========================= */

@media (max-width: 900px) {

    .detail-row,
    .detail-row.three-col {
        flex-direction: column;
        text-align: left;
    }

    .center-text {
        text-align: left;
    }
}


/* =========================
   Rundtour-oben
========================= */

.rundtour-oben {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.rundtour-oben-beschreibung {
    flex: 1;
}

.rundtour-oben-video {
    flex: 1;
}

.rundtour-oben-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .rundtour-oben {
        flex-direction: column;
    }
}


/* =========================
   Produkte – Kulis & Schalen
========================= */

.produkte {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Überschrift */
.produkte-ueberschrift {
    text-align: center;
    margin-bottom: 2rem;
}

/* Zeilenlayout */
.produkt-row {
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Umgekehrte Reihenfolge */
.produkt-row.reverse {
    flex-direction: row-reverse;
}

/* Bilder */
.produkt-bild {
    flex: 1;
}

.produkt-bild img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Text */
.produkt-text {
    flex: 1;
}

.produkt-text h2 {
    margin-bottom: 0.6rem;
}

.produkt-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

    .produkt-row,
    .produkt-row.reverse {
        flex-direction: column;
    }

    .produkte-ueberschrift {
        font-size: 1.7rem;
    }
}


/* =========================
   9. Footer
========================= */

.site-footer {
    background-color: #3a2f28;
    color: #f4f1ec;
    padding: 1rem 6%;
    font-size: 0.85rem;
}

.site-footer a {
    color: #f4f1ec;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* Abstand zwischen ©, Impressum, Datenschutz */
    flex-wrap: wrap;
}



/* =========================
   10. Responsive
========================= */

@media (max-width: 900px) {

    .favorites-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .teaser,
    .quiz-content,
    .contact-wrapper {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    /* FIX-HEADER: Mobile-Anpassung */
    .site-header {
        height: 140px;
    }

    .content {
        padding-top: 140px;
    }
}

@media (max-width: 900px) {

    .site-header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
        height: auto;
    }

    .logo {
        justify-content: center;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .main-nav a {
        font-size: 0.9rem;
    }
}

