/* Grundfarben */
:root {
    --dunkelgruen: #3a4a3f;
}

/* Fonts */
@font-face {
  font-family: 'Britannic';
  src: url('font/Britannic Bold Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Cambay-Regular';
    src: url('font/Cambay-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Cambay-Bold';
    src: url('font/Cambay-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins-Light';
    src: url('font/Poppins/Poppins-Light.ttf') format('truetype');
}

/* Body & Hintergrund */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins-Light', sans-serif;
}

/* Hintergrund-Ebenen */
.bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

/* Navigation Pfeil */
.nav-arrow {
    position: fixed;
    right: 30px;        
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid rgba(255,255,255,0.47);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    color: rgba(255,255,255,0.55);
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
.nav-arrow:hover {
    background-color: rgba(255,255,255,0.15);
}

/* Überschriften */
h1 {
    font-family: 'Britannic';
    font-size: 75px;
    color: white;
    margin-top: -40px;
    padding-left: 4%;
}
h2 {
    font-family: 'Cambay-Regular';
    font-size: 40px;
    color: white;
    padding-top: 25%;
    padding-left: 4%;
}

/* Button */
.button {
    position: fixed;
    right: 120px;
    top: 77%;
    transform: translateY(-50%);
    padding: 14px 28px;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background-color: transparent;
    border: 2px solid #ffffff49;
    border-radius: 999px;
    text-decoration: none; /* für <a> */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.button:hover {
    background-color: #cbcccb61;
    transition: 0.1s ease-in-out;
}

/* Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6%;
}
.footer-left {
    color: #aaa;
    font-size: 14px;
    font-family: 'Poppins-Light';
    margin-left: 4%;
}
.footer-right {
    display: flex;
    gap: 15px;
    padding-right: 150px;
}
.footer-right a {
    color: #aaa;
    font-size: 14px;
    font-family: 'Poppins-Light';
}
.footer-right a:hover {
    color: #fff;
}
