/* HTML & Body für Sticky Footer */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ffffff);
    color: #333;
    display: flex;
    flex-direction: column;
}

/* Banner */
.video-div {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 0;
    overflow: hidden;
}

.video-div .trailer {
    position: relative;
    top: -575px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: none;
}

/* Navigation */
.navbar {
    background: #2c3e50;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0%;
    z-index: 100;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navbar a:hover {
    color: #df30aa;
}

/* Überschrift für die Team-Sektion */
.team-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Kategorie-Überschriften */
.team-category h3 {
    font-size: 1.8em;
    color: #f39c12;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

/* Team-Container für jede Kategorie */
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Einzelne Team-Mitglieder */
.team-member {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.team-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #f39c12;
}

.team-member p {
    font-size: 0.9em;
    color: #555;
}

/* Projekte-Sektion */
.projects-section {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
}

.projects-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 300px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

.project-link {
    display: inline-block;
    padding: 10px 15px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.project-link:hover {
    background: #df30aa;
}

/* Über Mich Sektion */
.about-section {
    padding: 40px 20px;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.profile-picture {
    width: 342px;
    height: 329px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.about-content {
    flex: 2;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Kontaktformular */
.contact-section {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.btn-submit {
    padding: 10px 20px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #df30aa;
}

/* Server-Info */
.server-info {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
}

.server-info ul {
    list-style: none;
    padding: 0;
}

.server-info li {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Server-IP */
.server-ip {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background: #3498db;
    color: white;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
}

.ip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#server-ip {
    font-size: 1.5em;
    font-weight: bold;
    background: white;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
}

#copy-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#copy-btn:hover {
    background: #27ae60;
}

/* Server-Bild */
.server-image {
    text-align: center;
    margin: 20px auto;
    display: block;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-icons img {
    width: 35px;
    height: 35px;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .profile-picture {
        width: 150px;
        height: 150px;
    }

    .about-content {
        width: 90%;
        padding: 15px;
    }
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.footer-content a {
    color: #f39c12;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}
