* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: white;

    cursor: url("img/hase.png") 12 12, auto;
}

body {
    background: url("img/hintergrundbild.jpg") center center / cover no-repeat fixed;
    position: relative;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: -1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 24px;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.logo-container {
    width: 60vw;
    display: flex;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    max-width: 900px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

.burger-wrapper {
    position: absolute;
    top: 24px;
    left: 24px;
}

#burger-btn {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

#burger-btn span {
    width: 34px;
    height: 4px;
    background: white;
    border-radius: 5px;
}

#dropdown-menu {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    overflow: hidden;
}

#dropdown-menu.active {
    display: flex;
}

#dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    transition: background 0.3s ease;
}

#dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

main {
    position: fixed;
    top: 170px;
    bottom: 70px;
    left: 0;
    width: 100%;
    overflow-y: auto;
    padding: 2rem;
    font-size: 1.7rem;
}

.content-box {
    background: rgba(255, 255, 255, 0.50);
    color: black;
    backdrop-filter: blur(6px);
    border-radius: 22px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.album-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.album-text {
    flex: 1;
    min-width: 250px;
}

.album-text h2,
.events-section h2,
.gallery-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.album-cover {
    width: 300px;
    max-width: 100%;
}

.album-cover img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.events-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    background: rgba(183, 214, 176, 0.9);
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    z-index: 1000;
}

footer a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-rabbit {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 900px) {

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-container {
        width: 75vw;
    }

    .social-icons {
        gap: 1rem;
    }

    main {
        top: 240px;
    }

    .album-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .logo-container {
        width: 85vw;
    }

    .social-icons a {
        font-size: 1.4rem;
    }

    main {
        padding: 1rem;
        top: 260px;
    }

    footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}