html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    font-family: 'Montserrat';
    background-color: white;
}

h1 {
    margin-top: 0;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    color: rgb(77, 47, 19);
}

h2 {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: rgb(77, 47, 19);
    font-size: 1.875em;
}

h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6em;
}

.desktop-ver {
    display: block;
}

.mobile-ver {
    display: none !important;
}

.main-title {
    color: white;
    font-size: 3em;
}

.introduction-container {
    background-image: linear-gradient(rgba(77, 47, 19, 0.3), rgb(255, 255, 255, 0)), url(assets/Cover\ Photo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-align: center;
}

.spacing {
    height: 10%;
}

.introduction-words {
    border-radius: 15px;
    margin: 0px 120px;
}

.intro-title {
    background: rgba(255, 255, 255, 0.19);
    border-radius: 16px;
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
    color: rgb(77, 47, 19);
}

.intro-subtitle {
    background: rgba(255, 255, 255, 0.19);
    border-radius: 16px;
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
}

.introduction-words {
    max-width: 1000px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.introduction-button-container {
    display: flex;
    flex-direction: row;
    margin: 0px 0px 60px 0px;
    justify-content: center;
}

.introduction-button {
    text-decoration: none;
    color: rgb(85, 55, 28);
    font-weight: bold;
    background-color: #f1e9d1;
    border: 1px solid rgb(85, 55, 28);
    border-radius: 15px;
    padding: 15px;
    margin: 10px;
    display: block;
}

.introduction-button:hover {
    transition: 0.5s;
    background-color: rgb(85, 55, 28);
    color: #f1e9d1;
}

.filled {
    background-color: rgb(85, 55, 28);
    border: 2px solid rgb(85, 55, 28);
    color: #f1e9d1;
}

.filled:hover {
    transition: 0.5s;
    background-color: #f1e9d1;
    border: 1px solid rgb(85, 55, 28);
    color: rgb(85, 55, 28);
}

section {
    max-width: 1400px;
    margin: 0px auto;
    padding-bottom: 2.5em;
}

.three-photo-container {
    display: grid;
    width: 100%;
    grid-template-columns: auto auto auto;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.three-photo-container div img {
    width: 100%;
}

.two-photo-container {
    display: grid;
    width: 100%;
    grid-template-columns: auto auto;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}

.two-photo-container div img {
    width: 100%;
    object-fit: cover;
}

.one-photo-container {
    width: 40%;
}

.one-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-grid {
    display: flex;
    flex: 1 25%;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 30px;
}

.amenities-card {
    width: 125px;
    height: 125px;
    padding: 10px;
}

.amenities-card img {
    max-width: 3vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: invert(58%) sepia(15%) saturate(741%) hue-rotate(350deg) brightness(88%) contrast(91%);
}

.amenities-card p {
    text-align: center;
}

.brown-button {
    padding: 20px 30px;
    color: #f1e9d1;
    font-weight: bold;
    background-color: rgb(85, 55, 28);
    border: 1px solid rgb(85, 55, 28);
    border-radius: 15px;
    display: block;
    margin: 0px auto;
    font-family: 'Montserrat';
    font-size: 1.0em;
}

.brown-button:hover {
    transition: 0.5s;
    cursor: pointer;
    background-color: #f1e9d1;
    color: rgb(85, 55, 28);
}

.insta-button a {
    width: 100px;
    text-decoration: none;
    text-align: center;
}

#remaining-amenities {
    display: none;
}

.guest-review-container {
    text-align: center;
}

footer {
    background-color: #f8e0bd;
    color: black;
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 600px;
    margin: 0px auto;
    padding: 0;
}

.footer-top div {
    flex: 2;
    margin: 15px 15px;
    text-align: left;
}

.footer-top div:last-child {
    flex: 1;
}

.social-links a {
    text-decoration: none;
    color: black;
}

.social-links a:hover {
    transition: 0.5s;
    color: #9D8164;
}

.footer-bottom {
    max-width: 800px;
    margin: 0px auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
}

@media screen and (max-width: 1200px) {
    .desktop-ver {
        display: block;
    }

    .introduction-words {
        height: 80%;
    }

    .mobile-ver {
        display: none;
    }

    section {
        width: 80%;
        margin: 0px auto;
        padding-bottom: 1.25em;
    }

    .one-photo-container {
        width: 100%;
    }

    .amenities-card img {
        width: 6vw;
        max-width: 10vw;
    }
}


@media screen and (max-width: 800px) {
    h2{
        font-size: 1.2em;
    }

    .desktop-ver {
        display: none;
    }

    .mobile-ver {
        display: block !important;
    }

    .intro-title {
        margin-top: 15vw;
    }

    .introduction-words {
        margin: 0px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .spacing {
        height: 0;
    }

    .introduction-button-container {
        flex-direction: column;
        margin: 0px 0px 30px 0px;
    }

    section {
        padding-bottom: 1.25em;
    }

    .amenities-card img {
        width: 10vw;
        max-width: 10vw;
    }

    .amenities-grid {
        gap: 0px;
        padding-top: 0px;
    }

    .three-photo-container,
    .two-photo-container,
    .one-photo-container {
        grid-template-columns: auto;
    }

    .one-photo-container {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .footer-top div {
        flex: 1;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .footer-top div:last-child {
        flex: 1;
    }

    .footer-top div h5 {
        margin: 0;
    }

    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}