/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
/* Extends the global style.css – no conflicts, only new/overridden classes */

/* ----- Hero (full‑bleed background) ----- */
.about-hero {
    height: 80vh;
    min-height: 500px;
    background-image: url('/static/images/cc.jpg'); /* replace with actual image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0; /* navbar is fixed, so content starts below it – but navbar height is accounted by padding-top on main? We'll handle via overlay */
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overline {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-hero-content .hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
}

/* ----- Map Block ----- */
.map-block {
    width: 100%;
    background: var(--dark);
    padding: 0; /* remove extra spacing, map touches edges */
    display: none;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.1);
}

.map-info-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    max-width: 320px;
    color: var(--white);
}

.map-info-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.map-info-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.map-info-card i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.map-info-card a {
    color: var(--white);
    transition: color 0.3s;
}

.map-info-card a:hover {
    color: var(--primary);
}

/* ----- Two‑Column About Story ----- */
.about-story {
    padding: 100px 0;
    background: var(--dark);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-story-image:hover img {
    transform: scale(1.02);
}

.about-story-text {
    max-width: 500px;
}

.about-story-text .section-overline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.about-story-text .section-title-left {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-story-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1rem;
}

.about-story-text p strong {
    color: var(--primary);
    font-weight: 600;
}

/* ----- Core Values ----- */
.core-values {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-overline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.values-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 0 60px;
    box-shadow: var(--shadow);
    border: 1px solid #333;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 0 20px;
}

.value-item h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ----- Responsive adjustments ----- */
@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-text {
        max-width: 100%;
    }

    .values-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .map-container {
        height: 400px;
    }

    .map-info-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
        padding: 20px;
    }

    .values-image {
        height: 250px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-item p {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .about-story-text .section-title-left {
        font-size: 1.8rem;
    }
}