@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300;400;700&display=swap');

#schedule-visit {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../assets/Key-Image-Night-02-scaled.webp");
    background-size: cover;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding: 1rem auto;
}

#schedule-visit h1 {
    color: #EAA512;
    font-family: "Averia Serif Libre", sans-serif;
    font-size: 66px;
    -webkit-text-stroke-width: 0.21px;
    stroke-width: 0.21px;
    -webkit-text-stroke-color: #FFFFFF;
    stroke: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.49);
}

#schedule-visit p {
    color: #FFFFFF;
    font-family: "Averia Serif Libre", sans-serif;
    font-size: 66px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.49);
}

/* Button Styling */
.btn-visit {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #E5BC5D;
    color: white;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-visit:hover {
    background-color: white;
    color: #E5BC5D;
}

.top-vector, .bottom-vector {
    position: absolute;
    width: 100%;
    height: auto;
}

.top-vector {
    top: 0;
}

.bottom-vector {
    bottom: 0;
}

@media (max-width: 768px) {
    #schedule-visit h1, #schedule-visit p {
        font-size: 45px;
    }
}
