/* ==========================================================================
   Vijay Dairy - Premium Minimalist About Page Stylesheet
   ========================================================================== */

/* 1. Core Color System Variables */
:root {
    --cream-bg: #ffffff;
    --brand-red: #d12229;
    --brand-dark: #1a1a1a;
    --brand-charcoal: #2a2a2a;
    --brand-gold: #c5a059;
    --text-muted: #555555;
    --light-grey-border: rgba(0, 0, 0, 0.04);
}

/* 2. Base Page Wrapping */
.about-page-wrapper {
    background-color: var(--cream-bg);
    font-family: 'Outfit', sans-serif;
    color: var(--brand-dark);
}

/* 3. Luxury Hero Banner (Plain White & Pencil Sketch) */
.about-hero-banner {
    background-color: #ffffff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/pencil-sketch-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.about-gold-accent-tag {
    color: var(--brand-gold);
    border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 4px;
    letter-spacing: 0.25em;
    font-size: 11px;
}

/* 4. Section Spacing */
.about-section {
    padding: 50px 40px;
    position: relative;
}

.about-section.pb-reduced {
    padding-bottom: 40px;
}

.about-section.pt-reduced {
    padding-top: 40px;
}

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

    .about-section.pb-reduced {
        padding-bottom: 30px;
    }

    .about-section.pt-reduced {
        padding-top: 30px;
    }
}

/* 5. Editorial Origin Story Section */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-hero-img-box {
    width: 100%;
    max-width: 500px;
    background: transparent;
    padding: 0;
    margin: 0 auto;
}

.about-hero-img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-story-grid .flex {
        align-items: center;
        text-align: center;
    }
}

/* 6. Brand Pillars Section */
.about-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.about-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(209, 34, 41, 0.15);
    box-shadow: 0 20px 45px rgba(209, 34, 41, 0.04);
}

.pillar-number {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: bold;
    color: var(--brand-red);
    opacity: 0.15;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.about-pillar-card:hover .pillar-number {
    opacity: 0.4;
    transform: scale(1.05);
}

.pillar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* 7. Horizontal Grid Timeline */
.about-grid-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.timeline-step-card {
    position: relative;
}

.timeline-dot-connector {
    height: 4px;
    background: #f1f1f1;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
}

.timeline-dot-connector::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--brand-red);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-year-tag {
    position: absolute;
    top: -35px;
    left: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-red);
    font-family: 'Outfit', sans-serif;
}

.timeline-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.timeline-step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-grid-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .timeline-dot-connector {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .about-grid-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-dot-connector {
        width: 100%;
    }
}

/* 8. Infrastructure Double Asset Cards */
.double-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-asset-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.01);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-asset-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.03);
}

.feature-asset-img {
    height: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.feature-asset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-asset-card:hover .feature-asset-img img {
    transform: scale(1.04);
}

.feature-asset-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(209, 34, 41, 0.2);
}

.feature-asset-content {
    padding: 40px;
}

.feature-asset-title {
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.feature-asset-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.feature-asset-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-asset-bullets li {
    font-size: 14px;
    color: var(--brand-charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-red);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .double-feature-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-asset-img {
        height: 280px;
    }
}

/* 9. Premium Quote Section */
.quote-symbol-icon {
    user-select: none;
}

/* Animation Drift Helpers for Scroll Observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-drift-left {
    transform: translateX(-40px);
}

.reveal-drift-left.active {
    transform: translateX(0);
}

.reveal-drift-right {
    transform: translateX(40px);
}

.reveal-drift-right.active {
    transform: translateX(0);
}