/* About Page Styles - References main.css for theme colors and base styles */

/*
 * Theme Colors (from main.css):
 * --primary-color: #0e415b (Dark teal)
 * --primary-dark: #0a3547
 * --primary-light: #e8f3f7
 * --secondary-color: #e13732 (Red)
 * --text-dark: #1a1a1a
 * --text-light: #666666
 * --bg-light: #f8f9fa
 * --white: #ffffff
 */

/* ========================
   Hero Section
   ======================== */

.about-hero {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Text Content */
.hero-text {
    padding-right: 20px;
}

.hero-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-hero-primary:hover {
    background: #c22e2a;
    border-color: #c22e2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 55, 50, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 65, 91, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.hero-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 500px;
    background: var(--primary-light);
    border-radius: 12px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

/* ========================
   Responsive Design
   ======================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        min-width: 140px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-image-decoration {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .stat-number {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 14px 24px;
    }
}
