@charset "utf-8";
/*
* CSS-Design
* Nadja Heinen – Grafikdesign
*/

@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan-VariableFont_wght.ttf');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-VariableFont_wght.ttf');
    font-weight: 400 700;
}

/* ============================
   FARBPALETTE
   ============================
   Türkis Haupt:        #4697a8  rgb(70,151,168)
   Türkis dunkel:       #5f7c82  rgb(95,124,130)
   Petrol dunkel (Abo): #16333a
   Terrakotta:          #e0714a  rgb(224,113,74)
   Terrakotta dunkel:   #c2603a  rgb(194,96,58)
   Beige hell:          #f6f1ea  rgb(246,241,234)
   Beige mittel:        #e7ddd0  rgb(231,221,208)
   Off-White:           #fdfaf5  rgb(253,250,245)
   Text dunkel:         #333333  rgb(51,51,51)
   Text grau:           #767676  rgb(118,118,118)
   Rahmen hell:         #c9bfb3  rgb(201,191,179)
   ============================ */

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

body {
    font-family: 'Lora', Arial, serif;
    font-size: 1rem;
    color: #333333;
    background-color: #f6f1ea;
}

/* Layout */
.wrapper {
    max-width: 1250px;
    padding: 0 25px;
    margin: 0 auto;
}

.column {
    float: left;
    margin: 20px 0 20px 5%;
}

.column:first-child {
    margin-left: 0;
}

section {
    padding: 60px 0;
}

/* Clearfix */
.row:before,
.row:after {
    content: " ";
    display: table;
}

.row::after {
    clear: both;
}

/* Spalten (nur die tatsächlich genutzten Breiten) */
.col_1 {
    width: 100%;
}

.col_1_2 {
    width: 47.5%;
}

.col_1_3 {
    width: 30%;
}

.col_2_3 {
    width: 65%;
}

.col_1_4 {
    width: 21.25%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Menü-Button (Hamburger, mobil) */
.nav-toggle {
    display: none;
    background: #4697a8;
    padding: 10px 15px;
    color: #fff;
}

.nav-toggle:hover {
    background: #e0714a;
    text-decoration: none;
}

/* Typo */
h1, h2, h3, h4 {
    font-family: 'Inter', Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333333;
    line-height: 1.4;
}

h1 {
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 25px;
}

h2 {
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
}

h3 {
    font-size: 1.1rem;
}

h4 {
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f7c82;
    margin-bottom: 8px;
}

a {
    color: #5f7c82;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Links im Fließtext klar als Links erkennbar */
section a {
    text-decoration: underline;
}

section .button,
section .nav-toggle {
    text-decoration: none;
}

p {
    margin: 0 0 15px;
}

/* hero-teaser */
#hero {
    margin-bottom: 1px;
}

.hero {
    background: #f6f1ea;
}

.hero h1 {
    margin-top: 30px;
}

.hero h1, .hero h2 {
    color: #333333;
}

.hero p {
    color: #333333;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
}

.hero-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 260px;
    min-width: 500px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: #4697a8;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-bild {
    flex: 2 1 420px;
    margin-right: -60px;
    transform: rotate(-3deg) scale(0.9);
    transition: 2.5s;
}

.hero-bild.eingeblendet {
    transform: rotate(-3deg) scale(1.2);
}

.button {
    font-family: 'League Spartan', Arial, sans-serif;
    background: #e0714a;
    border: none;
    padding: 10px 20px 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: inline-block;
    margin: 20px 25px 20px 0;
    transition: all 0.15s ease-out 0s;
}

.button:hover {
    background: #c2603a;
    color: #fff;
    text-decoration: none;
}

/* Navigation (One-Pager) */
#nav {
    background: #4697a8;
    padding: 25px 0;
    position: sticky;
    top: 0;
    box-shadow: 0px 10px 15px 0 rgba(0, 0, 0, .1);
    z-index: 9999;
}

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

.logo-link {
    display: flex;
    align-items: center;
    color: #fdfaf5;
    font-size: 16px;
    font-style: italic;
    text-decoration: none;
    padding-left: 14px;
}

.logo-link:hover {
    text-decoration: none;
}

#logo-nav {
    max-height: 77px;
    margin-right: 14px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    display: block;
    padding: 5px 4px;
    transition: all 0.2s;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    border-bottom: 2px solid #fff;
}

