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

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 2.5rem 0 2rem;
    text-align: center;
    color: var(--text-white);
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* About Content Section */
.about-content-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-card {
    background-color: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--light-blue);
}

.notice-text {
    font-size: 0.9rem;
    color: #c62828;
    font-weight: 500;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
}

.notice-link {
    color: #0047AB;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.notice-link:hover {
    color: #1E5DA8;
    text-decoration: none;
}

/* Organization Info */
.organization-info {
    margin-top: 2rem;
}

.org-link {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 12px;
}

.org-link:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.org-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.org-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.org-details {
    flex: 1;
}

.org-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.org-name-en {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.org-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Purpose Card */
.purpose-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.08));
    border-left: 5px solid var(--accent-orange);
}

.purpose-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.purpose-content p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.purpose-content p:last-child {
    margin-bottom: 0;
}

/* Mission Card */
.mission-card {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(30, 93, 168, 0.05));
}

.mission-content {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
}

.mission-content p {
    margin-bottom: 1.5rem;
}

/* Contact Card */
.contact-card {
    background-color: var(--light-blue);
}

.contact-info {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background-color: var(--primary-blue);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.2);
}

.contact-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 71, 171, 0.3);
}

.contact-btn i {
    font-size: 1.2rem;
}

/* Navigators Section */
.navigators-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f1f8 100%);
}

.navigators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.navigator-profile {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.navigator-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-blue);
    background: white;
}

.navigator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigator-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f1f8 100%);
}

.navigator-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 71, 171, 0.2);
}

.navigator-name {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.navigator-title {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.navigator-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-card {
        padding: 2.5rem;
    }

    .org-link {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .org-logo {
        width: 180px;
        height: 100px;
    }

    .navigators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .about-hero {
        padding: 2rem 0 1.5rem;
    }

    .about-content-section {
        padding: 3rem 0;
    }

    .about-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .org-details h3 {
        font-size: 1.3rem;
    }

    .org-name-en {
        font-size: 0.9rem;
    }

    .org-description {
        font-size: 1rem;
    }

    .mission-content {
        font-size: 1rem;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .navigator-profile {
        padding: 1.5rem;
    }

    .navigator-name {
        font-size: 1.2rem;
    }

    .navigator-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .org-logo {
        width: 150px;
        height: 90px;
    }

    .org-link {
        padding: 1.5rem;
    }
}

/* KCOP Reference Card */
.kcop-reference-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-left: 5px solid var(--primary-blue);
}

.kcop-reference {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.kcop-logo-container {
    display: flex;
    justify-content: center;
}

.kcop-logo {
    max-width: 300px;
    height: auto;
}

.kcop-reference-text {
    text-align: center;
}

.kcop-reference-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.kcop-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
}

.kcop-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.4);
}

@media (max-width: 768px) {
    .kcop-logo {
        max-width: 200px;
    }

    .kcop-reference-text p {
        font-size: 1rem;
    }

    .kcop-link {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
}

