/* Header Section */
header {
    height: 100vh; 
    width: 100%; 
    margin: 0; 
    padding: 0;
    display: flex;
    scroll-snap-type: x mandatory; 
    overflow-x: scroll;
    scrollbar-width: none;
}
.header-picture {
    flex: 0 0 100%; 
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 100%; 
    height: 100vh; 
    margin: 0; 
    padding: 0;
    overflow: hidden;
}
header img {
    object-fit: cover;
    object-position: center;
    height: 100%; 
    width: 100%; 
    margin: 0; 
    padding: 0;
}

/* Intro Section */
#intro-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 10px 10px 10px 0px;
}
#intro-section p:first-of-type, #intro-section p:last-of-type {
    font-weight: bold;
}

/* Expect Section */
#expect-section h3 {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}
#expect-image-container picture {
    flex: 0 0 100%; 
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 100%; 
    height: 100%; 
    margin: 0; 
    padding: 0;
    overflow: hidden;
}
#expect-image-container img {
    object-fit: cover;
    object-position: center;
    height: 100%; 
    width: 100%; 
    margin: 0; 
    padding: 0;
}
#expect-section p {
    font-family: 'Cagliostro', sans-serif;
    margin: 10px 10px 5px 0px;
}
#expect-section li {
    font-family: 'Cagliostro', sans-serif;
}
#expect-section > ul:last-of-type {
    list-style-type: circle;
}

/* Kind Section */
#kind-section h3 {
    font-family: 'Times New Roman', Times, serif;
    margin: 5px 5px 5px 0px;
    padding: 0;
}
#kind-image-container picture {
    flex: 0 0 100%; 
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 100%; 
    height: 100%; 
    margin: 0; 
    padding: 0;
    overflow: hidden;
}
#kind-image-container img {
    object-fit: cover;
    object-position: center;
    height: 100%; 
    width: 100%; 
    margin: 0; 
    padding: 0;
}
#kind-section p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px 0px 5px 0px;
    padding: 0;
}
#kind-section li {
    font-family: 'Cagliostro', sans-serif;
}

/* Public Section */
#public-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 10px 10px 10px 0px;
}

/* Gallery Section */
.gallery-section {
    overflow-x: auto; 
    scrollbar-width: none;
    white-space: nowrap;
    margin-bottom: 3%;
}
.gallery-section img:hover {
    box-shadow: 5px 5px 5px gray, -5px -5px 5px gray;
}

/* Neighbourhood Section */
#neighbourhood-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 10px 10px 10px 0px;
}
#neighbourhood-section p {
    margin: 0px 0px 5px 0px;
    padding: 0;
}

/* Price Section */
#price-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 10px 10px 10px 0px;
}
#price-section p {
    margin: 5px 0px 0px 0px;
    padding: 0;
}
#price-section div {
    display: flex;
}
.type {
    flex: 1;
}
.price {
    min-width: fit-content;
}

/* Services Section */
#services-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 10px 10px 10px 0px;
}

/* Garden Section */
#garden-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 10px 10px 10px 0px;
}
#garden-section p {
    margin: 0px 0px 5px 0px;
    padding: 0;
}

/* Location Section */
#location-section h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    margin: 10px 10px 10px 0px;
}
#location-section h3 {
    font-family: 'Cagliostro', sans-serif;
    font-size: 18px;
    margin: 10px 10px 10px 0px;
}
#location-section p {
    margin: 0px 0px 5px 0px;
    padding: 0;
}


