/* Custom About Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-text: #111;
    --secondary-text: #555;
    --accent-color: #ee3239;
    --bg-warm: #f1ede6;
    /* Warmer than pure white, matches header vibe */
    --bg-white: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--primary-text);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--primary-text);
}

.premium-heading {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-text);
    margin-bottom: 30px;
    display: block;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary-text);
    font-weight: 300;
}

/* --- Layout Sections --- */
.section-padding {
    padding: 100px 0;
}

.bg-warm {
    background-color: var(--bg-warm);
}



/* --- Hero Section --- */
.about-hero {
    padding: 160px 0;
    /* Increased padding for banner */
    text-align: center;
    background-color: var(--bg-warm);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Optional Overlay for readability */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight dark overlay */
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.text-white {
    color: #fff !important;
}

/* --- Content Split Section --- */
.content-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-split .text-col {
    flex: 1;
}

.content-split .img-col {
    flex: 1;
}

.img-frame {
    position: relative;
    overflow: hidden;
    /* border-radius: 4px; */
    /* Sharp edges can look more premium sometimes */
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.img-frame:hover img {
    transform: scale(1.03);
}

/* --- Timeline Section --- */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
    margin-left: auto;
    /* Push to right */
}

.timeline-marker {
    position: absolute;
    top: 5px;
    right: -6px;
    width: 12px;
    height: 12px;
    background: var(--primary-text);
    border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -6px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* --- Mission/Vision Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    padding: 40px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* --- Premium Dark Cards (Feature Boxes) --- */
.card-premium-dark {
    background-color: #9c8c7c;
    /* Brownish dark beige/Taupe */
    color: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
}

.card-premium-dark:hover {
    transform: translateY(-5px);
    background-color: #8a7a6b;
    /* Slightly darker on hover */
    color: #fff;
}

.card-premium-dark .value-icon {
    color: #f1ede6;
    /* Light warm beige icon */
}

.card-premium-dark h4 {
    color: #fff;
    font-weight: 500;
}

.card-premium-dark p {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Contact Simple --- */
.contact-simple {
    background-color: var(--bg-warm);
    padding: 80px 0;
    text-align: center;
}

.contact-form-minimal {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control-minimal {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-control-minimal:focus {
    border-bottom-color: var(--primary-text);
}

.btn-minimal {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-text);
    color: #fff;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.btn-minimal:hover {
    opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .content-split {
        flex-direction: column;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 50px;
        margin-left: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        align-self: flex-start;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 14px;
        right: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .premium-heading {
        font-size: 2.2rem;
    }
}