/* about.css - Premium Commodity & Spices Export Style definitions */

:root {
    --primary-green: #054C45;
    --cta-green: #B0954B;
    --olive-accent: #B0954B;
    --gold-accent: #B0954B;
    --background-color: #FAF8F3;
    --section-bg: #F5F2EA;
    --white: #FFFFFF;
    --heading-color: #1E1E1E;
    --paragraph-color: #666666;
    --border-color: #E7E7E7;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.35s;
    --card-radius: 20px;
    --btn-radius: 50px;
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-page-body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--paragraph-color);
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-page-body {
        font-size: 16px;
    }
}

.about-page-body h1, .about-page-body h2, .about-page-body h3, .about-page-body h4, .about-page-body h5, .about-page-body h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
}

/* Typography Headings sizes */
h1.hero-title {
    font-size: 60px;
    line-height: 1.2;
}
@media (max-width: 991px) {
    h1.hero-title {
        font-size: 46px;
    }
}
@media (max-width: 575px) {
    h1.hero-title {
        font-size: 34px;
    }
}

h2.section-heading {
    font-size: 42px;
    line-height: 1.3;
}
@media (max-width: 991px) {
    h2.section-heading {
        font-size: 34px;
    }
}
@media (max-width: 575px) {
    h2.section-heading {
        font-size: 28px;
    }
}

/* Custom Buttons */
.btn-premium-primary {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 34px;
    border-radius: var(--btn-radius);
    border: 2px solid var(--primary-green);
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-premium-primary:hover {
    background-color:white;
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-premium-secondary {
    background-color: var(--white);
    color: var(--cta-green);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 34px;
    border-radius: var(--btn-radius);
    border: 2px solid var(--cta-green);
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-premium-secondary:hover {
    background-color: var(--cta-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-premium-dark {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 34px;
    border-radius: var(--btn-radius);
    border: 2px solid var(--primary-green);
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-premium-dark:hover {
    background-color: var(--cta-green);
    border-color: var(--cta-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Card Style */
.card-premium {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--cta-green);
}

/* Topbar & Navbar */
.topbar-bg {
    background-color: var(--primary-green);
}

.nav-link-custom {
    color: var(--heading-color);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--cta-green);
}

/* Strengths Grid */
.strength-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--cta-green);
    font-size: 24px;
    margin-bottom: 20px;
}

/* Journey Timeline */
.timeline-container {
    position: relative;
    padding: 50px 0;
}

.timeline-line-horizontal {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-year-badge {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid var(--background-color);
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-speed) ease;
}

.timeline-step:hover .timeline-year-badge {
    background-color: var(--cta-green);
    transform: scale(1.1);
}

/* Leadership */
.leader-card img {
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
    transition: transform var(--transition-speed) ease;
}

.leader-card:hover img {
    transform: scale(1.05);
}

/* General Layout helpers */
.bg-section {
    background-color: var(--section-bg);
}

.text-cta-green {
    color: var(--cta-green);
}

.text-gold-accent {
    color: var(--gold-accent);
}
