/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* HERO SECTION
   ========================================================================== */
.hero-section {
    width: 100%;
    min-height: 400px;
    background:
        url('../img/brand.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* MAIN CONTENT
   ========================================================================== */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* BRAND LOGO SECTION
   ========================================================================== */
.brand-logo-section {
    text-align: center;
    margin: 10px 0 60px 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo img {
    max-width: 36vw;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    letter-spacing: 8px;
    margin-top: 5px;
}

/* CONTENT TEXT
   ========================================================================== */
.content-text {
    font-size: var(--font-size-base);
    line-height: 2.2;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.content-text p {
    margin-bottom: 30px;
}

.content-text.highlight {
    color: var(--color-text-primary);
    font-weight: 500;
}

.content-text.highlight::before {
    content: '"';
    font-size: 2em;
    color: var(--color-brand-gold);
    line-height: 1;
    float: left;
    margin-right: 5px;
}

/* YEAR SECTION
   ========================================================================== */
.year-section {
    margin: 50px 0;
    padding-left: 20px;
}

.year-highlight {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-brand-brown);
    margin-bottom: 20px;
}

/* RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .hero-section {
        width: 100%;
        min-height: 100px;
        background:
            url('../img/brand_sp.png');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .brand-logo-text {
        font-size: 2rem;
    }

    .main-content {
        padding: 0 20px;
    }

    .content-text {
        font-size: var(--font-size-sm);
        line-height: 1.5;
        color: #000;
        margin-bottom: 30px;
        text-align: left;
    }

    .brand-logo-section {
        text-align: center;
        margin: 28px 0 32px 0;
    }

    .brand-logo img {
        max-width: 256px;
    }
}