/* Header Section */
header {
    height: 100vh; 
    width: 100%;
    position: relative;
}

/* Accommodation Title */
#accommodation-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
    text-align: center;
    margin: 10px;
}

/* Guest Section */
#guest-section {
    visibility: hidden;
}
.guest-section-card-picture {
    width: 300px;
    height: 400px;
}
.guest-section-card-picture img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.guest-section-card-text-container h3, 
.guest-section-card-text-container p {
    font-family: 'Cagliostro', sans-serif;
}
#guest-section-article {
    padding: 20px;
}
#guest-section-article h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    text-align: center;
    margin: 10px;
}

/* Gallery Section */
.gallery-section {
    overflow-x: auto; 
    scrollbar-width: none;
    white-space: nowrap;
}
.gallery-section img:hover {
    box-shadow: 5px 5px 5px gray, -5px -5px 5px gray;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Header Section */
    #header-picture {
        width: 100vw;
        height: 100vh;
    }
    header img {
        object-fit: cover;
        object-position: center;
        height: 100%; 
        width: 100vw;
    }
    header nav {
        position: absolute;
        top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 20px);
        padding: 0px 10px 0px 10px;
    }
    header h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 30px; 
        color: white; 
    }
    h1 {
        color: white;
        font-family: 'Times New Roman', Times, serif;
        font-size: 30px;
        text-transform: uppercase;
        position: absolute;
        top: 45%;
        left: 15%;
    }

    /* Guest Section */
    #guest-section-cards-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto; 
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        margin-bottom: 3%;
    }
    #guest-section h2 {
        font-family: 'Times New Roman', Times, serif;
        font-size: 25px;
        text-align: center;
        margin: 20px;
    }
    .guest-section-card {
        margin: 10px;
        display: flex;
        flex-direction: column;
        scroll-snap-align: start;
        scroll-margin: 10px;
    }
    .guest-section-card-text-container {
        width: 300px;
        height: fit-content;
        display: block;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header Section */
    #header-picture {
        width: 100%; 
        height: 100vh; 
    }
    header img {
        object-fit: cover;
        height: 100%; 
        width: 100%; 
    }
    header nav {
        position: absolute;
        top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 60px);
        padding: 0px 30px 0px 30px;
    }
    header h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 40px; 
        color: white; 
    }
    h1 {
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
        position: absolute;
        top: 45%;
        left: 30%;
    }

    /* Guest Section */
    #guest-section-cards-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto; 
        overflow-y: hidden;
        scrollbar-width: thin;
        margin-bottom: 3%;
    }
    #guest-section h2 {
        font-family: 'Times New Roman', Times, serif;
        font-size: 25px;
        text-align: center;
        margin: 20px;
    }
    .guest-section-card {
        margin: 10px;
        display: flex;
        flex-direction: column;
    }
    .guest-section-card-text-container {
        width: 300px;
        height: 400px;
        display: none;
    }

}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Header Section */
    #header-picture {
        width: 100%;
        height: 100vh; 
    }
    header img {
        object-fit: cover;
        object-position: center;
        height: 100%; 
        width: 100%;
    }
    header nav {
        position: absolute;
        top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 60px);
        padding: 0px 30px 0px 30px;
    }
    header h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 40px; 
        color: white; 
    }
    h1 {
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
        position: absolute;
        top: 45%; 
        left: 35%;
    }

    /* Guest Section */
    #guest-section-cards-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 3%;
    }
    #guest-section h2 {
        font-family: 'Times New Roman', Times, serif;
        font-size: 25px;
        text-align: center;
        margin: 20px;
    }
    .guest-section-card {
        margin: 10px;
        display: flex;
        flex-direction: column;
    }
    .guest-section-card-text-container {
        width: 300px;
        height: 400px;
        display: none;
    }

}