/* ============================================
   Basis-Reset & Hintergrund
   ============================================ */
   html, body {
    height: 100%;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: white;
    background: url('/images/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Goldene Text-Klasse */
.text-gold {
    color: #d4af37 !important;
}

/* ============================================
   Links & Standard-Buttons
   ============================================ */
a, .btn-link {
    color: #0071c1;
    text-decoration: none;
}
a:hover, .btn-link:hover {
    text-decoration: underline;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* ============================================
   Gold-on-Black Buttons (Nav & überall)
   ============================================ */
.btn-goldblack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8rem;
    height: 3rem;
    padding: 0 1rem;
    background-color: rgba(0, 0, 0, 0.55);
    color: #d4af37;
    border: 1px solid #d4af37;
    text-align: center;
    white-space: nowrap;
}
.btn-goldblack:hover,
.btn-goldblack:focus {
    background-color: #000;
    color: #ffd54f;
    border-color: #ffd54f;
}

/* ============================================
   Content-Abstand & Utilities
   ============================================ */
.content {
    padding-top: 1.1rem;
}

/* Responsive-Iframe & Video-Wrapper */
.ratio {
    position: relative;
    width: 100%;
}
.ratio-4x3 {
    padding-bottom: 75%;
}
.ratio-4x3 > iframe,
.video-responsive > video,
.video-responsive > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Formular-Grundstyles */
.form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    color: #000;
}

/* Validierungs-Markierungen */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}
.invalid {
    outline: 1px solid red;
}
.validation-message {
    color: red;
    font-size: 0.9rem;
}

/* ============================================
   Cookie-Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    z-index: 2000;
}
.cookie-banner__message {
    flex: 1 1 auto;
    margin-right: 1rem;
}
.cookie-banner__link {
    color: #ffd54f;
    text-decoration: underline;
}
.cookie-banner__buttons {
    flex: 0 0 auto;
}
.cookie-banner button {
    margin-left: 0.5rem;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */
/* Kleinere Handys (bis 320px) */
@media (max-width: 320px) {
    .btn-goldblack {
        min-width: 6rem;
        height: 2.5rem;
        padding: 0 0.5rem;
        font-size: 0.9rem;
    }
    .cookie-banner {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    .form-control {
        font-size: 0.9rem;
    }
}

/* Smartphones Hochformat (bis 480px) */
@media (max-width: 480px) {
    .btn-goldblack {
        min-width: 7rem;
        height: 2.75rem;
        font-size: 0.95rem;
    }
    .content {
        padding-top: 0.8rem;
    }
    .form-label {
        font-size: 0.95rem;
    }
}

/* Smartphones Querformat & kleine Tablets (bis 768px) */
@media (max-width: 768px) {
    html, body {
        background-position: top center;
    }
    .btn-goldblack {
        min-width: 8rem;
        height: 3rem;
        font-size: 1rem;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__buttons {
        margin-top: 0.5rem;
        width: 100%;
        text-align: right;
    }
}

/* Tablets & kleine Laptops (bis 1024px) */
@media (max-width: 1024px) {
    .btn-goldblack {
        min-width: 9rem;
        height: 3.25rem;
    }
    .form-control {
        font-size: 1rem;
    }
}

/* Große Bildschirme (ab 1025px) */
@media (min-width: 1025px) {
    .btn-goldblack {
        min-width: 10rem;
        height: 3.5rem;
    }
}

