@import "reset.css";
@import "fonts.css";

:root {
    --beige: #ECE5DA;
    --gruen: #8DA633;
    --dunkelbraun: #2D221E;
    --braun: #8D7258;
}

body {
    background-color: var(--dunkelbraun);
}

/* SCHRIFTGRÖSSEN ALLGEMEIN */

h1 {
    font-family: 'poppins_bold';
    color: var(--beige);
    font-size: 6vw;
    font-style: bold;
    margin-bottom: 2%;
}

h2 {
    font-family: 'poppins_bold';
    color: var(--beige);
    font-size: 6vw;
    font-style: bold;
    margin-bottom: 2%;
}

h3 {
    font-family: 'poppins_bold';
    color: var(--beige);
    font-style: bold;
    font-size: 2.5vw;
    letter-spacing: 0.07em;
    margin-bottom: 1%;
}

p {
    font-family: 'centurygothic';
    color: var(--beige);
    font-style: normal;
    font-size: 1.3vw;
}

li {
    list-style-type: none;
}

a {
    font-family: 'centurygothic';
    color: var(--beige);
    font-size: 1.5vw;
    text-decoration: none;
}


/* ALLES ZU HEADER  */

.container_header {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.container_header_inhalt {
    display: flex;
    width: 85%;
    flex-direction: row;
}

.container_logo {
    display: flex;
    width: 70%;
    align-items: center;
}

#logo {
    width: 7.5vw;
    height: auto;
}

.container_navigation {
    display: flex;
    width: 30%;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
}

.container_navigation a:hover {
    color: var(--gruen);
    text-decoration: underline;
    transition: color underline 0.3s ease;
}

/* Grundeinstellungen ZU MAIN  */

.container_main {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.container_main_inhalt {
    display: flex;
    flex-direction: column;
    width: 85%;
    align-items: center;
}


/* ALLES ZU FOOTER  */

.container_footer {
    display: flex;
    width: 100%;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    background-color: var(--braun);
    justify-content: center;
}

.container_footer_inhalt {
    width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.container_mail_tel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container_icon_datenschutz {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#impressum_datenschutz {
    font-size: 1.1vw;
    &:hover {
        color: var(--gruen);
        text-decoration: underline;
        transition: color underline 0.3s ease;
    }
}

.icon_beige,
.icon_gruen {
    width: 40%;
}

/* Trennlinien */

.trenner_main {
    width: 85%;
    height: 0.1vh;
    border: none;
    background-color: var(--beige);
}

.trenner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/*details für trenner erste version */
.linielinks1 {
    height: 0.1vh;
    border: none;
    background-color: var(--beige);
    width: 20%;
    margin: 0;
}

.linierechts1 {
    height: 0.1vh;
    border: none;
    background-color: var(--beige);
    width: 50%;
    margin: 0;
}

/*details für trenner zweite version */
.linielinks2 {
    height: 0.1vh;
    border: none;
    background-color: var(--beige);
    width: 50%;
    margin: 0;
}

.linierechts2 {
    height: 0.1vh;
    border: none;
    background-color: var(--beige);
    width: 20%;
    margin: 0;
}