/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}

/* Header */
header {
    background: #000;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.instagram-link img {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.instagram-link img:hover {
    transform: scale(1.1);
}

/* Bio */
.bio, .achievements, .gallery {
    padding: 50px 20px;
    text-align: center;
}

h2, h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Erfolge */
.accordion {
    margin-top: 20px;
}

.accordion-button {
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.accordion-button:hover {
    color: #ccc;
}

.accordion-content {
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
}

.quote {
    font-size: 20px;
    font-style: italic;
    margin-top: 20px;
}

.spacer {
    height: 30px;
}

/* Galerie */
.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-container {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

.gallery-item {
    width: 300px;
    height: 200px;
    margin: 0 10px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 30px;
    cursor: pointer;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

/* Sprache auswählen */
.language-selector {
    margin-top: 20px;
    text-align: center;
}

.language-selector button {
    background: #000000;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.language-selector button:hover {
    background: white;
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: white;
}
