/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('../img/jungle1.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/jungle1.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.main-content {
    margin-left: 175px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ---------- HEADINGS ---------- */
h1, h2, h3 {
    text-align: center;
    text-shadow: 0 0 3px #000;
}

h1 .highlight {
    font-family: "Lobster", cursive;
    font-size: 3rem;
    letter-spacing: 0.01em;
    color: #1fad4f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* ---------- SIDEBAR ---------- */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 175px;
    height: 100vh;
    padding: 2rem calc(0.4rem + 10px);
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0,0,0,0.7);
    text-align: right;  
}

.sidebar a {
    display: block;
    padding: 0.15rem 0.35rem;
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.35s ease;
}

.sidebar a:hover {
    color: #ff4500 !important;
}

/* ---------- TOP BUTTONS ---------- */
.button-top-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

/* Kompakte Buttons */
.button-top-container a,
.button-top-container #paypal-form {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.95rem;
    border-radius: 6px;
    background: #29b162;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid #FF4500;
    min-width: 100px;
}

#paypal-form button {
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
    font-size: 0.95rem;
    cursor: pointer;
}

/* ---------- AUDIO CONTAINER ---------- */
.audio-container {
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #FF4500;
}

.audio-container audio {
    width: 100%;
    margin: 0.5rem 0 0.25rem 0;
}


.audio-container p,
.audio-container .audio-subtitle {
    font-family: inherit;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin: 0.1rem 0;
    line-height: 1.2;
}

.audio-container .dropdown {
    background: #1a8f4a;
    color: #fff;
    padding: 4px;
    margin-top: 0.25rem;
    border-radius: 5px;
    cursor: pointer;
}

.audio-container .dropdown-content {
    display: none;
    padding: 8px;
    background: rgba(0,0,0,0.6);
    border-radius: 5px;
    margin-top: 0.25rem;
}

.audio-container .dropdown-content p {
    font-weight: normal !important;
    text-align: left !important;
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    color: #fff !important;
    margin: 0.25rem 0 !important;
}

/* ---------- MOBILE ---------- */
@media (max-width: 800px) {
    .main-content {
        margin-left: 0;
        margin-top: 70px;
        padding: 0 0.5rem;
    }

    .button-top-container a #paypal-form {
        auto;
        flex: 0 0 auto;
        max-width: 320px;
    }

.button-top-container a.space-button {
        padding-left: 5px;
        padding-right: 5px;
    }

.button-top-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap; /* optional */
}
    .sidebar {
        width: 100%;
        height: 55px;
        top: 0;
        left: 0;
        padding: 0.3rem 0.2rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(8px);
    }

    .sidebar a {
        display: inline-block;
        padding: 0.15rem 0.3rem; 
        font-size: 0.85rem;
        color: #ddd;
        text-align: center;
    }

    .sidebar::-webkit-scrollbar { display: none; }
    .sidebar { -ms-overflow-style: none; scrollbar-width: none; }
}


/* ---------- RESPONSIVE SIDEBAR SHORT VERSION ---------- */
@media (max-width: 800px) {
    .sidebar a span {
        display: none; /* lange Namen ausblenden */
    }

    .sidebar a::after {
        content: attr(data-short); /* kurze Version anzeigen */
        display: inline-block;
        font-weight: 700;
        color: #ddd;
        text-align: center;
    }
}

.email-link {
    color: white;             /* Standardfarbe */
    text-decoration: none;    /* Unterstrich entfernen */
    transition: color 0.2s;   /* sanfter Farbwechsel beim Hover */
}

.email-link:hover {
    color: #FF4500;           /* orangerot */
}