.main-nav li {
    list-style: none;
    margin: 10px;
}

ul.main-nav {
    margin-bottom: 0;
}

/* Kontakt */
#kontakt-op input {
    font-family: 'League Spartan', Arial, sans-serif;
    width: 400px;
    margin: 0 0 20px;
    text-align: center;
    padding: 13px;
}

#kontakt-op .button {
    font-family: 'League Spartan', Arial, sans-serif;
    background: rgb(224,113,74);
    background: linear-gradient(180deg, rgba(224,113,74,1) 0%, rgba(194,96,58,1) 100%);
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, .2);
    border: solid #c2603a 2px;
    color: #fff;
}

#kontakt-op {
    background: #4697a8;
    background: linear-gradient(90deg, rgba(70, 151, 168, 1) 52%, rgba(231, 221, 208, 1) 90%);
    padding: 110px 0;
}

#kontakt-op h2 {
    color: #fff;
    font-size: 40px;
}

#kontakt-op .row {
    display: flex;
    align-items: center;
}

#kontakt-op .button:hover {
    background: #c2603a;
    background: linear-gradient(to bottom, #c2603a, #e0714a);
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, .2);
}

#kontakt-op a {
    color: #fdfaf5;
}

/* Leistungen */
#leistungen {
    background: #e7ddd0;
    padding-top: 150px;
}

#leistungen .intro {
    color: #767676;
}

#leistungen img {
    margin-bottom: 12px;
}

#leistungen .leistung-mehr {
    display: none;
}

#leistungen .column:hover .leistung-mehr {
    display: block;
}

#leistungen .column {
    background: #fdfaf5;
    box-shadow: 0px 6px 16px 0 rgba(70, 151, 168, .12);
    padding: 35px 35px 25px;
    border-radius: 10px;
    transition: all 0.15s ease-out 0s;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 220px;
    margin: 25px 2% 25px 2%;
}

#leistungen .column:hover {
    box-shadow: 0px 12px 32px 0 rgba(70, 151, 168, .25);
    transform: translateY(-10px);
}

#leistungen .row {
    display: flex;
    flex-wrap: wrap;
}

/* Social Media Abo */
.abo-kopf {
    background: #16333a;
    color: #fdfaf5;
    padding-bottom: 30px;
}

.abo-kopf h2 {
    color: #fdfaf5;
}

.abo-inhalt {
    background: #e7ddd0;
}

.abo-label {
    color: #e0714a;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.abo h2 {
    color: #fdfaf5;
}

.paket {
    background: #fdfaf5;
    border-radius: 10px;
    padding: 35px;
}

.paket h3 {
    color: #16333a;
    margin-bottom: 8px;
}

.paket-preis {
    font-size: 2rem;
    font-weight: 700;
    color: #16333a;
    margin-bottom: 12px;
}

.paket-preis span {
    font-size: 1rem;
    font-weight: 400;
    color: #767676;
}

.paket-text {
    color: #333333;
}

.paket-liste {
    margin: 20px 0 0 20px;
    color: #333333;
}

.paket-liste li {
    margin-bottom: 8px;
}

.abo-zusatz {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #4a4f54;
    color: #c9bfb3;
}

.paket-start {
    background: #fdfaf5;
    border-radius: 10px;
    padding: 40px;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

.paket-start-links {
    flex: 1 1 260px;
    margin-right: 40px;
}

.paket-start-rechts {
    flex: 1 1 260px;
}

.paket-start h3 {
    color: #16333a;
}

.paket-enthalten {
    font-weight: 600;
    color: #333333;
    margin-top: 20px;
}

.abo-trenner {
    border-top: 1px solid #e7ddd0;
    max-width: 100%;
    margin: 50px 0;
}

.abo-zwischentitel {
    color: #16333a;
    margin-bottom: 25px;
}

.paket {
    transition: all 0.15s ease-out 0s;
}


.paket-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #e0714a;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
}

.abo-pakete {
    display: flex;
    flex-wrap: wrap;
}

.paket {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 280px;
}

.paket .button {
    margin-top: auto;
}

.paket-start .button {
    margin: 20px 0 0;
}

.subline {
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #333333;
}

