:root {
    --honey: #f4b41a;
    --green: #2f5d3a;
    --greensoft: #eaf3e8;
    --cream: #fff8e7;
    --muted: #6f6f6f;
}

/*==========================================================================================
 general Layout
==========================================================================================*/
* { box-sizing: border-box; }

html {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    color: black;
    background: white;
    scroll-behavior: smooth;
}

#header {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    overflow: scroll;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    /* Firefox */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari und Edge */
}

main {
    width: 100%;
}

section {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.home-section {
    background: var(--cream);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.home-section-container {
    width: 90%;
    max-width: 1189px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 0;
    background: var(--honey);
    color: black;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    box-shadow: 0 10px 25px rgba(244, 180, 26, 0.35);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    background: var(--greensoft);
    color: var(--green);
    border-radius: 999px;
    padding: .45rem .8rem;
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

/*==========================================================================================
 Header Menu Layout
==========================================================================================*/

#navMenu {
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    background-color: white;
    box-shadow: 0 0.4rem 0.8rem 0.1rem rgba(0, 0, 0, 0.2);
}

#navMenu .logoContainer {
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navMenu .logoContainer a,
#navMenu .logoContainer img {
    height: 100%;
}

#navMenu .navMenu_Logo {
    max-height: 100%;
}

#navMenu .mainmenu {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    height: 100%;
}

#navMenu .mainmenuitem {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#navMenu .mainmenuitem:not(:last-of-type) {
    padding-right: 2em;
}

#navMenu .menulabel {
    color: #3a4f66;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
}

#navMenu .menulabel:hover {
    color: #1559ed;
}

#navMenu .menulabel:active {
    color: #3a4f66;
}


/*==========================================================================================
 Home Section Welcome
==========================================================================================*/

#welcome {
    height: 100vh;
    background: linear-gradient(110deg, rgba(255, 248, 231, .96) 0%, rgba(255, 248, 231, .82) 48%, rgba(47, 93, 58, .15) 100%);
}

#welcome-inner>div {
    flex: 1;
    margin: 2rem;
}

#welcome h1 {
    width: 100%;
    text-decoration: none;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: bold;
    text-align: left;
    line-height: .95;
    letter-spacing: -0.075em;
    color: var(--green);
    margin: 0 0 1.25rem;

}

#welcome p {
    width: 100%;
    text-align: left;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #3f3f3f;
    line-height: 1.6;
}

#welcome .card {
    border-radius: 36px;
    box-shadow: 0 18px 45px rgba(35, 35, 35, 0.12);
    position: relative;
    transform: rotate(1.5deg);
}

#welcome .card-inner {
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(47, 93, 58, .2), rgba(244, 180, 26, .15)),
        linear-gradient(180deg, #f9d765 0%, #d68c00 100%);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--green);
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

#welcome .card-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .78);
    padding: 2rem;
    border-radius: 24px;
    backdrop-filter: blur(8px);
}


#welcome-logoContainer img {
    width: 90%;
}


#welcome-logoContainer #slogan-container {
    color: white;
}

#welcome-logoContainer #slogan1 {
    margin: 0;
    font-family: "Times New Roman", Georgia, serif;
    font-style: italic;
    font-size: 3rem;
    line-height: 0.9;
    text-align: center;
}

#welcome-logoContainer #slogan2 {
    margin: 0;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

/*==========================================================================================
 Home Section Honig
==========================================================================================*/

#product-inner {
    background: var(--green);
    border-radius: 36px;
    box-shadow: 0 18px 45px rgba(35, 35, 35, 0.12);
}

#product-inner>div {
    margin: 2rem;
}

#product-visual {
    width: 35%;
    display: flex;
    text-align: center;
    justify-content: center;
}

#product-visual img {
    width: 100%;
    border-radius: 25px;
}

#product-inner h2 {
    margin: 0;
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

#product-inner p {
    color: rgba(255, 255, 255, .83);
    line-height: 1.6rem;
}

/*==========================================================================================
 Home Section Welcome
==========================================================================================*/
#vomImker-inner {
    flex-direction: column;
}

#vomImker-inner #section-heading h2 {
    margin: 0;
    color: var(--green);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

#vomImker-inner #section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 2rem;
}

#vomImker-inner #card-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#vomImker-inner .card {
    flex: 1;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(35, 35, 35, .08);
    border: 1px solid rgba(47, 93, 58, .08);
    overflow: hidden;
}

#vomImker-inner .card h3 {
    margin: 0 0 .5rem;
    color: var(--green);
    font-size: 1.25rem;
    padding: 1.5rem;
    padding-bottom: 0;
}

#vomImker-inner .card p {
    margin: 0;
    color: var(--muted);
    padding: 1.5rem;
    padding-top: 0;
}

#vomImker-inner .card-image img {
    width: 100%
}


/*==========================================================================================
 Home Section Kontakt
==========================================================================================*/

#kontakt-inner {
    background: white;
    border-radius: 36px;
    box-shadow: 0 18px 45px rgba(35, 35, 35, 0.12);
}

#kontakt-inner>div {
    flex: 1;
    margin: 3rem;
}

#kontakt-inner h2 {
    color: var(--green);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.06em;
    margin: .2rem 0 1rem;
}

#kontakt-inner p {
    color: var(--muted);
}

#kontakt-inner .contact-box {
    background: var(--greensoft);
    border-radius: 24px;
    padding: 2rem;
}

/*==========================================================================================
 Footer Layout
==========================================================================================*/


#page_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: var(--green);
    padding: 1rem 0 1rem;
}

#page_footer ul {
    margin: 0;
    padding:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#page_footer ul li {
    list-style-type: none;
    text-align: left;
    padding: 0.5rem;
}

#page_footer li a {
    color: white;
    font-size: 1rem;
}

#page_footer li a:hover {
    color: var(--honey);
}

#page_footer_copyright {
    padding: 0.5rem;
    color: white;
    font-size: 1rem;
    text-align: center;
}




/*==========================================================================================
 Legal pages Layout
==========================================================================================*/

.legal-section{
    padding: 3rem;
    width: 100%;
    min-height: 100vh;
}

.legal-section h2, h4 {
    padding: 0;
    padding-top: 1rem;
    margin: 0;
}

.legal-section p {
    padding: 0;
    margin: 0;
}

/*==========================================================================================
||
|| 
||   Responsive Layout
||
||
==========================================================================================*/

@media (max-width: 860px) {
    .home-section-container {
        flex-direction: column;
    }
    #welcome-logoContainer #slogan1{
        font-size: 2rem;
    }
    #welcome-inner{
        flex-direction: column-reverse;
    }

    #product-visual, #product-text{
        width:70%;
    }
    
    #vomImker-inner #card-container{
        flex-direction: column;
        gap:50px;
    }
    #kontakt-inner .contact-box, #kontakt-inner .contact-text{
        width:90%;
        margin-top:2rem;
        margin-bottom: 2rem;
    }
}

