   /* Grundlayout */
body {
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
    background: #ffffff;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(to bottom, #ffffff, #e6e6e6);
    border-bottom: 2px solid #d0d0d0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo img {
    width: 40px;
}

.title {
    font-size: 28px;
    font-weight: bold;
    color: #4aa3ff;
    text-shadow: 0 0 5px #bcdcff;
}

/* Navigation */
.nav {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    padding: 6px 12px;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #dcdcdc;
    transition: 0.2s;
}

.nav a:hover {
    background: #dff0ff;
    border-color: #a7d4ff;
    color: #0077ff;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    background: #dff0ff;
    border: 1px solid #a7d4ff;
    border-radius: 10px;
    text-decoration: none;
    color: #0077ff;
    font-weight: bold;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    text-align: center;
    padding: 20px 40px;
    color: #ffffff;
    font-size: 0.88rem;

    z-index: 1000;
}

/* Content Box */
.content-box {
    width: 80%;
    margin: 40px auto;
    padding: 30px;
    background: #fafafa;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Bildplatzhalter */
.image-box {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e6e6e6, #ffffff);
    border: 2px dashed #b5b5b5;
    border-radius: 12px;
    margin-bottom: 20px;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: contain; /* Bild wird NICHT beschnitten */
    background: #fff;     /* Weißer Hintergrund für unterschiedliche Formate */
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 5px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}



/* Hintergrundvideo */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Video hinter allem */
}


/* About Me Layout */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    color: rgb(11, 8, 8);
}

/* Boxen */
.about-box, .hobby-box, .dreams-box, .table-section {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Überschriften */
.about-box h2, .hobby-box h2, .dreams-box h2, .table-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
}

/* Hobbys */
.hobby-box ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
    line-height: 1.8;
}

/* Tabelle */
.like-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 18px;
}

.like-table th {
    background-color: #4da3ff;
    color: white;
    padding: 12px;
    border: 1px solid #1f5fa8;
}

.like-table td {
    padding: 12px;
    border: 1px solid #1f5fa8;
    background: rgba(255, 255, 255, 0.3);
}

/* Extra Abschnitt */
.dreams-box p {
    font-size: 18px;
    line-height: 1.7;
}