.abo-hinweis {
    color: #767676;
    font-size: 0.9rem;
    margin-top: 20px;
}

.zusatz-liste {
    margin: 0 0 40px 20px;
    color: #333333;
}

.zusatz-liste li {
    margin-bottom: 8px;
}

.faq-box {
    background: #fdfaf5;
    border-radius: 10px;
    padding: 35px;
    margin-top: 20px;
}

.faq {
    margin-top: 40px;
    padding-left: 25px
}



.faq-frage {
    border-bottom: 1px solid #c9bfb3;
    padding: 20px 0;
    cursor: pointer;
}

.faq-frage-text {
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.faq-antwort {
    display: none;
    color: #333333;
    margin-top: 12px;
    margin-left: 20px;
}

/* Über mich */
.ueber-mich-bild img {
    max-height: 270px;
    border-radius: 8px;
    display: block;
}

/* Footer */
footer {
    background: #e7ddd0;
    color: #333333;
    padding: 40px 0 20px;
}

footer h4 {
    color: #5f7c82;
}

footer a {
    color: #333333;
}

footer a:hover {
    color: #5f7c82;
}

footer .col_1 p {
    font-size: 0.8rem;
    color: #767676;
    border-top: 1px solid #c9bfb3;
    padding-top: 20px;
    margin-top: 10px;
}

.zentrieren {
    text-align: center;
}

.nach-oben {
    margin: 40px 0 -200px;
    margin-left: -120px;
}

/* Seitenkopf auf Unterseiten (z.B. Rechtliches, statt Hero) */
.page-header {
    background: #e7ddd0;
    padding-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 15px;
}

/* Trennlinie (Rechtliches) */
hr {
    border: none;
    border-top: 1px solid #e7ddd0;
    margin: 35px auto;
    max-width: 300px;
}

/* Formular (Kontakt-Bereich) */
input[type='email'] {
    width: 100%;
    border: 1px solid #c9bfb3;
    padding: 8px 10px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
}

input:hover,
input:focus {
    border: 1px solid #5f7c82;
}

input[type='submit'] {
    font-size: 1rem;
    cursor: pointer;
}

/* Nach-oben-Button (Logo) */
#totop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    z-index: 9999;
}

#totop img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    transition: opacity 0.2s;
}

#totop .logo-hover {
    opacity: 0;
}

#totop:hover .logo-hover {
    opacity: 1;
}

#totop:hover .logo-normal {
    opacity: 0;
}

/* Slider */
#slider .slick-prev,
#slider .slick-next {
    background: #e0714a;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    z-index: 10;
}

#slider .slick-prev {
    left: 20px;
}

#slider .slick-next {
    right: 20px;
}

#slider .slick-prev:hover,
#slider .slick-next:hover {
    background: #c2603a;
}

#slider .slick-prev::before,
#slider .slick-next::before {
    color: #fff;
    font-size: 20px;
}

#slider .slick-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

#slider .slick-dots li button::before {
    color: #fdfaf5;
    opacity: 0.7;
    font-size: 14px;
}

#slider .slick-dots li.slick-active button::before {
    color: #e0714a;
    opacity: 1;
    font-size: 14px;
}

/* Media Queries */
@media only screen and (max-width: 950px) {
    .col_1,
    .col_1_2,
    .col_2_3,
    .col_1_4 {
        width: 100%;
    }

    .col_1_3 {
        width: 100%;
        float: none;
    }

    .column {
        margin-left: 0;
    }

    #kontakt-op .row {
        display: block;
    }

    #kontakt-op input {
        width: 100%;
    } 

    .nach-oben {
        margin: 40px 0 -80px;
    }

    #leistungen {
        padding-top: 100px;
    }

    .hero-text {
        min-width: 0;
    }

    .nav-flex nav {
        height: 0;
        overflow: hidden;
        transition: height .2s ease-in-out;
        width: 100%;
    }

    #nav-open:target .nav-flex nav {
        height: auto;
    }

    .nav-toggle {
        display: block;
    }

    #nav-open:target .nav-closed {
        display: block;
    }

    .nav-closed,
    #nav-closed:target .nav-closed,
    #nav-open:target .nav-open {
        display: none;
    }

    .main-nav {
        flex-direction: column;
    }
}
