/* Core Stuff */
:root {
    /* Hauptfarben */
    --color-black: #1E1E1E;
    --color-dark-gray: #5B5B5B;
    --color-medium-gray: #B3B3B3;
    --color-light-gray: #E2E2E2;
    --color-white: #FCFCFC;
    --color-offwhite: #f5f5f7;
       
    /* Akzentfarbe */
    --color-accent: #FF5521;  

}

/* alt-font */


/**/

/* Dark Mode */
.dark-mode {
    background-color: var(--color-black);
    color: var(--color-light-gray);
}

.dark-mode .secondary {
    background-color: var(--color-dark-gray);
    color: var(--color-medium-gray);
}

.dark-mode .accent {
    color: var(--color-accent);
}

/* Light Mode */
.light-mode {
    background-color: var(--color-light-gray);
    color: var(--color-black);
}

.light-mode .secondary {
    background-color: var(--color-medium-gray);
    color: var(--color-dark-gray);
}

.light-mode .accent {
    color: var(--color-accent);
}

/* Buttons */
.button {
    background-color: var(--color-accent);
    color: var(--color-light-gray);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    color: var(--color-black); /* Dunklere Variante des Akzents */
}

/* Fonts */
@font-face {
    font-family: britti-sans;
    src: url(../fonts/Britti-Sans-Semibold-Italic.otf);
}

@font-face {
    font-family: sofia-sans;
    src: url(../fonts/Sofia_Sans_Semi_Condensed/SofiaSansSemiCondensed-VariableFont_wght.ttf);
}

@font-face {
    font-family: museo;
    src: url(.../fonts/museo-slab/Museo_Slab_1000.otf)
}

@font-face {
    font-family: museo;
    src: url(.../fonts/museo-slab/Museo_Slab_600.otf)
}

@font-face {
    font-family: helvetica-neue;
    src: url(.../fonts/helvetica-neue-55-cdnfonts/HelveticaNeue-Black.otf)
}


@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');

                

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 20px;
}

body {
    color: var(--color-black);
    background-color: var(--color-offwhite);
    --text-size-80: 0.64rem;
    --text-size-90: 0.8rem;
    --text-size-100: 1rem;
    --text-size-200: 1.25rem;
    --text-size-300: 1.563rem;
    --text-size-400: 1.953rem;
    --text-size-500: 2.441rem;
    --text-size-600: 3.052rem;
    --text-size-700: 3.815rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    line-height: 1.6;
}


/*Headings*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.022em;
    color: #222222;
    font-family: 'Helvetica Neue', sans-serif;
    overflow-wrap: break-word;   
    
  }
  p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow-wrap: break-word;  
  }
  small {
    font-size: var(--text-size-90);
  }
  h6, .h6 {
    font-size: var(--text-size-200);
  }
  h5, .h5 {
    font-size: var(--text-size-300);
  }
  h4, .h4 {
    font-size: var(--text-size-400);
  }
  h3, .h3 {
    font-size: var(--text-size-500);
  }
  h2, .h2 {
    font-size: var(--text-size-600);
  }
  h1, .h1 {
    font-size: var(--text-size-700);
  }
  .text-size-80 { font-size: var(--text-size-80); }
  .text-size-90 { font-size: var(--text-size-90); }
  .text-size-100 { font-size: var(--text-size-100); }
  .text-size-200 { font-size: var(--text-size-200); }
  .text-size-300 { font-size: var(--text-size-300); }
  .text-size-400 { font-size: var(--text-size-400); }
  .text-size-500 { font-size: var(--text-size-500); }
  .text-size-600 { font-size: var(--text-size-600); }
  .text-size-700 { font-size: var(--text-size-700); }

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre {
    background: var(--color-light-gray);
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

ul {
    /* padding-top: 1rem; */
    padding-bottom: 2rem;
    text-align: start;
    padding-left: 1rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 1rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
.header .padding {
    padding: 1rem 0;
}

.header {
    background-color: var(--color-offwhite);
    color: var(--color-light-gray);
    height: 100px;
    align-content: center;
    width: 100%;
    border-bottom: 1px solid var(--color-light-gray);
}

.header a {
    color: var(--color-accent);
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
    font-family: britti-sans;
}

@media (min-width: 1000px) {
    .header .logo {
        margin-top: 20px;
    }
}

/* Footer */
.footer {
    background-color: var(--color-dark-gray);
    color: var(--color-offwhite);
}

@media (max-width: 750px) {
    .footer .content .logo img {
        display: none;
    }
}

