body {
    background-color: #f4f9f4;
    color: #222;
    font-family: 'Marcellus', serif;
    margin: 0;
    padding: 0;
}

/*HEADER*/
header{
    text-align: center;
    padding: 40px 20px;
}
header h1{
    font-family: 'Marcellus', serif;
    font-size: 4rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: rgb(0, 0, 0);   
}
header p{
    font-family: 'Marcellus', serif;
    color: rgb(163, 152, 152);
    font-size: 1.2rem;
}


/*GALLERY ELEMENTS*/
#nav_menu_container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
#gallery_h1{
    text-align: center;
    color: rgb(178, 139, 235);
    font-size: 4rem;
    letter-spacing: 2px;
    font-weight: 400;
    
}
.gallery_container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 50px auto;
    justify-content: space-around;
    margin-top: 50px;
}
.gallery_box{
    background: rgb(235, 219, 219);
    border: 2px solid rgb(235, 219, 219);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}
.gallery_box:hover{
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    cursor: pointer;
}
.gallery_box img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
    
}

/*GALLERY MODAL*/
#gallery_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center; 
    z-index: 9999;
}
.modal_content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    text-align: center;
}
#modal_image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}
#modal_close {
    float: right;
    cursor: pointer;
    font-size: 24px;
}

/*HOMEPAGE ABOUT_ME SECTION */
.about_me{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.about_me img{
    width: 300px; 
    height: auto;
    border-radius: 10px;
}
.about_me p{
    max-width: 600px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.6;
}

/*FOOTER & CONTACT INFO SECTION*/
footer{
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
}
.banner_img{
    width: 700px;
}
.form_largebox *{
    margin-top: 10px;
    width: 290px;
    height: 50px;
}