﻿
/* Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('images/about_bannner.jfif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 31, 31, 0.9), rgba(0, 31, 31, 0.4));
}

.hero-flex {
    position: relative;
    z-index: 2;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: #b35900;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

    .about-hero h1 span {
        color: #b35900;
        font-weight: 300;
        font-style: italic;
    }


/* ================= LIGHT PREMIUM EDITORIAL STYLES ================= */

.premium-about-content {
    padding: 120px 0;
    background: #ffffff;
    color: #333;
}

/* Header Styling */
.editorial-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.title-group {
    position: relative;
    display: inline-block;
}

.script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;
    color: #b35900;
    position: absolute;
    top: -45px;
    left: -10px;
    opacity: 0.8;
}

.main-story-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 12px;
    color: #003333;
    margin: 0;
    line-height: 1;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    background: #eee;
}

/* Narrative Grid */
.narrative-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.premium-lead {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #003333;
    font-weight: 600;
    margin-bottom: 40px;
}

.narrative-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

    .narrative-columns p {
        font-size: 1rem;
        line-height: 1.8;
        color: #666;
    }

.compliance-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    padding-left: 20px;
    border-left: 3px solid #b35900;
}

/* Right Side Visual */
.brand-visual-box {
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    border-bottom: 4px solid #b35900;
}

.content-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.brand-divider {
    width: 50px;
    height: 2px;
    background: #b35900;
    margin: 0 auto 20px;
}

.brand-visual-box h4 {
    font-size: 0.9rem;
    color: #003333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 0.7rem;
    font-weight: 700;
    color: #b35900;
    letter-spacing: 3px;
}

/* Signature */
.about-signature {
    margin-top: 100px;
    text-align: center;
}

.signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #003333;
    position: relative;
    display: inline-block;
}

    .signature-text::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 25%;
        width: 50%;
        height: 1px;
        background: #b35900;
    }

/* Responsive */
@media (max-width: 992px) {
    .main-story-title {
        font-size: 3.5rem;
    }

    .narrative-grid {
        grid-template-columns: 1fr;
    }

    .narrative-columns {
        grid-template-columns: 1fr;
    }

    .script-text {
        font-size: 2.5rem;
        top: -30px;
    }
}