/* ==========================================================================
   HTAsiaLink - About Us Page Specific Styles
   ========================================================================== */

/* Utility Classes */
.text-orange {
    color: var(--primary-orange) !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.hover-orange:hover {
    color: var(--primary-orange) !important;
}

/* --------------------------------------
   Hero Banner Section
   -------------------------------------- */
.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(0, 67, 146, 0.9) 0%, rgba(0, 45, 98, 0.95) 100%),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------
   History Section (#history)
   -------------------------------------- */
.history-section {
    padding: 60px 0 100px;
}

.history-section .image-stack {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.history-section .main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 67, 146, 0.1);
}

.history-section .floating-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 67, 146, 0.05);
}

/* --------------------------------------
   Vision Section (#vision)
   -------------------------------------- */
.vision-section {
    padding: 100px 0;
    background-color: #f0f4f8;
    /* 極淺的主藍色調背景 */
}

.vision-list .icon-box {
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(0, 67, 146, 0.08);
    flex-shrink: 0;
}

/* --------------------------------------
   Board of Directors Section (#board)
   -------------------------------------- */
.board-section {
    padding: 100px 0;
    background-color: var(--bg-offwhite);
}

.board-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.board-card h5 {
    min-height: 50px;
}

.board-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 67, 146, 0.12);
}

.board-card .img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f4f8;
    transition: all 0.4s ease;
}

.board-card:hover .img-wrapper {
    border-color: var(--primary-orange);
}

.board-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------
   Secretariat Section (#secretariat)
   -------------------------------------- */
.secretariat-section {
    padding: 100px 0 120px;
}

.secretariat-wrapper {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.secretariat-wrapper .object-fit-cover {
    object-position: center;
}

/* --------------------------------------
   Responsive Adjustments
   -------------------------------------- */
@media (max-width: 991px) {
    .about-hero {
        padding: 130px 0 60px;
    }

    .history-section .floating-box {
        padding: 20px;
        right: -10px;
        bottom: -10px;
    }

    .secretariat-wrapper .col-lg-6.p-5 {
        padding: 30px !important;
    }
}

ul.list li {
    color: #718096;
    list-style: disc;
    padding: 5px 0;
}