:root {
    --primary-color: #8BC34A;
    --secondary-color: #E0E0E0;
    --text-color: #333;
}

/* geist-200 - latin */
@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 200;
    src: url('fonts/geist-v3-latin-200.woff2') format('woff2');
}

/* geist-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Geist';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/geist-v3-latin-regular.woff2') format('woff2');
}

body {
    margin: 0;
    font-family: "Geist", sans-serif;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    font-weight: 100;
}

a {
    color: var(--text-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

p {
    font-weight: 200;
    line-height: 1.4;
    font-size: 1.2rem;
    margin: 0;
}

h2 {
    font-weight: 400;
    margin: 0;
    padding: 12px;
    font-size: 1.6rem;
}

h1 {
    text-align: center;
    color: var(--primary-color);

}

.logo {
    height: 40vh;
    margin-bottom: 10px;
    max-width: 80%;
}

.full-screen {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(2px);
    }
}

#home {
    color: #fbfbfb;
}

#home h2 {
    font-weight: 200;
    padding: 0 6vw;
    text-align: center;

}

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #fbfbfb;
    animation: bounce 1s infinite;
}


.content-section {
    padding: 20px 25vw;
    text-align: center;
}

.content-section h2 {
    color: var(--primary-color);
}

address {
    font-style: normal;
    font-size:1.2rem;
    text-align: center;
    margin-bottom:10px;
}

footer {
    background-color: var(--secondary-color);
    padding: 20px;
    text-align: center;
}
footer a {
    font-size: 1.2rem;
}
footer p {
    margin-top:20px;
}

@media (max-width: 768px) {
    .content-section {
        padding: 20px;
    }

    .content-section h2 {
        padding-bottom: 2rem;
    }
}