/**
 * Travel Sense - Om Os / About Page
 */

/* ========================
   HERO
   ======================== */
.about-hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1a3a 50%, var(--bg-dark) 100%);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(78, 204, 163, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(78, 204, 163, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.about-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--text-white);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}
.about-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* ========================
   CONTENT BLOCK (text + image)
   ======================== */
.about-section {
    max-width: 1100px;
}
.about-content-block {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}
.about-text-col h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin: 0.75rem 0 1.5rem;
}
.about-text-col p,
#about-org-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* Image card */
.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}
.about-image-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.about-image-caption {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.about-image-caption strong {
    color: var(--text-white);
    font-size: 1rem;
}
.about-image-caption span {
    color: var(--accent-green);
    font-size: 0.85rem;
}
.about-image-placeholder {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ========================
   BIO SECTION
   ======================== */
.about-bio-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.about-bio-inner {
    max-width: 780px;
    text-align: center;
}
.about-bio-badge {
    margin-bottom: 1rem;
}
.about-bio-inner h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin: 0.75rem 0 2rem;
}
.about-bio-text {
    text-align: left;
}
.about-bio-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* ========================
   TEAM GRID
   ======================== */
.about-team-section {
    max-width: 1200px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.team-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.team-card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.team-card:hover .team-card-image img {
    transform: scale(1.05);
}
.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-card));
    color: var(--accent-green);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.team-card-info {
    padding: 1.25rem;
}
.team-card-info h3 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}
.team-card-title {
    display: block;
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.team-card-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.team-card-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.team-card-contact a:hover {
    color: var(--accent-green);
}

/* ========================
   CONTACT CTA
   ======================== */
.about-contact-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.about-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
}
.about-contact-card h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.about-contact-card > p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.about-contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s;
    min-width: 240px;
}
.about-contact-item:hover {
    border-color: var(--accent-green);
    background: rgba(78, 204, 163, 0.05);
}
.about-contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(78, 204, 163, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}
.about-contact-item strong {
    display: block;
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}
.about-contact-item span {
    color: var(--accent-green);
    font-size: 0.85rem;
}

/* ========================
   INFO BAR
   ======================== */
.about-info-bar {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
}
.about-info-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.about-info-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}
.about-info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-content-block {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem 3rem;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-card {
        position: static;
        max-width: 320px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .team-card-image {
        height: 200px;
    }
    .about-contact-card {
        padding: 2rem 1.5rem;
    }
    .about-contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .about-contact-item {
        width: 100%;
        max-width: 320px;
    }
    .about-info-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-bio-inner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
    .about-info-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
