/* Reset & Baseline */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --tree-shade: #475949;
    --meadow: #85a176;
    --sunburst: #ffc43f;
    --glow: #f09b5c;
    --soil: #8b634b;
    --straw: #c7a075;
    --light-background: #fdfbf7;
    background-attachment: fixed
}

@font-face {
    font-family: 'GT Alpina';
    src: url('../fonts/GT-Alpina-Standard-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-v19-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-v19-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/ibm-plex-sans-v19-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #222;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'GT Alpina', serif;
    font-weight: 300;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

/*  HEADER      ***/

.site-header {
    padding: 1rem 0 0;
    background-color: var(--white);
}

.header-top {
    background: #eee;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-logo img {
    max-height: 60px;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.language-switcher img {
    width: 24px;
    height: auto;
}



/*  HERO Section    ***/
.hero-section {
    padding: 1rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 1rem;
    align-items: flex-start;
}

.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
}

.hero-right {
    background-color: var(--tree-shade);
}

.claim {
    font-family: 'GT Alpina', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.polaroid-stack {
    position: relative;
    height: 350px;
    margin-bottom: 2rem;
    overflow: hidden;
    max-width: 100%;
}

.polaroid {
    position: absolute;
    background: var(--white);
    padding: 8px;
    top: 40px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    transform: rotate(-4deg);
}

.slider {
    width: 100%;
    height: auto;
    display: block;
}

.pslider .slick-slide {
    display: flex !important;
    justify-content: center;
}

.slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.polaroid-0 {
    top: 0;
    left: 10px;
    z-index: 2;
    transform: rotate(-5deg);
    width: 100%;
    max-width: 375px;
}

.polaroid-1 {
    top: 5px;
    left: clamp(140px, 28vw, 290px);
    max-width: 375px;
    transform: rotate(6deg);
    z-index: 1;
}

.hero-left h3 {
    color:var(--tree-shade);
    font-weight:600;
}

.usp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.usp-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.usp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sunburst);
    font-weight: bold;
}

.hero-right h2 {
    font-family: 'GT Alpina', serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.1rem;
    line-height: 1.4;
    color: var(--white);
    padding: 1% 3%;
    text-align:center;
}

/* Formularelemente basic styling – kannst du bei Bedarf überschreiben */
.hero-right form {
    padding: 1.5rem;
    border-radius: 6px;
}

.gform_required_legend, fieldset legend {display:none!important;}

.hero-right label {
    color:var(--white);
    margin-bottom:2px!important;
    font-size: 15px!important;
    font-weight: 300!important;
}

.hero-right input:not([type="checkbox"]):not([type="radio"]),
.hero-right textarea,
.hero-right select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 8px;
}

.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 100px!important;
}

.hero-right input[type="submit"] {
    background: var(--sunburst);
    font-size: 1.1rem;
    color: var(--black);
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.hero-right input[type="submit"]:hover {
    background: var(--glow);
}

/*  REGION SECTION      ***/
.region-section {
    padding: 3rem 0;
    background-color: var(--light-background);
}

.region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.region-text h2 {
    font-family: 'GT Alpina', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--tree-shade);
}

.region-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-weight: bold;
}

.region-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-polaroid {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.section-polaroid .polaroid {
    background: var(--white);
    padding: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    max-width: 350px;
    width: 100%;
}

.section-polaroid img {
    display: block;
    width: 100%;
    height: auto;
}

/* Rotation */
.polaroid.rotated {
    transform: rotate(3deg);
}

.polaroid.rotated-left {
    transform: rotate(-3deg);
}

/*  HOFLINK Section     ***/
.conversion-alt {
    background-color: var(--meadow);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 1rem;
}

.alt-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.alt-link {
    display: inline;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    border-radius: 4px;
    padding: 0.75rem;
    border: 1px solid var(--white);
}

.alt-link:hover {
    color: var(--sunburst);
}

/*  KULINARIK Section       ***/
.kulinarik-section {
    padding: 3rem 0;
    color: var(--tree-shade);
}

.kulinarik-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.kulinarik-text h2 {
    font-family: 'GT Alpina', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.kulinarik-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/*  REVIEW Section      ***/
.reviews-section {
    padding: 3rem 0;
    background-color: var(--light-background);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.reviews-left h2 {
    font-size: 1.75rem;
    font-family: 'GT Alpina', serif;
    margin-bottom: 2rem;
}

.review-box {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.quote-symbol {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--sunburst);
}

.review-box p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.review-box strong {
    font-weight: bold;
    display: block;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/*  BRAND Section   ***/
.marke-service-section {
    margin: 3rem 0;
    padding: 0;
}

.marke-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100%;
    gap: 2rem;
}

.marke-box,
.service-box {
    display: flex;
    align-items: flex-start;;
    justify-content: center;
    padding: 3rem 2rem;
}

.marke-box {
    background-color: var(--tree-shade);
    color: var(--white);
}

.service-box {
    background-color: var(--meadow);
    color: var(--white);
}

.marke-box .inner,
.service-box .inner {
    max-width: 600px;
    width: 100%;
}

.marke-box h2,
.service-box h2 {
    font-size: 1.5rem;
    font-family: 'GT Alpina', serif;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--white);
    font-weight: bold;
    text-decoration: underline;
}
.marke-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--white);
    font-weight: bold;
    text-decoration: underline;
}

/*  HOWTO Section       ***/
.anleitung-section {
    padding: 4rem 0;
    background-color: var(--white);
    color: var(--tree-shade);
    text-align: center;
}

.anleitung-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'GT Alpina', serif;
}

.anleitung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

