@font-face {
    font-family: 'CustomFont';
    src: url('./Sakana.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'CustomFont', serif;
}

body,
html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    scroll-behavior: smooth;
}

.hero {
    position: relative;
    height: 100vh;
    background: url(https://images.unsplash.com/photo-1485291571150-772bcfc10da5?q=80&w=1228&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) no-repeat center center/cover;
    color: #f5f5f5;
    text-align: center;
}

.section {
    position: relative;
    height: 100vh;
    background-image: url(https://images.unsplash.com/photo-1712259963960-b87586c9b20a?q=80&w=1130&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeIn 2s ease-in;
}

.content h1 {

    font-size: 5em;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.content p {
    font-size: 1.2em;
    font-weight: 300;
    /* max-width: 600px; */
    margin: auto;
    line-height: 1.6;
    font-family: 'CustomFont', sans-serif;
}

.section .content h1 {
    text-align: center;
    color: white;
    font-size: 4em;
}

.section .content p {
    text-align: center;
    color: white;
    font-size: 1.1em;
}

.scroll-indicator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.forest {
    background: url(./forest.jpg) no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    position: relative;
}


.forest-content {
    margin: 10vw 10vw;
    max-width: 60%;
    position: absolute;
    color: black;
    text-align: center;
    animation: fadeIn 2s ease-in;
    position: absolute;
    z-index: 2;

}

.forest-content h1 {
    font-family: 'CustomFont', serif;
    font-size: 3.5em;
    margin-bottom: 5px;
    letter-spacing: 1px;

}

.forest-content h2 {
    font-family: 'CustomFont', serif;
    font-size: 3em;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.forest-content p {
    color: #211d1d;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'CustomFont', sans-serif;
    margin-bottom: 10px;
}

button {

    background-color: transparent;
    color: black;
    border: 2px solid black;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'CustomFont', serif;

}

a {
    text-decoration: none;
    color: inherit;
}


@keyframes bounce {

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

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


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .content h1 {
        font-size: 2em;
    }

    .content p {
        font-size: 1em;
    }
}