:root {
    --text-color: rgb(255, 255, 255);
    --light-color: rgb(153, 153, 153);
    --accent-color: rgb(12, 250, 169);
    --overlay-color: rgba(1, 4, 24, 0.75);
}

/* Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-200.eot');
    src: local(''),
         url('../fonts/inter-v12-latin-200.eot?#iefix') format('embedded-opentype'),
         url('../fonts/inter-v12-latin-200.woff2') format('woff2'),
         url('../fonts/inter-v12-latin-200.woff') format('woff'), 
         url('../fonts/inter-v12-latin-200.svg#Inter') format('svg'); 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-regular.eot'); 
    src: local(''),
         url('../fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), 
         url('../fonts/inter-v12-latin-regular.woff') format('woff'), 
         url('../fonts/inter-v12-latin-regular.svg#Inter') format('svg'); 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-600.eot'); 
    src: local(''),
         url('../fonts/inter-v12-latin-600.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/inter-v12-latin-600.woff2') format('woff2'), 
         url('../fonts/inter-v12-latin-600.woff') format('woff'), 
         url('../fonts/inter-v12-latin-600.svg#Inter') format('svg'); 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-v12-latin-700.eot'); 
    src: local(''),
         url('../fonts/inter-v12-latin-700.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/inter-v12-latin-700.woff2') format('woff2'), 
         url('../fonts/inter-v12-latin-700.woff') format('woff'), 
         url('../fonts/inter-v12-latin-700.svg#Inter') format('svg'); 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #010418;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.avif');
    background-size: cover;
    background-position: center;
    filter: blur(15px) grayscale(40%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: -1;
}

.main-container {
    max-width: 68.75rem;
}

.logo-wrapper {
    height: 5.875rem;
}
.logo-img {
    height: 100%;
    width: auto;

	height: auto;
	width: 50%;
}

.link-accent {
    color: var(--accent-color);
    transition: opacity 0.2s ease;
}
.link-accent:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

/* Legal modals ----------------------------------------------------------- */
/*
 * Typography in the legal modals is defined by the element hierarchy.
 * This keeps paragraphs and headings free of presentation classes.
 */
#modalImpressum .modal-header h2,
#modalDatenschutz .modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

/* Impressum: subsection headings previously styled with .fw-semibold */
#modalImpressum .modal-body h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Datenschutz: numbered main sections */
#modalDatenschutz .modal-body h3 {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-secondary-color, #6c757d);
    text-transform: uppercase;
}

/* Datenschutz: subsection headings previously styled with .fw-semibold */
#modalDatenschutz .modal-body h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Special Art. 21 DSGVO warning heading */
#modalDatenschutz .modal-body h4 > strong:only-child {
    display: block;
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.5;
    color: var(--bs-danger, #dc3545);
    text-transform: uppercase;
}

/* Notes previously styled with .small.text-muted */
#modalImpressum .modal-body small,
#modalDatenschutz .modal-body small {
    font-size: 0.875em;
    color: var(--bs-secondary-color, #6c757d);
}

