/*
Theme Name: Heilpraktiker Clobes
Theme URI: https://heilpraktiker-clobes.de/
Author: Heilpraktiker Clobes
Description: Individuelles WordPress-Theme für Heilpraktiker Clobes.
Version: 1.2.0
Text Domain: heilpraktiker-clobes
*/

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html {
    scroll-behavior:smooth;
}



body {

    font-family:"Segoe UI", Arial, sans-serif;

    color:#1b2b3a;

    background:#f4f7fa;

    line-height:1.8;

    font-size:18px;

}



:root {

    --marine:#102f52;

    --marine-light:#1d4b78;

    --gold:#c8a45d;

    --white:#ffffff;

    --text:#435465;

    --light:#eef3f7;

}



/* =========================
   HEADER
========================= */


.header {

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    background:rgba(16,47,82,0.92);

    backdrop-filter:blur(15px);

    z-index:1000;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

}



.logo-area {

    display:flex;

    align-items:center;

    gap:20px;

}



.logo-area img {

    width:75px;

    height:75px;

    object-fit:contain;

}



.logo-text {

    color:white;

    font-size:36px;

    font-weight:700;

    letter-spacing:2px;

}



/* =========================
   NAVIGATION
========================= */


nav {

    display:flex;

    gap:45px;

}



nav a {

    color:white;

    text-decoration:none;

    font-size:22px;

    font-weight:600;

    position:relative;

    transition:.3s;

}



nav a::after {

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    height:2px;

    width:0;

    background:var(--gold);

    transition:.3s;

}



nav a:hover {

    color:var(--gold);

}



nav a:hover::after {

    width:100%;

}



/* =========================
   HERO
========================= */


.hero {

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    padding:150px 8% 80px;

    background-image:

    url("images/blumenwiese.jpg");

    background-size:cover;

    background-position:center;

}



.hero-overlay {

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        120deg,

        rgba(16,47,82,.85),

        rgba(16,47,82,.45)

    );

}



.hero-content {

    position:relative;

    max-width:750px;

    color:white;

    animation:fadeUp 1s ease;

}



.hero-label {

    color:var(--gold);

    font-size:16px;

    letter-spacing:4px;

    margin-bottom:25px;

    font-weight:700;

}



.hero-content h1 {

    font-size:82px;

    line-height:1.1;

    font-weight:300;

    margin-bottom:30px;

}



.hero-text {

    font-size:27px;

    max-width:650px;

    line-height:1.7;

    color:#f1f5f8;

}
/* =========================
   BUTTONS
========================= */


.hero-buttons {

    display:flex;

    gap:20px;

    margin-top:45px;

}



.btn-primary,
.btn-secondary {

    display:inline-block;

    padding:17px 40px;

    border-radius:40px;

    text-decoration:none;

    transition:.35s;

    font-weight:700;

    font-size:18px;

}


.btn-primary {

    background:var(--gold);

    color:white;

}



.btn-primary:hover {

    transform:translateY(-5px);

    background:white;

    color:var(--marine);

}



.btn-secondary {

    border:2px solid white;

    color:white;

}



.btn-secondary:hover {

    background:white;

    color:var(--marine);

}



/* =========================
   INTRO BEREICH
========================= */


.intro {

    background:white;

    padding:120px 10%;

    text-align:center;

}



.section-title span {

    color:var(--gold);

    font-size:15px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:700;

}



.section-title h2 {

    color:var(--marine);

    font-size:52px;

    font-weight:400;

    margin-top:15px;

    margin-bottom:40px;

}



.intro p {

    max-width:900px;

    margin:auto;

    color:var(--text);

    font-size:22px;

    line-height:1.9;

}



/* =========================
   ABOUT STARTSEITE
========================= */


.about-home {

    display:flex;

    align-items:center;

    gap:80px;

    padding:100px 8%;

    margin:80px auto;

    max-width:1300px;

    border-radius:30px;

    background:

    linear-gradient(

        135deg,

        #102f52,

        #1d4b78

    );

    box-shadow:

    0 25px 60px rgba(16,47,82,.25);

}



.about-image {

    flex:1;

}



.about-image img {

    width:100%;

    border-radius:25px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.35);

}



.about-content {

    flex:1;

}



.about-content span {

    color:var(--gold);

    font-size:15px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:700;

}



.about-content h2 {

    color:white;

    font-size:52px;

    font-weight:400;

    margin:20px 0 30px;

}



