/* About Page - Jana Luxury Hair */

/* Remove whitespace between navbar and hero on mobile */
@media (max-width: 991.98px) {
    .page-about .about-hero {
        margin-top: -90px;
        padding-top: 90px;
    }
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 70, 77, 0.85) 0%, rgba(61, 70, 77, 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

@media (min-width: 768px) {
    .about-hero {
        height: 260px;
    }
    .about-hero-title {
        font-size: 3rem;
    }
    .about-hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Our Story Section */
.about-story-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    max-height: 320px;
}

.about-story-img-wrapper img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
}

.about-story-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary, #FFD333);
    border-radius: 8px;
    transform: translate(12px, 12px);
    z-index: 0;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #3D464D;
}

/* Why Choose Us / Values Section */
.about-values {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.about-value-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 211, 51, 0.15);
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.about-value-icon i {
    font-size: 1.5rem;
}

.about-value-card h5 {
    color: #3D464D;
}

/* What We Offer Cards */
.about-offer-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-offer-card:hover {
    border-color: var(--primary, #FFD333);
    box-shadow: 0 6px 20px rgba(255, 211, 51, 0.15);
}

.about-offer-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    overflow: hidden;
}

.about-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #3D464D 0%, #2c3238 100%);
    border-radius: 0;
}

.about-cta h3 {
    font-weight: 600;
}

.about-cta .btn-light {
    font-weight: 500;
}

.about-cta .btn-success {
    font-weight: 500;
}
