/* ================= HERO ================= */
.about-hero {
    height: 300px;
    background: url("../images/about-hero.jpg") center/cover no-repeat;
    position: relative;
}

.about-hero-overlay {
    background: rgba(218, 192, 163, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 42px;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

/* ================= INTRO SECTION ================= */
.about-intro {
    padding: 80px 20px;
    background: #fff;
}

.intro-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.intro-text h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ================= MISSION & VISION ================= */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 70px 8%;
    gap: 30px;
    background: #F9F7F4;
}

.mv-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(218, 192, 163, 0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mv-box i {
    font-size: 40px;
    color: #DAC0A3;
    margin-bottom: 15px;
}

.mv-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ================= VALUES SECTION ================= */
.our-values {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    background: rgba(218, 192, 163, 0.05);
    border: 2px solid rgba(218, 192, 163, 0.3);
    margin-bottom: 40px;
    font-size: 30px;
    box-shadow: 0 6px 12px rgba(218,192,163,0.15);
}

.values-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.value-card {
    background: #F9F9F9;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(218,192,163,0.3);
}

.value-card i {
    font-size: 40px;
    color: #DAC0A3;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* ================= LEADER MESSAGE ================= */
.leader-message {
    padding: 80px 20px;
    background: #F9F7F4;
}

.leader-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.leader-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ================= TIMELINE ================= */
.timeline {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.timeline-container {
    display: grid;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
}

.timeline-item {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #DAC0A3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.timeline-item span {
    font-weight: 700;
    font-size: 20px;
    color: #DAC0A3;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px){
    .intro-container,
    .mission-vision,
    .leader-container {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px){
    .values-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 28px; }
}


/* ===============================
   Chairman Message (KGO Theme)
================================= */

.chairman-section {
    padding: 80px 10%;
    background: #F9F7F4;
}

.chairman-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* Mini Title */
.mini-title {
    color: #B89D7F;           /* KGO Secondary */
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Main Title */
.main-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #000;              /* Main Title Black */
}

/* Body Text */
.chairman-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 25px;
}

/* Name */
.chairman-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #000;
}

/* Role */
.chairman-role {
    font-size: 15px;
    color: #000;           /* KGO Secondary */
    display: block;
    margin-bottom: 22px;
}

/* Social Icons */
.chairman-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.chairman-social a {
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Apply KGO brand tones to icon colors */
.chairman-social a i {
    color: #000;           /* Beige Icon Tone */
}

.chairman-social a:hover i {
    color: #B89D7F;           /* Darker Beige on Hover */
    transform: translateY(-3px);
}

/* Right Side Image */
.chairman-image img {
    width: 90%;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
    .chairman-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-social {
        justify-content: center;
    }

    .chairman-text {
        padding-left: 0;
    }
}
