/* Brand Page Styles */

/* Banner section */
.banner-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin-top: 60px;
}

.banner-banner .banner-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-banner .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-banner .banner-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb navigation */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb i {
    font-size: 12px;
    color: #666;
}

/* Container padding */
.about-container {
    padding: 40px;
    background: #fff;
    margin-bottom: 60px;
}

/* Banner brand identity */
.brand-identity {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-identity h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-slogan p {
    font-size: 24px;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-mission p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Brand introduction */
.brand-intro {
    margin-bottom: 80px;
}

.brand-intro h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.brand-intro h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ddbd84;
    position: absolute;
    bottom: 0;
    left: 0;
}

.brand-story {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.story-image {
    flex: 0 0 400px;
    max-width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Brand values */
.brand-values {
    margin-bottom: 80px;
}

.brand-values h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.brand-values h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ddbd84;
    position: absolute;
    bottom: 0;
    left: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #fafafa;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 32px;
    color: #fff;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #ddbd84;
}

.value-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Brand milestones */
.brand-milestones {
    margin-bottom: 80px;
}

.brand-milestones h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.brand-milestones h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ddbd84;
    position: absolute;
    bottom: 0;
    left: 0;
}

.milestone-timeline {
    position: relative;
    padding-left: 40px;
}

.milestone-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.milestone-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #333;
    transition: all 0.3s ease;
}

.milestone-item:hover::before {
    background: #ddbd84;
    box-shadow: 0 0 0 2px #ddbd84;
}

.milestone-year {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.milestone-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.milestone-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Brand gallery */
.brand-gallery {
    margin-bottom: 40px;
}

.brand-gallery h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.brand-gallery h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ddbd84;
    position: absolute;
    bottom: 0;
    left: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 160px;
    height: 68px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-banner {
        padding: 80px 0;
        min-height: 250px;
    }

    .banner-banner .banner-content h1 {
        font-size: 36px;
    }

    .banner-banner .banner-content p {
        font-size: 16px;
    }

    .about-container {
        padding: 20px;
    }

    .brand-intro h2,
    .brand-values h2,
    .brand-milestones h2,
    .brand-gallery h2 {
        font-size: 24px;
    }

    .brand-story {
        flex-direction: column;
    }

    .story-image {
        flex: 0 0 100%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .milestone-timeline {
        padding-left: 30px;
    }

    .milestone-timeline::before {
        left: 18px;
    }

    .milestone-item::before {
        left: -23px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        padding: 10px;
    }

    .gallery-item img {
        width: 100%;
        max-width: 160px;
        height: auto;
    }
}