@import '/assets/css/base.css';
@import '/assets/css/header.css';
@import '/assets/css/footer.css';

/* About Page Specific Styles */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.1) 0%, rgba(184, 131, 60, 0.08) 100%);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero__content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero__lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-hero__image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Founder Story Cards */
.founder-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.founder-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.founder-card__content {
    padding: 30px;
}

.founder-card__content h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.founder-card__content p {
    color: #666;
    line-height: 1.7;
}

/* Values Grid */
.values__grid {
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #b8833c;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.value-card__title {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.value-card__text {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team__grid {
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-member__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member__content {
    padding: 25px;
}

.team-member__name {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.team-member__title {
    font-size: 0.9rem;
    color: #b8833c;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member__bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Approach Steps */
.approach__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.approach__step {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f5f1e8 0%, #fafaf8 100%);
    border-radius: 12px;
    position: relative;
}

.approach__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #b8833c;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.approach__step-title {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.approach__step-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Facilities Grid */
.facilities__grid {
    margin-top: 40px;
}

.facility-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.facility-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.facility-image__caption {
    padding: 20px;
    background: #f9f7f4;
    text-align: center;
    font-weight: 600;
    color: #2c2c2c;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #d2b48c 0%, #b8833c 100%);
    text-align: center;
    color: white;
}

.cta-section__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero__grid,
    .founder-card,
    .values__grid,
    .team__grid,
    .approach__steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-hero__content h1 {
        font-size: 2rem;
    }

    .approach__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section__title {
        font-size: 1.8rem;
    }

    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0;
    }

    .about-hero__content h1 {
        font-size: 1.5rem;
    }

    .approach__steps {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 20px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section__actions {
        flex-direction: column;
    }
}

section {
    padding: 60px 0;
}