/*#region Hero Section */
.hero {
    /*background: url('../images/kitchen-pic.png') center/cover no-repeat;*/
    color: white;
    text-align: left;
    height: 20vh;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #042038;
}
.hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}
.text-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.text-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/*#endregion Hero Section*/

.about-section {
    background-color: #F2F2F2;
    text-align: center;
    padding: 50px 20px;
    height: 75vh;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
}
.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
}
.content {
    padding: 50px 75px;
    line-height: 30pt;
    text-align: justify;
}
.image-gallery {
    display: flex;
    justify-content: center;
}
.image-gallery img {
    width: 200px; /* Adjust the width of images as needed */
    margin: 0 10px; /* Add space between images */
}
#back-to-top-button {
    display: none;
}

@media screen and (max-width: 500px) {
    .content {
        padding: 5px 7px;
        line-height: 25pt;
        text-align: justify;
    }
    .about-section {
        height: 200vh;
    }

    #back-to-top-button {
        display: none;
        position: fixed;
        bottom: 40%;
        right: 20px;
        background-color: #007bff;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        line-height: 40px;
        cursor: pointer;
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    }

    #back-to-top-button:hover {
        background-color: #0056b3;
    }
}


