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



body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --------- Spacer --------- */
.spacer-small { height: 40px; }
.spacer-medium { height: 80px; }
.spacer-large { height: 140px; }



/* --------- Background Colors --------- */
.bg-darkblue {
    background-color: #39374d;
}

.bg-brightblue {
    background-color: #d3dfed;
}

.bg-brightorange {
    background-color: #c7633e;
}

.bg-orange {
    background-color: #682208;
}

.bg-darkorange {
    background-color: #481b07;
}

.bg-brightbeige {
    background-color: #cec8b9;
}

.bg-beige {
    background-color: #8d8377;
}

.bg-darkbeige {
    background-color: #64544c;
}

.bg-white {
    background-color: #efe9d9;
    padding: 0;
    color: #504438;
}

.bg-white h1,.bg-white h2 {
    color: black;
}

.bg-black{
    background-color: #161211;
}

.bg-brightbraun{
    background-color:  #906f4d;
}

.bg-braun{
    background-color:  #65513b;
    padding: 0;
    color: #efe9d9;
}

.bg-darkbraun{
    background-color:  #504438;
}

/* --------- Hero Section --------- */
.hero {
    display: flex;
    align-items: center;       /* vertikale Zentrierung von hero-left und hero-right */
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;   /* wichtig */
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;   /* wichtig */
    justify-content: center;  /* vertikal mittig */
}
.hero-right-test {
    flex: 1;                 /* nimmt den verfügbaren Platz */
    /* display: flex; */      /* entfernen */
    /* flex-direction: column; */ /* entfernen */
    /* justify-content: center; */ /* entfernen */
    text-align: center;       /* Inhalt horizontal zentrieren */
}

.hero-left-test {
    flex: 1;                 /* nimmt den verfügbaren Platz */
    /* display: flex; */      /* entfernen */
    flex-direction: column;  /* entfernen */
    /* justify-content: center; */ /* entfernen */
    text-align: center;       /* Inhalt horizontal zentrieren */
}

.hero-nextpage {
    display: flex;
    justify-content: flex-end; /* schiebt alles nach rechts */
}


.hero-left-quarter,
.hero-right-quarter{
    flex: 1;  /* 1 Teil von 4 → 25% */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right-threequarter,
.hero-left-threequarter {
    flex: 3;  /* 3 Teile von 4 → 75% */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* H1*/
.hero-left h1,.hero-left-quarter h1,.hero-left-threequarter h1,
.hero-right h1,.hero-right-quarter h1,.hero-right-threequarter h1,
.content-section h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* H2*/
.hero-left h2,.hero-left-quarter h2,.hero-left-threequarter h2,
.hero-right h2,.hero-right-quarter h2,.hero-right-threequarter h2,
.content-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}
.content-section h1[id],.hero-left h1[id], .hero-right-threequarter h1 [id], .hero-right-threequarter h2 [id] {
  scroll-margin-top: 120px; /* Höhe deines Headers */
}

/* H3*/
.hero-left h3,.hero-left-quarter h3,.hero-left-threequarter h3,
.hero-right h3,.hero-right-quarter h3,.hero-right-threequarter h3,
.content-section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-left-threequarter a, .content-section a
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-top: 40px;      /* Abstand nach oben */
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-left-threequarter h4{
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* P */
.hero p,
.hero-left p,.hero-left-quarter p,.hero-left-threequarter p,
.hero-right p,.hero-right-quarter p,.hero-right-threequarter p,
.content-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem !important;
    line-height: 1.9!important;       /* Abstand zwischen den Zeilen im Absatz */
    margin-bottom: 25px!important;    /* Abstand zum nächsten Absatz */
}

.hero-left ul,.hero-left-quarter ul,.hero-left-threequarter ul,
.hero-right ul,.hero-right-quarter ul,.hero-right-threequarter ul,
.content-section ul {
    padding-left: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem ;
    line-height: 1.9;
    margin-bottom: 25px;
}
.hero-link{
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #333;
    font-weight: bold;
}

.hero-right-threequarter a, .content-section a{
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #333;
    font-weight: bold;
}

/* --------- Full Image Section --------- */
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-content-image {
    width: 60%;          /* kleiner als 100% */
    height: auto;
    border-radius: 10px;
    display: block;      /* wichtig für margin:auto */
    margin: 0 auto;      /* horizontal zentrieren */
}

.hero-image-setsize{
    height: 350px;
    width: auto;
    border-radius: 10px;
}

.image-section .full-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
}

