﻿
.about-page {
    background: #f8f9fa;
}

.about-hero {
    background: linear-gradient(135deg, rgba(214, 35, 0, 0.95), rgba(245, 166, 35, 0.95)), url('/images/banner/burger-king-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

    .about-hero h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    }

    .about-hero p {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.95;
    }

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

.history-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.history-year {
    font-size: 3rem;
    font-weight: bold;
    color: #D62300;
    margin-bottom: 20px;
}

.history-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.history-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D62300 0%, #F5A623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, #D62300 0%, #F5A623 100%);
    color: white;
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
}

.team-section {
    background: white;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #D62300;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    color: #D62300;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #512314 0%, #8B4513 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.95;
    }

.btn-cta {
    background: white;
    color: #D62300;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-cta:hover {
        background: #D62300;
        color: white;
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .history-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