/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Header Section */
    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; 
    }
    #header-title {
        position: absolute;
        top: 50%;
        left: 25%;
        color: white;
        font-family: 'Times New Roman', Times, serif;
        font-size: 30px;
        text-transform: uppercase;
    }

    /* Intro Section */
    #intro-section {
        font-family: 'Cagliostro', sans-serif;
        text-align: center;
        padding: 10px;
        width: 90%;
        margin: 10px auto 0px auto;
        visibility: hidden;
    }

    /* Expect Section */
    #expect-section {
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 10%;
    }
    #expect-image-container { 
        width: 100%;
        height: 400px;
        margin: 0; 
        padding: 0;
        display: flex;
        scroll-snap-type: x mandatory; 
        overflow-x: scroll;
        scrollbar-width: none;
        order: 1;
        visibility: hidden;
    }
    #expect-section article {
        width: 100%;
        background-color: #FFFFF3E0;
        padding: 10px;
        order: 2;
        visibility: hidden;
    }

    /* Kind Section */
    #kind-section {
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 10%;
    }
    #kind-image-container { 
        width: 100%;
        height: 400px;
        margin: 0; 
        padding: 0;
        display: flex;
        scroll-snap-type: x mandatory; 
        overflow-x: scroll;
        scrollbar-width: none;
        visibility: hidden;
    }
    #kind-section article {
        width: 100%;
        background-color: #FFFFF3E0;
        text-align: center;
        padding: 10px;
        visibility: hidden;
    }

    /* Solo Image Section */
    #events-solo-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
        margin: 0;
        padding: 0;
        border: 0;
        visibility: hidden;
    }

    /* Public Section */
    #public-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 10px;
        width: 90%;
        margin: 10px auto 0px auto;
        visibility: hidden;
    }

    /* Neighbourhood Section */
    #neighbourhood-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 90%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Price Section */
    #price-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 90%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Services Section */
    #services-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 90%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Garden Section */
    #garden-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 90%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Location Section */
    #location-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 90%;
        margin: 0px auto 20px auto;
        visibility: hidden;
    }

}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header Section */
    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; 
    }
    #header-title {
        position: absolute;
        top: 45%;
        left: 15%;
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
    }

    /* Intro Section */
    #intro-section {
        font-family: 'Cagliostro', sans-serif;
        text-align: center;
        padding: 10px;
        width: 60%;
        margin: 10px auto 0px auto;
        visibility: hidden;
    }

    /* Expect Section */
    #expect-section {
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 5%;
    }
    #expect-image-container { 
        width: 100%;
        height: 450px;
        margin: 0; 
        padding: 0;
        display: flex;
        scroll-snap-type: x mandatory; 
        overflow-x: scroll;
        scrollbar-width: none;
        order: 1;
        visibility: hidden;
    }
    #expect-section article {
        width: 100%;
        background-color: #FFFFF3E0;
        padding: 20px 15% 20px 15%;
        order: 2;
        visibility: hidden;
    }

    /* Kind Section */
    #kind-section {
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 5%;
    }
    #kind-image-container { 
        width: 100%;
        height: 450px;
        margin: 0; 
        padding: 0;
        display: flex;
        scroll-snap-type: x mandatory; 
        overflow-x: scroll;
        scrollbar-width: none;
        visibility: hidden;
    }
    #kind-section article {
        width: 100%;
        background-color: #FFFFF3E0;
        text-align: center;
        padding: 20px 15% 20px 15%;
        visibility: hidden;
    }

    /* Solo Image Section */
    #events-solo-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
        margin: 0;
        padding: 0;
        border: 0;
        visibility: hidden;
    }

    /* Public Section */
    #public-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 60%;
        margin: 10px auto 0px auto;
        visibility: hidden;
    }

    /* Neighbourhood Section */
    #neighbourhood-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 70%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Price Section */
    #price-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 80%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Services Section */
    #services-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 60%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Garden Section */
    #garden-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 60%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Location Section */
    #location-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 60%;
        margin: 0px auto 20px auto;
        visibility: hidden;
    }

}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Header Section */
    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; 
    }
    #header-title {
        position: absolute;
        top: 45%; 
        left: 30%;
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
    }

    /* Intro Section */
    #intro-section {
        font-family: 'Cagliostro', sans-serif;
        text-align: center;
        padding: 10px;
        width: 50%;
        margin: 10px auto 0px auto;
        visibility: hidden;
    }

    /* Expect Section */
    #expect-section {
        display: flex;
        flex-flow: row nowrap;
        margin-bottom: 5%;
    }
    #expect-image-container { 
        width: 55%;
        height: 400px;
        margin: 0; 
        padding: 0;
        display: flex;
        scroll-snap-type: x mandatory; 
        overflow-x: scroll;
        scrollbar-width: none;
        order: 2;
        visibility: hidden;
        margin: auto 0 auto 0;
    }
    #expect-section article {
        width: 45%;
        height: fit-content;
        background-color: #FFFFF3E0;
        padding: 20px;
        order: 1;
        visibility: hidden;
    }

    /* Kind Section */
    #kind-section {
        display: flex;
        flex-flow: row nowrap;
        margin-bottom: 5%;
    }
    #kind-image-container { 
        width: 55%;
        height: 400px;
        padding: 0;
        display: flex;
        scroll-snap-type: x mandatory; 
        overflow-x: scroll;
        scrollbar-width: none;
        visibility: hidden;
    }
    #kind-section article {
        width: 45%;
        height: fit-content;
        background-color: #FFFFF3E0;
        padding: 20px;
        margin: auto 0 auto 0;
        visibility: hidden;
    }

    /* Solo Image Section */
    #events-solo-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
        margin: 0;
        padding: 0;
        border: 0;
        visibility: hidden;
    }

    /* Public Section */
    #public-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 10px;
        width: 50%;
        margin: 10px auto 0px auto;
        visibility: hidden;
    }

    /* Neighbourhood Section */
    #neighbourhood-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 50%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Price Section */
    #price-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 60%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Services Section */
    #services-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 50%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Garden Section */
    #garden-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 50%;
        margin: 0px auto 0px auto;
        visibility: hidden;
    }

    /* Location Section */
    #location-section {
        font-family: 'Cagliostro', sans-serif;
        padding: 0;
        width: 50%;
        margin: 0px auto 20px auto;
        visibility: hidden;
    }

}