/* 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 p:first-of-type {
    text-align: center;
    font-size: 20px;
}

/* Big Party Section */
.big-party-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} 

/* Article2 Section */
#article2 p:last-of-type {
    text-align: center;
    font-size: 20px;
    margin: 3% 10px 3% 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;
}

/* Laughter Text*/
#laughter-text {
    text-align: center;
    font-family: 'Cagliostro', sans-serif;
    font-size: 20px;
    margin: 3% 10px 3% 10px;
    visibility: hidden;
}

/* Article3 Section */
#article3 p:last-of-type {
    font-style: italic;
}

/* 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; 
    }
    #culture {
        position: absolute;
        top: 45%;
        left: 10%;
        color: white;
        font-family: 'Times New Roman', Times, serif;
        font-size: 30px;
        text-transform: uppercase;
    }

    /* Intro Section */
    #intro-section, #article2, #article3 {
        width: 90%;
        margin: 10px auto 3% auto;
        font-family: 'Cagliostro', sans-serif;
        visibility: hidden;
    }

    /* Big Party Section */
    #big-party-section {
        display: flex;
        flex-direction: column;
        margin: 20px 0px 3% 0px;
        width: 100%;
    }
    .big-party-picture {
        width: calc(100% - 20px);
        height: 400px;
        margin: 10px;
        padding: 0;
        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; 
    }
    #culture {
        position: absolute;
        top: 45%;
        left: 25%;
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
    }

    /* Intro Section */
    #intro-section, #article2, #article3 {
        width: 70%;
        margin: 10px auto 3% auto;
        font-family: 'Cagliostro', sans-serif;
        visibility: hidden;
    }

    /* Big Party Section */
    #big-party-section {
        display: flex;
        flex-direction: row;
        margin: 20px 0px 3% 0px;
        width: 100%;
        height: 400px;
    }
    .big-party-picture {
        width: calc(50% - 20px);
        margin: 10px;
        padding: 0;
        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; 
    }
    #culture {
        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, #article2, #article3 {
        width: 50%;
        margin: 10px auto 3% auto;
        font-family: 'Cagliostro', sans-serif;
        visibility: hidden;
    }

    /* Big Party Section */
    #big-party-section {
        display: flex;
        flex-direction: row;
        margin: 20px 0px 3% 0px;
        width: 100%;
        height: 400px;
    }
    .big-party-picture {
        width: calc(50% - 20px);
        margin: 10px;
        padding: 0;
        visibility: hidden;
    }
}