html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Verdana', sans-serif;
    font-size: 18px;
}
* {
    box-sizing: border-box;
}
.content {
    position: relative; /* Make this a positioning context */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 12vh;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 3%;
}
.background {
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.55;
} 
.logo {
    margin-bottom: 50px;
}
.logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    color: rgb(24, 23, 23);
}
.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: #333;
    height: 30vh;
}
.largetext {
    font-size: 22px;
}
.address {
    text-align: center;
}
.company-info {
    position: absolute;  /* Absolutely position the box */
    bottom: 2px;        /* Distance from the bottom */
    left: 2px;          /* Distance from the left */
    padding: 10px;
    text-align: center;
    background-color: #323030;
    color: rgb(223, 214, 223);
    display: inline-block;
    border-radius: 20px;
}
/* ============================================================
   Cross-site navigation bar (added)
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    display: flex;
    background: rgba(50, 48, 48, 0.82);
    border-bottom-left-radius: 12px;
    overflow: hidden;
}
.site-nav a {
    display: block;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(223, 214, 223, 0.75);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: #FFEC8A; background: rgba(255,255,255,0.06); }
.site-nav a.active { color: #FFEC8A; }

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 16px;
    right: 10%;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(223, 214, 223, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(223,214,223,0.4), transparent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.35} 50%{opacity:1} }

/* ============================================================
   Impressum section (scrollable below hero)
   ============================================================ */
.impressum-section {
    background: #1e1c1c;
    color: rgb(223, 214, 223);
    padding: 60px 40px 80px;
    font-family: 'Verdana', sans-serif;
    font-size: 14px;
    line-height: 1.9;
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
}
.impressum-section .imp-inner {
    max-width: 700px;
    margin: 0 auto;
}
.impressum-section h1 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #FFEC8A;
    margin: 0 0 6px;
}
.impressum-section .imp-subtitle {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(223,214,223,0.45);
    margin-bottom: 40px;
}
.impressum-section h2 {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FFEC8A;
    margin: 32px 0 8px;
}
.impressum-section p,
.impressum-section address {
    font-size: 13px;
    color: rgba(223,214,223,0.65);
    font-style: normal;
    margin: 0;
}
.impressum-section a { color: #FFEC8A; text-decoration: none; }
.impressum-section a:hover { text-decoration: underline; }
.impressum-section .imp-divider {
    width: 40px; height: 1px;
    background: rgba(255,236,138,0.3);
    margin: 40px 0;
}
