/* =========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================= */

.about-page {
    /* offset content to account for fixed nav */
    padding-top: 5.25rem;
}

.about-hero {
    background-image: url('../assets/images/hero-about.webp') !important;
    background-size: cover;
    background-position: center;
    min-height: 72vh;
    display: flex;
    align-items: center;
    color: #f8fafc;
    position: relative;
}

.about-page .about-hero::after,
.about-page .hero::after {
    content: none !important;
}

.about-hero .hero-content {
    max-width: 720px;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.45);
    border-radius: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-hero h1 {
    font-size: clamp(1.7rem, 3.4vw, 2.55rem) !important;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #f1f5f9;
}

.about-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-section {
    padding: 3.5rem 0;
}

.about-section h2 {
    margin-bottom: 1rem;
}

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

.highlight-card {
    border-radius: 1rem;
    padding: 1.6rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.highlight-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.highlight-icon {
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.highlight-desert {
    background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
}
[data-theme="dark"] .highlight-desert {
    background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
    border-color: rgba(251, 146, 60, 0.2);
}

.highlight-coast {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}
[data-theme="dark"] .highlight-coast {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    border-color: rgba(56, 189, 248, 0.2);
}

.highlight-hills {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}
[data-theme="dark"] .highlight-hills {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    border-color: rgba(74, 222, 128, 0.2);
}

.highlight-wildlife {
    background: linear-gradient(135deg, #fee2e2 0%, #fecdd3 100%);
}
[data-theme="dark"] .highlight-wildlife {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    border-color: rgba(248, 113, 113, 0.2);
}

.highlight-culture {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}
[data-theme="dark"] .highlight-culture {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
    border-color: rgba(167, 139, 250, 0.2);
}

.highlight-card p {
    color: #475569;
    line-height: 1.7;
}

[data-theme="dark"] .highlight-card p {
    color: #cbd5e1;
}

.mission-panel {
    background: linear-gradient(135deg, #fef3c7, #fff7ed);
    border-radius: 1.25rem;
    padding: 2.5rem;
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.08);
}

[data-theme="dark"] .mission-panel {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: rgba(251, 191, 36, 0.15);
}

.mission-panel p {
    color: #3f3f46;
    line-height: 1.8;
}

[data-theme="dark"] .mission-panel p {
    color: #cbd5e1;
}

.team-card {
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .team-card {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
}

.team-card img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.closing-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 3rem;
    font-style: italic;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }

    .about-hero .hero-content {
        padding: 2rem 1.25rem;
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .about-hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.06em;
    }
}
