/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 140px 20px 120px;
    background: #3B3A36;
    color: #f5f5f5;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image */
.about-photo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* Text */
.about-text h1 {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    margin-bottom: 1.6rem;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    opacity: 0.95;
}

.about-text .highlight {
    color: #cfcfcf;
    font-weight: 700;
}

/* Location */
.location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.location i {
    color: #cfcfcf;
    font-size: 1.1rem;
}

/* ===== PHILOSOPHY ===== */
.about-philosophy {
    padding: 120px 20px;
    background: #2E2D2A;
    color: #f5f5f5;
}

.about-philosophy .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-philosophy h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
}

.about-philosophy p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 1.6rem;
}

/* ===== CTA ===== */
.about-cta {
    padding: 140px 20px;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('../images/image13.jpeg') center / cover no-repeat;
    color: white;
    text-align: center;
}

.about-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h3 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin-bottom: 1.2rem;
}

.about-cta p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 18px 44px;
    background: #cfcfcf;
    color: #3B3A36;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* Section Divider */
.section-divider {
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(to right, transparent, #cfcfcf, transparent);
    margin: 80px auto;
    opacity: 0.4;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr; /* stack content */
        gap: 2rem;
        text-align: center;
    }

    .about-photo {
        max-width: 300px; /* smaller image */
        margin: 0 auto;
    }

    .location {
        justify-content: center;
        gap: 6px;
        font-size: 0.95rem; /* smaller text */
    }

    .about-text h1 {
        font-size: 2rem; /* smaller heading */
    }

    .about-text p {
        font-size: 1rem; /* smaller paragraph */
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .about-section,
    .about-philosophy,
    .about-cta {
        padding: 60px 15px; /* reduce padding */
    }

    .about-text h1 {
        font-size: 1.8rem;
    }

    .about-text p,
    .about-philosophy p,
    .about-cta p {
        font-size: 0.95rem; /* smaller paragraphs for mobile */
    }

    .about-philosophy h2 {
        font-size: 1.8rem;
    }

    .about-cta h3 {
        font-size: 1.8rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 14px 32px;
    }

    .navbar-container {
        justify-content: flex-start;
        gap: 1px;
        padding: 5px 1px; /* mobile navbar padding */
    }

    .navbar-logo img {
        height: 50px;
        margin-right: 0;
    }

    .navbar-menu {
        gap: 15px;
        font-size: 14px;
        padding: 1px 0; /* smaller vertical padding */
    }
    }

    .navbar-menu a {
        font-size: 14px;
        padding: 6px 0;
    }
}

@media (max-width: 576px) {
    .about-section,
    .about-philosophy,
    .about-cta {
        padding: 50px 10px; /* further reduce padding for very small screens */
    }

    .about-text h1 {
        font-size: 1.6rem;
    }

    .about-text p,
    .about-philosophy p,
    .about-cta p {
        font-size: 0.9rem; /* extra small text for tiny screens */
    }

    .about-philosophy h2,
    .about-cta h3 {
        font-size: 1.6rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 12px 28px;
    }
}
