/* AMÖ Corporate Identity CSS */

@font-face {
  font-family: 'Nexa Book';
  src: url('/static_files/fonts/NexaBook.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa Black Italic';
  src: url('/static_files/fonts/NexaBlackItalic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

div.elevate-submission-form-group {
    padding-bottom: 20px;
}

:root {
    /* amoe specific colors and styles */
    --amoe-primary-rgb: 157, 3, 119;
    --amoe-border-color: #cccccc;
    --amoe-primary-color: #9D0377;
    --amoe-secondary-color: #F4A900;

    /* Bootstrap overrides */
    --bs-primary: var(--amoe-primary-color);
    --bs-primary-rgb: var(--amoe-primary-rgb);
    --bs-secondary: var(--amoe-secondary-color);
}


a {
    color: var(--amoe-primary-color);
}
a:hover {
    color: var(--amoe-secondary-color);
}

/* Allgemeine Stile */
body {
    font-family: "Nexa Book", sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 100px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Nexa Black Italic", sans-serif;
    color: black;
}

h1 {
    color: var(--amoe-secondary-color);
}

/* Header */
header {
    padding: 15px;
    text-align: center;
}

/* Buttons */
button, .btn {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover, .btn:hover {
    background-color: var(--amoe-secondary-color);
}

/* Formulare */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid var(--amoe-border-color);
    border-radius: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.double-line-box {
    position: relative;
    padding-left: 20px; /* Abstand für die Linien */
    margin: 0px;
    border-radius: 8px;
}

.double-line-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: red;
}

.double-line-box::after {
    content: "";
    position: absolute;
    left: 6px; /* 5px Linie + 5px Abstand */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: red;
}
