/* HERO SECTION */
/* .hero {
    height: 70vh;
    min-height: 450px;
    background: url("/media/cofounders\ 2.jpg") center/cover no-repeat;
    background-position: 70% center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.hero {
    height: 70vh;
    background: url("/media/cofounders\ 2.jpg") center/cover no-repeat;
    background-position: 80% top;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 3rem);
    text-align: center;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2.5s ease forwards;
    line-height: 1.4;
    max-width: 900px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   ABOUT SECTION
   =============================== */
.about-section {
    text-align: center;
    color: #4b2e12;
    padding: 60px 20px;
    background-color: #fff;
}

.about-section h2 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.section-divider {
    width: 85%;
    max-width: 700px;
    margin: 0 auto 40px;
    border: none;
    border-top: 1px solid #bfa98a;
}

.vision-mission {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 70px;
}

.vision,
.mission {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 0 15px;
}

.vision-mission h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.vision-mission p {
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: #5a3a1d;
}

/* Objectives Section */
.objectives {
    margin-top: 50px;
}

.objectives h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.objectives-line {
    position: relative;
    width: 85%;
    max-width: 900px;
    height: 1px;
    background-color: #bfa98a;
    margin: 0 auto 35px;
}

.objectives-line::before,
.objectives-line::after {
    content: "";
    position: absolute;
    top: -8px;
    width: 1px;
    height: 8px;
    background-color: #bfa98a;
}

.objectives-line::before {
    left: 0;
}

.objectives-line::after {
    right: 0;
}

.objectives-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
}

.objective {
    flex: 1 1 250px;
    max-width: 320px;
    padding: 25px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.objective:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.objective p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: #5a3a1d;
}

/* ===============================
   NICHE SECTION
   =============================== */
.niche-section {
    background-color: #f3e5c6;
    color: #4b2e12;
    padding: 60px 20px;
    font-family: 'Merriweather', serif;
}

.niche-section h2 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    text-align: center;
    margin: 0 auto 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.niche-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.niche-image {
    flex: 1 1 300px;
    text-align: center;
    max-width: 550px;
}

.niche-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.niche-image .caption {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    font-style: italic;
    margin-top: 12px;
    color: #704f28;
}

.niche-text {
    flex: 1 1 300px;
    text-align: left;
    max-width: 500px;
}

.niche-text h3 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    font-weight: 700;
    font-style: italic;
    color: #4b2e12;
    margin-bottom: 20px;
}

.niche-text p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.8;
    color: #5a3a1d;
}

/* ===============================
   MOBILE OPTIMIZATIONS
   =============================== */
@media (max-width: 768px) {
    .about-section,
    .niche-section {
        padding: 50px 20px;
    }

    .vision-mission {
        gap: 40px;
        margin-bottom: 60px;
    }

    .objectives-grid {
        gap: 25px;
    }

    .objective {
        padding: 20px 18px;
    }

    .niche-content {
        gap: 35px;
    }

    .niche-text {
        text-align: center;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .section-divider {
        width: 90%;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .about-section,
    .niche-section {
        padding: 40px 15px;
    }

    .vision-mission {
        gap: 35px;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }
}
