/* ABOUT PAGE CSS */

.about-hero {
    position: relative;
    height: 50vh;
    background-image: url('../images/sandySprings.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-title {
    padding: 2rem 10%;
}
.about-page-title img {
    display: block;
    margin: auto;
}
.about-page-title h2 {
    color: var(--primary-red-color);
}

.about-page-title p {
    padding-top: 15px;
    line-height: 1.8;
}



.map-container {
    width: 100%;
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}


/* MOBILE */

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .reservation-container {
        padding: 1rem;
    }

    .reservation-section {
        padding: 5rem 0rem;
    }
     .map-container iframe {
        height: 350px;
    }
}