.content-section img {
    width: 60%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.hero-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Bilder in hero-right */
.hero-right img {
    width: 100%;   /* 100% der hero-right-Spalte = 50% des Containers */
    height: auto;
    display: block;
    margin-left: 0; /* linksbündig in der Spalte */
    border-radius: 10px;
}


/* --------- Kleinere Bilder mit Text nebeneinander --------- */
.image-text-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.image-text-section .hero-left {
    flex: 2; /* Text bekommt mehr Platz */
}

.image-text-section .hero-right {
    flex: 1; /* Bild kleiner */
    display: flex;
    justify-content: center; /* Bild zentrieren in der Spalte */
}

.image-text-section .small-image {
    width: 600px; /* Kohlmeise klein */
    height: auto;
    border-radius: 10px;
}

.icon-image {
    width: calc(100% - 20px); /* Bild etwas kleiner als die Spalte */
    height: auto;
    border-radius: 10px;
    margin-right: 20px;       /* Abstand rechts */
    display: block;
}

.hero-shaman-img {
    width: calc(100% - 20px);
    height: auto;
    border-radius: 10px;
    margin-right: 20px;  /* Abstand rechts statt links */
    display: block;
}

.hero-image-poweranimal{
    width: 40%;        /* 40% der Containerbreite */
    height: auto;      /* proportional skalieren */
    border-radius: 0;  /* keine abgerundeten Ecken */
    display: block;    /* für margin:auto notwendig */
    margin: 0 auto;     /* horizontal zentrieren */
}

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

.image-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

/* --------- Button Section --------- */
.button-section {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin-bottom: 40px;
}

.button-section .btn {
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
}

.button-section .btn:hover {
    background-color: #333;
    color: white ;
}

.button-section_download .btn {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
}


.affiliate-btn {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: #333;
    padding: 3px 20px;
    text-decoration: none; /* unterstreicht den Text nicht */
    border-radius: 5px;
    font-weight: bold;

}

.affiliate-btn:hover {
    background-color: white;
    color: #333;
}

/* --------- Responsive für Handy --------- */
@media screen and (max-width: 768px) {
    .hero, 
    .info-box,
    .image-text-section {
        flex-direction: column;
    }

    .hero-left, .hero-right,
    .info-box .info-text, .info-box .info-image,
    .image-text-section .hero-left, .image-text-section .hero-right {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .image-text-section .small-image,
    .info-box .info-image img {
        margin: 0 auto 20px auto;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

}

/* --------- Banner---- */
.site-header {
    font-family: 'Roboto', sans-serif;
    background-color:  #39374d;
    color: #fff;
    padding: 0px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    font-size: 1.2rem;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}


/* Desktop Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 70px!important;
    width: auto!important;
}

/* Sprachumschalter rechts neben Navigation */
.language-switcher {
    display: flex;
    font-family: 'Roboto', sans-serif;
    align-items: center;
    margin-left: 20px; /* Abstand von der Navigation */
}

.language-switcher button {
    margin-left: 5px;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    background: #fff;
    color: #000;
    transition: background 0.2s, color 0.2s;
}

.language-switcher button.active {
    background: #000;
    color: #fff;
}

.language-switcher button:hover {
    background: #333;
    color: #fff;
}

/* Responsive für Mobile */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none; /* Desktop Menü ausblenden */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 200px;
        text-align: right;
        padding: 10px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav.active {
        display: block; /* aufklappbar */
    }
    
}