body {
    margin: 0;
    color: #ffffff;
    background-color: black;
    font-family: 'Lora', serif;
}

p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD700;
    /* Heller Goldfarbton */
}

.text-center {
    text-align: center;
}

.center {
    text-align: center;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;

}

.glanz-gold {
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;

}

.glanz-gold-text-left {
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;

}

@keyframes gold-glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    }

    100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
}

.nav-link {
    font-family: 'Lora', serif;
    font-size: 1rem;
}

/* Menüleiste etwas anpassen */
.navbar-nav .nav-link {
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
}

.navbar-nav .nav-link:hover {
    color: #ddd !important;
}


.bg-black {
    background-color: black !important;
}

.bg-secondary {
    background-color: rgba(255, 215, 0, 0.1) !important;
    /* leicht transparentes Gold */
}

.text-warning {
    color: #FFD700 !important;
    /* Goldfarbton */
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;
}

/* Hero mit voller Viewport-Höhe */
.hero {
    background: url('../img/gesicht-mit-hand-breiter-1400px.jpg') no-repeat 20% center;
    background-size: contain;
    background-color: black;
    height: 100vh;
    /* volle Höhe des Viewports */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0px 50px;
}


.hero h1,
.hero p {
    animation: gold-glow 3s infinite;
}


/* Schriftart */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Inhalt über der Überlagerung */
.hero .content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Steckbrief mit voller Viewport-Höhe */
.steckbrief {
    background: url('../img/steckbrief.jpg') no-repeat center center;
    background-size: contain;
    background-color: black;
    height: 100vh;
    /* volle Höhe des Viewports */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 15px 50px;
}


/* Schriftfarbe */
.steckbrief h2,
.steckbrief h3,
.steckbrief p {
    color: #FFD700;
    /* Goldfarbton */
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
}

/* Schriftart */
.steckbrief h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.steckbrief h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.steckbrief p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Inhalt über der Überlagerung */
.steckbrief .content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Accordion-Focus Farbe ändern */
.accordion-button {
    background-color: #000;
    /* Schwarzer Hintergrund */
    color: #FFD700;
    /* Goldene Schriftfarbe */
    font-weight: bold;
    border: 1px solid #FFD700;
}

.accordion-button:not(.collapsed) {
    /*background-color: #FFD700;*/
    background: linear-gradient(135deg,
            #FFD700 0%,
            #FFEC8B 25%,
            #FFFACD 50%,
            #FFEC8B 75%,
            #FFD700 100%);
    /* Dunkleres Schwarz für aktiven Zustand */
    color: #1a1a1a;
    box-shadow: inset 0 -1px 0 #FFD700;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
    /* Goldener Fokus-Ring */
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(91%) sepia(96%) saturate(748%) hue-rotate(1deg) brightness(103%) contrast(101%);
}

.accordion-body {
    background-color: #121212;
    /* Goldenen Hintergrund für den Inhalt */
    color: #FFD700;
    /* Schwarze Schriftfarbe */
    border-top: 1px solid #FFD700;
}


/* Galerie */

/* Bildfüllung ohne Verzerrung */

.gallery-img {
    width: 100%;
    height: 100%;
    /* Feste Höhe */
    object-fit: cover;
    /* Füllt den Container ohne Verzerrung */
    object-position: center;
    /* Fokus auf Bildmitte */
}

.gallery-card {
    background-image: url('bild.jpg');
    background-size: cover;
    /* oder contain */
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
}

.magic-mask {
    -webkit-mask-image: radial-gradient(circle, black 50%, transparent 100%);
    mask-image: radial-gradient(circle, black 50%, transparent 100%);
}

.img-overlay {
    position: relative;
}

.img-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 27, 109, 0.3), rgba(0, 0, 0, 0.7));
}

.gallery-img {
    transition: transform 0.5s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.card {
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
}

.magic-gold-border {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Pulsierender Animationseffekt */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 5px #FFD700;
    }

    50% {
        box-shadow: 0 0 20px #FFD700;
    }

    100% {
        box-shadow: 0 0 5px #FFD700;
    }
}

.magic-gold-border:hover {
    animation: pulse-gold 2s infinite;
}



.divider-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.divider-image {
    max-width: 100%;
    height: auto;
    width: 400px;
    /* Oder passe die Größe nach Bedarf an */
    image-rendering: auto;

}

/* Galerie Text unter den Bildern */
#galerie h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 10px;
    /*color: #3a79d8 !important;*/
    /* Goldfarbton */
    text-align: center;

}

.datum-center {
    display: flex;
    justify-content: center;
}




/* Datenschutzerklärung */

.datenschutz h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
   
}

.datenschutz h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.datenschutz h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.datenschutz p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD700;
    /* Heller Goldfarbton */
}