/* =========================================
   About Page Custom Styles
   ========================================= */

/* Header Banner */
.about-header {
    background: url('../assets/images/Zanzibar_Island_Mnemba_Island.jpg') center/cover no-repeat;
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    width: 100%;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05); /* Very light overlay for brightness */
    z-index: 1;
}

/* Brush Stroke Divider at the bottom of the image */
.brush-divider {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 5;
    pointer-events: none;
}

.brush-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* About Content Section */
.about-content-section {
    padding: 0 0 7rem;
    background-color: #ffffff; /* Solid white background as in the mockup */
}

.about-container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-title-centered {
    font-family: 'Oswald', sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.5px;
    margin-top: -15px;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-text-centered {
    font-family: var(--font-main);
    font-size: 1.35rem;
    line-height: 1.8;
    text-align: center;
    color: #333333;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-header {
        height: 45vh;
        min-height: 350px;
    }
    
    .brush-divider {
        height: 100px;
    }
    
    .about-title-centered {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text-centered {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-header {
        height: 35vh;
        min-height: 280px;
    }
    
    .brush-divider {
        height: 70px;
    }
    
    .about-title-centered {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .about-text-centered {
        font-size: 1.1rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-header {
        height: 30vh;
        min-height: 220px;
    }
    
    .brush-divider {
        height: 50px;
    }
    
    .about-title-centered {
        font-size: 2.4rem;
    }
    
    .about-text-centered {
        font-size: 1rem;
    }
}
