/* ===========================
   GENERAL
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #eef5ff;
    color: #1f2937;
}


/* ===========================
   ABOUT PAGE
=========================== */

.about-page {
    width: min(1380px, 94%);
    margin: 34px auto 60px;
}


/* ===========================
   HERO SECTION
=========================== */

.about-hero {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(0, 1.35fr);

    gap: 42px;
    align-items: stretch;

    padding: 28px;

    border: 1px solid #dbe5ef;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 14px 34px
        rgba(15, 23, 42, 0.10);
}


/* ===========================
   PHOTO
=========================== */

.about-photo {
    min-height: 620px;
    overflow: hidden;

    border-radius: 14px;

    background: #07152d;

    box-shadow:
        0 10px 28px
        rgba(2, 11, 27, 0.20);
}

.about-photo img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 620px;

    object-fit: cover;
    object-position: center top;

    transition:
        transform 0.35s ease;
}

.about-photo:hover img {
    transform: scale(1.025);
}


/* ===========================
   CONTENT
=========================== */

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px 16px 22px 6px;
}

.founder-badge {
    align-self: flex-start;

    margin-bottom: 16px;
    padding: 7px 15px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #b77908,
            #d4af37,
            #f0ca62
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.65px;
    text-transform: uppercase;

    box-shadow:
        0 4px 10px
        rgba(133, 88, 5, 0.24);
}

.about-content h1 {
    margin-bottom: 8px;

    color: #07152d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.05;
}

.about-content h3 {
    margin-bottom: 22px;

    color: #b77908;

    font-size: 19px;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 15px;

    color: #475569;

    font-size: 17px;
    line-height: 1.75;
}


/* ===========================
   LOWER SECTIONS
=========================== */

.about-section {
    margin-top: 30px;
    padding: 30px;

    border: 1px solid #dbe5ef;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 26px
        rgba(15, 23, 42, 0.07);
}

.about-section-heading {
    margin-bottom: 20px;

    color: #07152d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;
    text-align: center;
}


/* ===========================
   FEATURES GRID
=========================== */

.about-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.about-feature-card {
    padding: 20px;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    background: #f8fbff;

    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 18px
        rgba(15, 23, 42, 0.09);
}

.about-feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    margin-bottom: 12px;

    border-radius: 50%;

    background: #07152d;
    color: #d4af37;

    font-size: 20px;
}

.about-feature-card h3 {
    margin-bottom: 8px;

    color: #123d73;

    font-size: 17px;
}

.about-feature-card p {
    color: #64748b;

    font-size: 14px;
    line-height: 1.55;
}


/* ===========================
   VISION
=========================== */

.about-vision {
    margin-top: 30px;
    padding: 42px 28px;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at top,
            #10254a,
            #06152e 55%,
            #020b1b
        );

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 14px 32px
        rgba(2, 11, 27, 0.22);
}

.about-vision h2 {
    margin-bottom: 14px;

    color: #f0ca62;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;
}

.about-vision p {
    width: min(880px, 100%);
    margin: 0 auto;

    color: #e2e8f0;

    font-size: 20px;
    line-height: 1.65;
}


/* ===========================
   SIGNATURE
=========================== */

.about-signature {
    margin-top: 26px;
    text-align: right;
}

.about-signature strong {
    display: block;

    color: #07152d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
}

.about-signature span {
    color: #b77908;

    font-size: 14px;
    font-weight: 700;
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 950px) {

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-photo,
    .about-photo img {
        min-height: 540px;
    }

    .about-content {
        padding: 8px 4px;
    }

    .about-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 600px) {

    .about-page {
        width: 96%;
        margin-top: 20px;
    }

    .about-hero {
        gap: 24px;
        padding: 16px;
        border-radius: 12px;
    }

    .about-photo,
    .about-photo img {
        min-height: 430px;
    }

    .about-content h1 {
        font-size: 34px;
    }

    .about-content h3 {
        font-size: 16px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-section {
        padding: 20px 14px;
    }

    .about-section-heading {
        font-size: 28px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-vision {
        padding: 30px 18px;
    }

    .about-vision h2 {
        font-size: 29px;
    }

    .about-vision p {
        font-size: 16px;
    }

    .about-signature {
        text-align: center;
    }
}

/* ===========================
   ABOUT BREADCRUMB
=========================== */

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    margin-bottom: 20px;
    padding: 13px 17px;

    border: 1px solid #dbe5ef;
    border-radius: 10px;

    background: #ffffff;

    color: #64748b;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 4px 14px
        rgba(15, 23, 42, 0.06);
}

.about-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #123d73;
    text-decoration: none;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.about-breadcrumb a:hover {
    color: #b77908;
    transform: translateX(-1px);
}

.breadcrumb-separator {
    color: #d4af37;
    font-size: 20px;
    line-height: 1;
}


/* ===========================
   ACTIVE ABOUT NAVIGATION
=========================== */

#main-nav > a.active-page-link {
    color: #e8bf52;
}

#main-nav > a.active-page-link::after {
    transform: scaleX(1);
}