@font-face {
    font-family: "57 Futura";
    src: url("../fonts/57Futura-Regular.otf") format("opentype");
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-image: url("../images/Team_Honeybeak_Website_Background.png");
    background-size: cover;
    background-attachment: scroll;
    background-position: center top;
    padding: 0;
    margin: 0;
    font-family: "57 Futura", "Nunito", sans-serif;
    color: #432d1f;
    padding-top: 110px;
    overflow-x: hidden;
}

/* General bold text styling */
strong, b {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
}

/* Datenschutz and Impressum page styling */
.legal-page p,
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page a,
.legal-page li,
.legal-page {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #432d1f;
}

.hb-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #d79d44;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: visible;
    padding-bottom: 10px;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-logo {
    position: absolute;
    left: 1.5rem;
    bottom: -130px;
    max-width: 110px;
    height: auto;
    z-index: 1001;
}

.navbar-title {
    position: absolute;
    left: calc(1.5rem + 110px + 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    font-family: "57 Futura", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #432d1f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1001;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #f5e6d3;
    text-decoration: none;
    font-family: "57 Futura", sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    text-decoration: underline;
}

.hb-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    overflow-x: visible;
}

.hb-footer {
    margin-top: 4rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-color: #d79d44;
    padding: 0.5rem 0;
    padding-bottom: 10px;
    min-height: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-right {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: #432d1f;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
}

.footer-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar-logo {
        max-width: 80px;
        bottom: -100px;
        left: 1rem;
    }

    .navbar-title {
        left: calc(1rem + 80px + 1rem);
        font-size: 0.9rem;
    }

    .hb-navbar {
        padding-bottom: 10px;
        min-height: 60px;
    }

    body {
        padding-top: 100px;
    }

    .hb-page {
        padding: 0 1rem 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-center {
        position: relative;
        left: auto;
        transform: none;
    }

    .footer-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hb-footer {
        padding: 2rem 1rem;
        min-height: auto;
    }
}
