/* @import url(../css/header.css); */

:root {
    --isuzu-red: #E4002B;
    --isuzu-dark: #1a1a1a;
    --isuzu-black: #000000;
    --isuzu-gray: #666666;
    --isuzu-light-gray: #f8f8f8;
    --isuzu-white: #ffffff;
    --border-color: #e5e5e5;
      /* Typography */
  --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--isuzu-dark);
    line-height: 1.6;
    background: var(--isuzu-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}


/* Page Hero */
.about-overlay{
    inset: 0;
    position: absolute;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    width: 100%;
    height: 100%;
    border-radius: 1em;
}

.page-hero {
    margin: 7em 1em 0 1em;
    padding: 10rem 0 10rem;
    text-align: center;
    background: var(--isuzu-light-gray);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 1em;
}

.page-hero .container{
    background-color: #00000050;
    width: fit-content;
    padding: 1.5em;
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.page-hero h1 {
    font-family: var(--font-primary), sans-serif;
    font-size: 4rem;
    font-weight: 500;
    color: var(--isuzu-red);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--isuzu-white);
}

/* Section Styling */
section {
    padding: 8rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--isuzu-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-secondary), sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--isuzu-black);
    margin-top: 0.5rem;
}

/* About Content */
.about-content {
    background: var(--isuzu-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.text-column h2 {
    font-family: var(--font-secondary), sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--isuzu-black);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.text-column p {
    font-size: 1.1rem;
    color: var(--isuzu-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-column {
    width: 100%;
    height: 500px;
    background: var(--isuzu-light-gray);
    border-radius: 4px;
}

.image-column img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Stats Section */
.stats-section {
    background: var(--isuzu-light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--isuzu-white);
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
}

.stat-card:hover{
    border: solid var(--isuzu-red) 1px;
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-primary), sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--isuzu-red);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--isuzu-black);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--isuzu-gray);
}

/* Mission Vision */
.mission-vision {
    background: var(--isuzu-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.mv-card {
    padding: 2rem;
    background: var(--isuzu-light-gray);
    border-radius: 4px;
}

.mv-card h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--isuzu-black);
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--isuzu-gray);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background: var(--isuzu-light-gray);
}

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

.value-item h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--isuzu-black);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--isuzu-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--isuzu-black);
    color: var(--isuzu-white);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff3636;
}

.cta-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--isuzu-red);
    color: var(--isuzu-white);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--isuzu-white);
    color: var(--isuzu-black);
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero{
        margin-top: 6em;
    }
}

@media (max-width: 768px) {

    .page-hero {
        padding: 6rem 8px 6rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .image-column{
        height: 400px;
    }
    
    .content-grid,
    .mv-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