.about-content p {

    color:#eef3f7;

    font-size:22px;

    line-height:1.9;

    margin-bottom:35px;

}



/* =========================
   ABOUT HIGHLIGHTS
========================= */


.about-highlights {

    display:flex;

    gap:20px;

    margin-bottom:40px;

}



.highlight {

    flex:1;

    background:

    rgba(255,255,255,.12);

    padding:22px;

    border-radius:20px;

    backdrop-filter:blur(8px);

}



.highlight strong {

    display:block;

    color:white;

    font-size:20px;

    margin-bottom:10px;

}



.highlight span {

    color:#dceaf5;

    font-size:16px;

    line-height:1.6;

}



.about-content .btn-primary {

    background:var(--gold);

    color:white;

}



.about-content .btn-primary:hover {

    background:white;

    color:var(--marine);

}
/* =========================
   FOOTER
========================= */


footer {

    background:

    linear-gradient(
        90deg,
        #020b16 0%,
        #102f52 45%,
        #1d4b78 100%
    );

    color:white;

    text-align:center;

    padding:100px 8% 60px;

    width:100%;

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}



footer::before {

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:#c8a45d;

}



footer h3 {

    color:white;

    font-size:42px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}



footer p {

    color:#e5edf5;

    font-size:20px;

    margin-top:12px;

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


@media(max-width:1000px){


.header {

    padding:20px 5%;

}



.hero-content h1 {

    font-size:60px;

}



.about-home {

    flex-direction:column;

    margin:50px 5%;

}



.about-highlights {

    flex-direction:column;

}


}





@media(max-width:700px){


.header {

    position:relative;

    height:auto;

    flex-direction:column;

    gap:20px;

}



nav {

    flex-wrap:wrap;

    justify-content:center;

}



.logo-text {

    font-size:28px;

}



.hero {

    padding:100px 6%;

}



.hero-content h1 {

    font-size:44px;

}



.hero-text {

    font-size:20px;

}



.hero-buttons {

    flex-direction:column;

}



.btn-primary,
.btn-secondary {

    text-align:center;

}



.section-title h2 {

    font-size:38px;

}



.about-content h2 {

    font-size:38px;

}



.about-content p {

    font-size:19px;

}


}

/* =========================
   LEISTUNGEN SEITE
========================= */


.page-hero {

    min-height:55vh;

    display:flex;

    align-items:center;

    padding:160px 8% 80px;

    position:relative;

    background:

    linear-gradient(
        135deg,
        #061525,
        #102f52,
        #1d4b78
    );

    color:white;

}



.page-hero-content {

    max-width:850px;

}



.page-hero-content span {

    color:var(--gold);

    font-size:16px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:700;

}



.page-hero-content h1 {

    font-size:70px;

    font-weight:300;

    line-height:1.2;

    margin:25px 0;

}



.page-hero-content p {

    font-size:25px;

    color:#e8eef5;

    max-width:700px;

}





/* =========================
   LEISTUNGSBEREICH
========================= */


.leistungen {

    background:#f4f7fa;

    padding:100px 8%;

}



.leistung-card {

    max-width:1000px;

    margin:auto;

    background:white;

    padding:70px;

    border-radius:30px;

    box-shadow:

    0 25px 60px rgba(16,47,82,.12);

}



.leistung-card h2 {

    color:var(--marine);

    font-size:48px;

    font-weight:400;

    margin-bottom:35px;

}



.leistung-card h3 {

    color:var(--marine);

    font-size:32px;

    margin-top:55px;

    margin-bottom:20px;

}



.leistung-card p {

    color:var(--text);

    font-size:18px;

    line-height:1.8;

    margin-bottom:25px;

}



.leistung-card ul {

    margin:25px 0 35px 30px;

}



.leistung-card li {

    color:var(--text);

    font-size:18px;

    margin-bottom:12px;

}





@media(max-width:700px){


.page-hero-content h1 {

    font-size:45px;

}



.page-hero-content p {

    font-size:20px;

}



.leistung-card {

    padding:35px 25px;

}



.leistung-card h2 {

    font-size:36px;

}



.leistung-card h3 {

    font-size:27px;

}



.leistung-card p {

    font-size:18px;

}


}
/* =========================
   STANDARD FOOTER
========================= */


footer {

    background:

    linear-gradient(
        135deg,
        #061525,
        #102f52,
        #1d4b78
    );

    color:white;

    text-align:center;

    padding:80px 8% 40px;

    width:100%;

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}



footer::before {

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#c8a45d;

}



footer h3 {

    color:white;

    font-size:42px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;

}



footer p {

    color:#dce5ef;

    font-size:19px;

    margin-top:12px;

}

/* =========================
   ÜBER UNS
========================= */

.about-page-intro {

    min-height:55vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:160px 8% 80px;

    background:
    linear-gradient(
        135deg,
        #061525,
        #102f52,
        #1d4b78
    );

    color:white;

}

.page-label {

    color:var(--gold);

    font-size:16px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-page-intro h1 {

    font-size:70px;

    font-weight:300;

    line-height:1.2;

    margin-bottom:30px;

}

.about-page-intro p {

    max-width:700px;

    font-size:24px;

    color:#e8eef5;

    line-height:1.8;

}



/* =========================
   INHALT
========================= */

.about-page-content {

    display:flex;

    align-items:center;

    gap:70px;

    max-width:1400px;

    margin:100px auto;

    padding:0 8%;

}

.about-page-image {

    flex:1;

}

.about-page-image img {

    width:100%;

    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(16,47,82,.18);

}

.about-page-text {

    flex:1.2;

}

.about-page-text h2 {

    color:var(--marine);

    font-size:48px;

    font-weight:400;

    margin-bottom:35px;

}

.about-page-text p {

    color:var(--text);

    font-size:18px;

    line-height:1.9;

    margin-bottom:25px;

}



/* =========================
   WERTE
========================= */

.about-values {

    max-width:1200px;

    margin:100px auto;

    padding:80px;

    background:white;

    border-radius:30px;

    box-shadow:
    0 20px 55px rgba(16,47,82,.10);

}

.about-values h2 {

    color:var(--marine);

    text-align:center;

    font-size:48px;

    font-weight:400;

    margin-bottom:60px;

}

.values-text h3 {

    color:var(--gold);

    font-size:28px;

    margin-top:35px;

    margin-bottom:15px;

    padding-bottom:12px;

    border-bottom:2px solid #e7edf4;

}

.values-text p {

    color:var(--text);

    font-size:18px;

    line-height:1.9;

}



/* =========================
   ZURÜCK BUTTON
========================= */

.back-button{

    display:none;

}



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

@media(max-width:900px){

.about-page-content{

    flex-direction:column;

}

.about-page-intro h1{

    font-size:46px;

}

.about-page-intro p{

    font-size:20px;

}

.about-page-text h2{

    font-size:36px;

}

.about-values{

    padding:40px 25px;

}

.about-values h2{

    font-size:36px;

}

}

/* =========================
   INTERVIEWS
========================= */

.interviews {

    background:#f4f7fa;

    padding:110px 8%;

}


/* =========================
   VIDEO RASTER
========================= */

.video-grid {

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:45px;

    align-items:start;

}


/* =========================
   VIDEO KARTEN
========================= */

.video-card {

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(16,47,82,.12);

    border:2px solid transparent;

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}


.video-card:hover {

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:
    0 30px 70px rgba(16,47,82,.20);

}


/* =========================
   VIDEOS
========================= */

.video-card video {

    width:100%;

    aspect-ratio:16 / 9;

    display:block;

    object-fit:cover;

    background:#061525;

}


/* =========================
   TITEL
========================= */

.video-card h3 {

    color:var(--marine);

    font-size:28px;

    font-weight:600;

    line-height:1.35;

    padding:28px 32px 10px;

}


/* =========================
   BESCHREIBUNG
========================= */

.video-card p {

    color:var(--text);

    font-size:18px;

    line-height:1.8;

    padding:0 32px 32px;

}


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

@media(max-width:900px) {

    .interviews {

        padding:70px 6%;

    }


    .video-grid {

        grid-template-columns:1fr;

        gap:30px;

    }


    .video-card h3 {

        font-size:25px;

        padding:25px 25px 10px;

    }


    .video-card p {

        font-size:17px;

        padding:0 25px 28px;

    }

}
/* =========================
   TESLA-OSZILLATOR
========================= */


.tesla-product {

    max-width:1400px;

    margin:100px auto;

    padding:0 8%;

    display:flex;

    align-items:center;

    gap:80px;

}



.tesla-product-image {

    flex:1.1;

}



.tesla-product-image img {

    width:100%;

    display:block;

    border-radius:28px;

    box-shadow:
    0 25px 60px rgba(16,47,82,.14);

}



.tesla-product-content {

    flex:1;

}



.tesla-label {

    color:var(--gold);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}



.tesla-product-content h2 {

    color:var(--marine);

    font-size:48px;

    font-weight:400;

    line-height:1.25;

    margin:20px 0 30px;

}



.tesla-product-content p {

    color:var(--text);

    font-size:18px;

    line-height:1.9;

    margin-bottom:24px;

}



.tesla-product-content .btn-primary {

    margin-top:15px;

}



/* =========================
   TESLA INFO
========================= */


.tesla-info {

    background:white;

    padding:100px 8%;

}



.tesla-info-inner {

    max-width:1000px;

    margin:auto;

    text-align:center;

}



.tesla-info span {

    color:var(--gold);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}



.tesla-info h2 {

    color:var(--marine);

    font-size:48px;

    font-weight:400;

    margin:15px 0 35px;

}



.tesla-info p {

    color:var(--text);

    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

}



/* =========================
   TESLA VIDEO
========================= */


.tesla-video-section {

    padding:110px 8%;

    background:#f4f7fa;

}



.tesla-video-heading {

    max-width:900px;

    margin:0 auto 55px;

    text-align:center;

}



.tesla-video-heading span {

    color:var(--gold);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}



.tesla-video-heading h2 {

    color:var(--marine);

    font-size:48px;

    font-weight:400;

    margin:15px 0 25px;

}



.tesla-video-heading p {

    color:var(--text);

    font-size:18px;

    line-height:1.8;

}



.tesla-video-card {

    max-width:1000px;

    margin:auto;

    background:white;

    padding:20px;

    border-radius:28px;

    box-shadow:
    0 25px 60px rgba(16,47,82,.13);

}



.tesla-video-card video {

    width:100%;

    display:block;

    aspect-ratio:16 / 9;

    background:#061525;

    border-radius:18px;

}



/* =========================
   TESLA HINWEIS
========================= */


.tesla-note {

    padding:80px 8%;

    background:white;

}



.tesla-note-inner {

    max-width:1000px;

    margin:auto;

    padding:45px 50px;

    border-left:5px solid var(--gold);

    background:#f4f7fa;

    border-radius:0 20px 20px 0;

}



.tesla-note h2 {

    color:var(--marine);

    font-size:30px;

    margin-bottom:15px;

}



.tesla-note p {

    color:var(--text);

    font-size:17px;

    line-height:1.8;

}



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


@media(max-width:900px) {

    .tesla-product {

        flex-direction:column;

        gap:45px;

    }


    .tesla-product-content h2,
    .tesla-info h2,
    .tesla-video-heading h2 {

        font-size:38px;

    }


    .tesla-note-inner {

        padding:30px;

    }

}
/* =========================
   KONTAKT
========================= */


.contact-section {

    max-width:1400px;

    margin:100px auto;

    padding:0 8%;

    display:grid;

    grid-template-columns:0.8fr 1.2fr;

    gap:80px;

    align-items:start;

}



.contact-intro span {

    color:var(--gold);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}



.contact-intro h2 {

    color:var(--marine);

    font-size:48px;

    font-weight:400;

    line-height:1.25;

    margin:18px 0 30px;

}



.contact-intro p {

    color:var(--text);

    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

}



.contact-hint {

    margin-top:35px;

    padding:22px 25px;

    background:#eef3f7;

    border-left:4px solid var(--gold);

    border-radius:0 14px 14px 0;

    font-size:16px !important;

}



/* =========================
   FORMULAR BOX
========================= */


.contact-form-box {

    background:white;

    padding:55px;

    border-radius:28px;

    box-shadow:
    0 25px 60px rgba(16,47,82,.13);

}



.contact-form {

    width:100%;

}



.form-row {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}



.form-group {

    margin-bottom:26px;

}



.form-group label {

    display:block;

    color:var(--marine);

    font-size:17px;

    font-weight:600;

    margin-bottom:9px;

}



.optional {

    color:#7c8996;

    font-size:14px;

    font-weight:400;

}



.form-group input,
.form-group select,
.form-group textarea {

    width:100%;

    padding:16px 18px;

    border:1px solid #cbd5df;

    border-radius:12px;

    background:#f9fbfc;

    color:#1b2b3a;

    font-family:inherit;

    font-size:17px;

    transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;

}



.form-group textarea {

    resize:vertical;

    min-height:180px;

}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline:none;

    border-color:var(--gold);

    background:white;

    box-shadow:
    0 0 0 4px rgba(200,164,93,.13);

}



/* =========================
   DATENSCHUTZ
========================= */


.privacy-check {

    display:flex;

    align-items:flex-start;

    gap:13px;

    margin:5px 0 32px;

}



.privacy-check input {

    margin-top:6px;

    width:18px;

    height:18px;

    accent-color:var(--marine);

    flex-shrink:0;

}



.privacy-check label {

    color:var(--text);

    font-size:15px;

    line-height:1.7;

}



/* =========================
   ABSENDEN
========================= */


.contact-submit {

    display:inline-block;

    padding:19px 48px;

    border:none;

    border-radius:40px;

    background:var(--gold);

    color:white;

    font-family:inherit;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}



.contact-submit:hover {

    transform:translateY(-4px);

    background:var(--marine);

    box-shadow:
    0 12px 28px rgba(16,47,82,.20);

}



/* Honeypot für normale Besucher unsichtbar */

.form-honeypot {

    position:absolute !important;

    left:-9999px !important;

    opacity:0 !important;

    pointer-events:none !important;

}



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


@media(max-width:900px) {

    .contact-section {

        grid-template-columns:1fr;

        gap:45px;

        margin:70px auto;

    }


    .contact-form-box {

        padding:35px 25px;

    }


    .form-row {

        grid-template-columns:1fr;

        gap:0;

    }


    .contact-intro h2 {

        font-size:38px;

    }


    .contact-submit {

        width:100%;

        text-align:center;

    }

}
.footer-links {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

}


.footer-links a {

    color:#e5edf5;

    text-decoration:none;

    transition:.3s;

}


.footer-links a:hover {

    color:var(--gold);

}


.privacy-check a {

    color:var(--marine);

    font-weight:600;

    text-decoration:underline;

}


.privacy-check a:hover {

    color:var(--gold);

}
/* =========================
   DATENSCHUTZ
========================= */


.privacy-page {

    background:#f4f7fa;

    padding:100px 8%;

}


.privacy-content {

    max-width:1100px;

    margin:auto;

    background:white;

    padding:70px;

    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(16,47,82,.10);

}


.privacy-content h2 {

    color:var(--marine);

    font-size:34px;

    font-weight:500;

    margin-top:55px;

    margin-bottom:20px;

}


.privacy-content h2:first-child {

    margin-top:0;

}


.privacy-content p {

    color:var(--text);

    font-size:18px;

    line-height:1.9;

    margin-bottom:22px;

}


.privacy-content ul {

    margin:20px 0 30px 30px;

}


.privacy-content li {

    color:var(--text);

    font-size:18px;

    margin-bottom:10px;

}


.privacy-content a {

    color:var(--marine);

    font-weight:600;

    text-decoration:underline;

    transition:.3s;

}


.privacy-content a:hover {

    color:var(--gold);

}


.privacy-address {

    padding:25px 30px;

    background:#eef3f7;

    border-left:4px solid var(--gold);

    border-radius:0 15px 15px 0;

}


.privacy-placeholder {

    padding:22px 25px;

    background:#fff8e9;

    border-left:4px solid var(--gold);

    border-radius:0 15px 15px 0;

}



@media(max-width:700px) {

    .privacy-page {

        padding:60px 6%;

    }


    .privacy-content {

        padding:35px 25px;

    }


    .privacy-content h2 {

        font-size:28px;

    }


    .privacy-content p,
    .privacy-content li {

        font-size:17px;

    }

}
.footer-links {

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

}

.footer-links a {

    color:#e5edf5;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover {

    color:var(--gold);

}

/* ==================================================
   WORDPRESS / FINAL OVERRIDES
   ================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(16,47,82,0.92);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.logo-area { display:flex; align-items:center; gap:18px; flex-shrink:0; }
.logo-area img { width:70px; height:70px; object-fit:contain; }
.logo-text { color:white; font-size:32px; font-weight:700; letter-spacing:2px; white-space:nowrap; }
.header nav { display:flex; align-items:center; gap:30px; flex-wrap:nowrap; }
.header nav a { color:white; text-decoration:none; font-size:20px; font-weight:600; position:relative; transition:.3s; white-space:nowrap; }

.hero {
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:150px 8% 80px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}
.hero-overlay { position:absolute; inset:0; background:linear-gradient(120deg,rgba(16,47,82,.85),rgba(16,47,82,.45)); z-index:1; }
.hero-content { position:relative; z-index:2; max-width:750px; color:white; }
.hero-label { color:var(--gold); font-size:16px; letter-spacing:4px; margin-bottom:25px; font-weight:700; text-transform:uppercase; }
.hero-content h1 { color:white; font-size:82px; line-height:1.1; font-weight:300; margin-bottom:30px; }
.hero-text { color:#f1f5f8; font-size:27px; max-width:650px; line-height:1.7; }
.hero-buttons { display:flex; gap:20px; margin-top:45px; }
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary { display:inline-block; padding:17px 40px; border-radius:40px; text-decoration:none; font-weight:700; font-size:18px; transition:.35s; }
.hero-buttons .btn-primary { background:var(--gold); color:white; }
.hero-buttons .btn-primary:hover { transform:translateY(-5px); background:white; color:var(--marine); }
.hero-buttons .btn-secondary { border:2px solid white; color:white; background:transparent; }
.hero-buttons .btn-secondary:hover { background:white; color:var(--marine); }
.intro { background:white; padding:120px 10%; text-align:center; }
.intro .section-title span { color:var(--gold); font-size:15px; letter-spacing:4px; text-transform:uppercase; font-weight:700; }
.intro .section-title h2 { color:var(--marine); font-size:52px; font-weight:400; margin-top:15px; margin-bottom:40px; }
.intro > p { max-width:900px; margin:auto; color:var(--text); font-size:22px; line-height:1.9; }

@media(max-width:1450px) {
    .header { padding:0 3%; }
    .logo-text { font-size:27px; }
    .header nav { gap:18px; }
    .header nav a { font-size:17px; }
}

@media(max-width:900px) {
    .header { height:auto; min-height:100px; padding:15px 5%; align-items:flex-start; gap:14px; }
    .logo-area img { width:58px; height:58px; }
    .logo-text { font-size:24px; }
    .header nav { gap:10px 18px; flex-wrap:wrap; justify-content:flex-end; }
    .header nav a { font-size:16px; }
}

@media(max-width:700px) {
    .header { position:relative; flex-direction:column; align-items:center; }
    .header nav { justify-content:center; }
    .hero { min-height:85vh; padding:100px 6% 70px; }
    .hero-content h1 { font-size:44px; }
    .hero-text { font-size:20px; }
    .hero-buttons { flex-direction:column; align-items:flex-start; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { text-align:center; }
    .intro { padding:80px 6%; }
    .intro .section-title h2 { font-size:38px; }
    .intro > p { font-size:19px; }
}


/* =========================
   GUTSCHEINE / LAVITA
========================= */

.voucher-section {
    background:#ffffff;
    padding:110px 8%;
}

.voucher-inner {
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:70px;
    align-items:center;
}

.voucher-image {
    background:#f7f8fa;
    border-radius:28px;
    padding:24px;
    box-shadow:0 25px 60px rgba(16,47,82,.12);
}

.voucher-image img {
    display:block;
    width:100%;
    height:auto;
    border-radius:18px;
}

.voucher-content > span {
    color:var(--gold);
    font-size:15px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:700;
}

.voucher-content h2 {
    color:var(--marine);
    font-size:48px;
    line-height:1.2;
    font-weight:400;
    margin:18px 0 28px;
}

.voucher-content p {
    color:var(--text);
    font-size:20px;
    line-height:1.9;
    margin-bottom:24px;
}

.voucher-content .btn-primary {
    margin-top:12px;
}

.voucher-note {
    background:#eef3f7;
    padding:70px 8%;
    text-align:center;
}

.voucher-note-inner {
    max-width:900px;
    margin:auto;
}

.voucher-note h2 {
    color:var(--marine);
    font-size:36px;
    font-weight:500;
    margin-bottom:20px;
}

.voucher-note p {
    color:var(--text);
    font-size:19px;
    line-height:1.9;
}

@media(max-width:900px) {
    .voucher-section {
        padding:75px 6%;
    }

    .voucher-inner {
        grid-template-columns:1fr;
        gap:45px;
    }

    .voucher-content h2 {
        font-size:38px;
    }
}

@media(max-width:700px) {
    .voucher-content h2 {
        font-size:32px;
    }

    .voucher-content p {
        font-size:18px;
    }
}
