/* --------------------------------------- */
/* CSS Variablen (EduArt Theme) */
/* --------------------------------------- */
:root {
    --color-background: #000;
    --color-text: #fff;

    --color-company-primary: #811811; /* idas dunkelblau */
    --color-company-secondary: #6e6e6e; /* idas hellblau */

    --color-highlight: #811811; /* EduArt Rot */
    --color-link-hover: #811811; /* EduArt Rot */
    --color-button-bg: rgba(0, 0, 0, 0.3);
    --color-button-border: #fff;
}

/* --------------------------------------- */
/* Schriftart einbinden */
/* --------------------------------------- */
@font-face {
    font-family: 'Roboto';
    src: url('footage/fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
}

/* --------------------------------------- */
/* Textauswahl (Highlight) */
/* --------------------------------------- */
::selection {
    background: var(--color-highlight);
    color: var(--color-text);
}

/* --------------------------------------- */
/* Headings */
/* --------------------------------------- */
h1 {
    font-size: 5rem;
    font-weight: bold;
    padding-bottom: 2rem;
    line-height: 1.0;
}

h2 {
    font-size: 3.5rem;
    font-weight: bold;
    padding-bottom: 2rem;
    line-height: 1.0;
}

h3 {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 1rem;
    line-height: 1.0;
}

h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

li {
    font-size: 1.1rem;
}

a {
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}


/* --------------------------------------- */
/* Links */
/* --------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-link-hover);
}

/* --------------------------------------- */
/* Buttons */
/* --------------------------------------- */
button,
.button {
    display: inline-block;
    padding: 10px 25px;
    margin: 10px 0;
    border: 2px solid var(--color-button-border);
    border-radius: 30px;
    background-color: var(--color-button-bg);
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
}

button:hover,
.button:hover {
    background-color: var(--color-highlight);
    color: var(--color-text);
}

@media screen and (max-width: 768px) {
    button,
    .button {
        display: block; 
        width: fit-content; 
        margin: 2rem auto;
    }
}


.empty-page {
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 10%;
    padding-right: 10%;

}
  
/* --------------------------------------- */
/* Impressum & Datenschutz */
/* --------------------------------------- */

ul {
    list-style-type: disc;
    padding-left: 20px;
}