.footer .content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 0rem 3rem 2.5rem;
}

.footer .content .sites {
    display: flex;
    flex-direction: column;

    a {
        font-size: var(--text-size-90);
        color: var(--color-medium-gray);
    }

    a:hover {
        color: var(--color-accent);
    }
}

.footer .content .legal {
    display: flex;
    flex-direction: column;

    a {
        font-size: var(--text-size-90);
        color: var(--color-medium-gray);
    }

    a:hover {
        color: var(--color-accent);
    }
}

.footer .content .platforms {
    display: flex;
    flex-direction: column;

    a {
        font-size: var(--text-size-90);
        color: var(--color-medium-gray);
    }

    a:hover {
        color: var(--color-accent);
    }
}

.footer .content .logo {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
    padding-right: 2rem;
}

/* Navigation */
.main-nav {
    /* background-color: red; */
    /* height: 100%; */
    display: flex;
    align-items: center;
    /* width: 10vw; */
    justify-self: flex-end;
    flex-wrap: nowrap;
    margin-left: 0;
    float: right;
}

.main-nav ul {
    height: 100px;
    display: flex;
    margin-left: 0;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    padding-top: 0;
    margin-right: 0;
    /* background-color: blue; */
    float: right;
}



.dropdown-nav {
    height: 100%;
    /* width: 100vw; */
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-nav ul li{
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: var(--text-size-90);
}

.main-nav ul li a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}


.main-nav svg {
    fill: var(--color-black);
    justify-content: flex-end;
    margin-left: 10vw;
    margin-top: 10px;
    width: 50px;
}

#sidebar-active {
    display: none;
}

.open-sidebar-button, .close-sidebar-button {
    display: none;
}

@media (max-width: 1000px) {
    .dropdown-nav {
        /* flex-direction: column; */
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 80vw;
        background-color: var(--color-black);
        transition: 0.75s ease-out;
        flex-wrap: wrap;
        border-left: 2px solid white;
    }
    .main-nav ul li {
        justify-content: flex-start;
        box-sizing: border-box;
        height: auto;
        width: 100%;
        margin-right: auto;
        align-content: center;
        /* background-color: yellow; */
        font-size: var(--text-size-200);
    }
    .dropdown-nav ul {
        flex-direction: column;
        justify-content: flex-start;
        /* background-color: green; */
        width: 100%;
        align-content: space-between;
        gap: 50px;
        /* background-color: aqua; */
        height: fit-content;
    }

    .dropdown-nav svg {
        position: fixed;
        top: 30px;
        fill: white;
    }

    .open-sidebar-button, .close-sidebar-button {
        display: block;
        /* padding: 10px 0; */
    }
    #sidebar-active:checked ~ .dropdown-nav {
        right: 0;
    }
    #sidebar-active:checked ~ #overlay {
        /* background-color: rgba(70, 40, 37, 0.8); */
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        /* backdrop-filter: grayscale(30%); */
    }
    .main-nav ul li::after {
        display: none;
 }
}

/* Button */

.button-24 {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: var(--color-light-gray);
  cursor: pointer;
  display: inline-block;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-24:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: var(--color-accent);
}

.button-24:active {
  opacity: .5;
}

/* Modular Pages*/


.modular-row {
    /* padding-top: 0.2rem; */
    padding-bottom: 2rem;
    text-align: start;
    /* background-color: blue; */
}

@media (min-width:1000px) {
    .modular-row {
        margin-left: 8rem;
        margin-right: 8rem;
    }
}

#headline_cover {
    background-size: contain;
    background-position: center;
}

.modular-row .button {
    align-content: center;
}

.modular-row::after {
    display: inline-block;
    content: "";
    border-top: .1rem solid var(--card-border);
    width: 100%;
}

.modular-row:last-child::after {
    display: none;
}


/* Form */

#form {
    font-family: sofia-sans;
    margin-left: 8rem;
    margin-right: 8rem;
}

#form label {
    font-size: var(--text-s);
    font-weight: bold;
}

#form .required {
    color: var(--color-accent);
}

.form-control {
    /* background-color: blue; */
    font-family: sofia-sans;
    font-size: var(--text-s);
    color: var(--color-dark-gray);
    padding: 0.2rem;
    width: 70vw;
    max-width: 500px;
}

.form-input-wrapper {
    padding-bottom: 1rem;
}

.buttons {
    padding-top: 1rem;
}

.button {
    font-size: var(--text-s);
    font-family: Georgia, 'Times New Roman', Times, serif;
}
