/* ==============================
   Global Styles
============================== */
body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #000000;   /* <-- hier kannst du die Hintergrundfarbe ändern */
    margin: 0;
    padding: 2rem;
    padding-top: 80px;     /* Platz für fixierten Header */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==============================
   Header
============================== */
header {
    position: fixed;
    top: 0;
    left: 2rem;
    width: calc(100% - 4rem);
    background-color: #000000;
    z-index: 1000;
    padding: 0.5rem 1rem;
    box-shadow: 0 0px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}

/* Open Sans Font */
.open-sans {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* ==============================
   Globaler Seitentitel
============================== */
header .site-title {
    flex: 1;                 /* nimmt ganze Breite ein */
    text-align: center;      /* Text zentrieren */
    align-self: center;      /* vertikal mittig */

}

header .site-title a {
    text-decoration: none;
    color: #000000;
    font-size: inherit;
}
.site-title a:hover {
    color: #FF6F61;
}
.site-title img{
    max-height: 45px;   /* Größe anpassen */
    height: auto;
    width: auto;
    display: block;
    margin-left: 20px;     /* zentrieren */
    transition: transform 0.3s ease, filter 0.3s ease;
}
/* Hover Effekt */
.site-title img:hover {
    transform: scale(1.05);        /* leichtes Vergrößern */
    filter: brightness(0) saturate(100%) invert(47%) sepia(62%) saturate(450%) hue-rotate(330deg) brightness(95%) contrast(90%);
}


/* ==============================
   Navigation
============================== */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
    color: #f3ece4;
    font-weight: bold;
    font-size: 0.8rem;
}
.site-nav a:hover {
    color: #FF6F61;
}

/* ==============================
   Fließtext Links
============================== */
a {
    color: #f3ece4;
    text-decoration: none;
}
a:hover {
    color: #FF6F61;
}


/* ==============================
   Footer
============================== */
footer {
    padding: 1rem;
    background-color: #000000;
    text-align: left;
    font-size: 0.8rem;
    color: #f3ece4;
    position: relative;
    width: 100%;
    margin-top: auto;
}

/* ==============================
   About Section
============================== */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.about-text {
    max-width: 600px;
    text-align: center;
    margin-bottom: 3rem;
    padding-left: 0rem;
}

.about-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f3ece4;
}

.about-text p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #f3ece4;
    line-height: 1.3;
}

.PabloJucker {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* ==============================
   Responsive Styles
============================== */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }

    .about-text {
        width: 100%;
        max-width: 800px;
        margin-bottom: 3rem;
        padding-left: 2rem;
        text-align: right;
    }

    .about-text h1 {
        font-size: 0.9rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .PabloJucker {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .about-text {
        width: 95%;
    }
}


