#about-page{
    min-height:100%;
    background-color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
}

#about-container{
    margin-top:200px;
    width:100%;
    padding:15px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    justify-content:center;
    align-items:center;
}

@media (max-width: 1100px) {
    #about-container{
        margin-top:250px;
    }
}

@media (max-width: 768px) {
    #about-container{
        margin-top:300px;
    }
}

#about-container h1{
    width:100%;
    text-align:center;
    color:white;
    font-size:600%;
    font-weight:bold;
    z-index:5;
    margin-bottom:200px;
}

.about-person-profile {
    position: relative; /* Make sure the text and image stay inside */
    height: 300px;
    width: 300px;
    background-color: #990000;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent image overflow */
}

.about-person-profile img {
    height: 95%;
    width: 95%;
    object-fit: cover; /* Ensures image fits properly */
    position: absolute; /* Keeps it in place without affecting layout */
    top: 0;
    left: 0;
    z-index: 1;
    filter: greyscale(100%);
    -webkit-filter: grayscale(100%);
}

.about-person-profile-txt {
    position: absolute;
    top: 0;
    left: 0;
    height: 95%;
    width: 95%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction:column;
    font-size: 1.2em;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2; /* Ensure text is above the image */
}

.about-person-profile:hover .about-person-profile-txt {
    opacity: 1; /* Show text on hover */
}

@media (max-width: 768px) {
    .about-person-profile-txt {
        opacity: 0.8; /* Always visible on small screens */
    }
}

#about-our-story{
    /*background-color:#990000;*/
    padding:15px;
    color:#444;
    margin-top:50px;
    margin-bottom:50px;
}

#about-our-story h2{
    font-family:cursive;
    color:black;
    font-weight:bold;
    font-size:250%;
    margin-bottom:10px;
}