* {
    margin: 0%;
    padding: 0%;
}

/* === ABOUT HEADER === */
.about-header {
    width: 100%;
    height: 50vh;
    position: relative;
    background: url("../images/samarjitroy_Herosection_image.jpg") fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Teal overlay */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 14, 0.178);
    /* same teal tone */
    z-index: 1;
}



/* Content Container */
.about-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Text */
.about-content h1 {
    color: #5e1a14;
    font-size: 7rem;
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
}

.about-content p {
    font-family: "Merriweather", serif;
    color: #ab3646;
    font-size: 1.8rem;
}
@media (max-width: 900px) {
    .about-content h1 {
        font-size: 4rem;
    }
    .about-content p {
        font-size: 1.8rem;
    }
}




/* RESPONSIVE */
@media (min-width: 1026px) and (max-width: 1440px) {
    .about-header {
        height: 60vh;
    }

    .about-content h1 {
        font-size: 4rem;
    }

    .about-content p {
        font-size: 0.8rem;
    }


}