.anleitung-box {
    background-color: var(--meadow);
    color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.anleitung-box:hover {
    transform: translateY(-4px);
}

.anleitung-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--sunburst);
    font-family: 'GT Alpina', serif;
}

.anleitung-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* FOOTER */
.site-footer {
    background-color: #f5f5f5;
    color: #333;
    font-size: 0.9rem;
}

.footer-main {
    background-color:var(--tree-shade);
    color:var(--white);
    padding: 2rem 0;
}

.footer-main h4 {
    color:var(--sunburst);
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col.left {
    flex: 1 1 50%;
}

.footer-col.right {
    flex: 1 1 40%;
}

.uab-logo {
    max-height: 50px;
    margin-bottom: 1rem;
}

.google-rating img {
    max-height: 30px;
    margin-bottom: 1rem;
}

.footer-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-submenu li {
    margin-bottom: 0.5rem;
}

.footer-submenu a {
    color:var(--white);
    text-decoration: none;
}

.footer-bottom {
    padding: 1rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #333;
}

.right-logos img {
    margin-left: 1rem;
}

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(71, 89, 73, 0.95); /* --tree-shade mit Transparenz */
    padding: 0.75rem 1rem;
    text-align: center;
    z-index: 1000;
    display: none; /* wird via JS eingeblendet */
}

.floating-cta .cta-button {
    background-color: var(--sunburst);
    color: var(--black);
    padding: 0.75rem 1.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'IBM Plex Sans', sans-serif;
    cursor: pointer;
}

.floating-cta.hidden {
    display: none !important;
}

.footer-credits {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    background: #fafafa;
    margin-bottom:60px;
}

.footer-credits .heart {
    color: red;
}

/** Media Queries   ***/
@media screen and (max-width: 1280px) {
    /* 1280–1440px   MacBook Pro 13" – moderne Browser*/

    .footer-columns {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .floating-cta {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .polaroid-stack {
        position: relative;
        width: 100%;
        max-width: 96vw;
        height: auto;
        margin: 0 auto 2rem auto;
        overflow: visible;
    }

    .polaroid-0 {
        position: relative;
        width: 100%;
        max-width: 450px;
        transform: none;
        z-index: 2;
    }

    .polaroid-slider {
        width: 100%;
        max-width: 100%;
    }

    .polaroid-slider .slick-slide {
        justify-content: center;
    }

    .polaroid-1 {
        left: 45%;
        max-width: 360px;
        transform: rotate(5deg);
    }

    .usp-list {
        margin-top: 1rem;
    }

    .section-polaroid {
        display: flex;
        justify-content: center;
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 2rem 0;
        overflow: visible;
    }

    .section-polaroid .polaroid {
        max-width: 90%;
        width: 100%;
        height: auto;
        transform: none; /* Optional: Rotation entfernen auf kleinen Screens */
    }

    .section-polaroid img {
        width: 100%;
        height: auto;
        display: block;
    }
}


@media screen and (max-width: 768px) {
    /* Zwischenstufen / Breakpoints für Tablet & größere Smartphones*/

    .header-row {
        flex-direction: column;
        align-items: center;
    }

    .language-switcher {
        order: -1;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .header-logo {
        order: 0;
        margin-bottom: 0.5rem;
    }

    .header-logo img {
        max-height: 50px;
    }

    .hero-section {
        padding: 1rem 0 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-right {
        width: 94% !important;
    }

    .claim {
        margin: auto;
    }

    .hero-right form {
        padding: 1.2rem !important;
    }

    .hero-right input, .hero-right select, .hero-right textarea {
        width:98%!important;
    }

    .polaroid-stack {
        position: relative;
        width: 100%;
        max-width: 96vw;
        height: auto;
        overflow: visible;
        margin-bottom: 2rem;
    }

    .polaroid {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 8px;
        background: var(--white);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        border-radius: 4px;
    }

    .polaroid img {
        display: block;
        width: 100%;
        height: auto;
    }

    .polaroid-0 {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: none;
        margin: 0 auto;
        z-index: 2;
    }

    .polaroid-slider {
        width: 100% !important;
        max-width: 100%;
        overflow: hidden;
    }

    .polaroid-slider .slick-slide {
        display: flex !important;
        justify-content: center;
    }

    .polaroid-slider img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
    }

    .polaroid-1 {
        z-index: 2;
        display: none;
    }

    .usp-list {
        margin-top: 1rem;
    }

    .region-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .region-image .rotated {
        transform: rotate(2deg);
    }

    .region-image {
        justify-content: center;
        margin-top: 1rem;
    }

    .region-image .polaroid {
        transform: rotate(1.5deg);
    }

    .kulinarik-grid {
        grid-template-columns: 1fr;
    }

    .kulinarik-image {
        margin-bottom: 1.5rem;
    }

    .kulinarik-image .rotated-left {
        transform: rotate(-1.5deg);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-right {
        margin-top: 2rem;
    }

    .reviews-right .polaroid {
        transform: rotate(2deg);
    }

    .marke-service-grid {
        grid-template-columns: 1fr;
    }

    .marke-box,
    .service-box {
        padding: 2rem 1.5rem;
    }

    .anleitung-grid {
        grid-template-columns: 1fr;
    }

    .anleitung-box {
        padding: 1.5rem 1.25rem;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .right-logos {
        max-width:98vw!important;
        overflow:hidden;
    }
}

@media screen and (max-width: 400px) {
    /* 375 x 812    iPhone 12 Mini (Safari) */
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .main-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-columns {
        flex-direction: column;
    }

    /* Weitere mobile Anpassungen hier … */
}



