/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* ============================================
   ABOUT PAGE HERO
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.about-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* ============================================
   TWO-COLUMN LAYOUT (For story/mission)
   ============================================ */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.column {
    display: flex;
    flex-direction: column;
}

.column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.column p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   OWNER/TEAM SECTION
   ============================================ */
.owner-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.owner-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.owner-image-container {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.owner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-placeholder {
    font-size: 5rem;
    color: #ccc;
}

.owner-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.owner-title {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.owner-info p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   VALUES/MISSION CARDS
   ============================================ */
.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-about-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   STATS/HIGHLIGHTS SECTION
   ============================================ */
.stats-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn-primary {
    background-color: #333;
    color: #ffffff;
}

.cta-btn-primary:hover {
    background-color: #000;
}

.cta-btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #e0e0e0;
}

.cta-btn-secondary:hover {
    background-color: #e0e0e0;
}

/* ============================================
   LOCATION/MAP SECTION
   ============================================ */
.location-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.location-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.location-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-details li {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.location-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.map-placeholder {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: 300px;
    overflow: hidden;
}

/* ============================================
   SITE FOOTER (about page version)
   ============================================ */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem 1.5rem;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer .footer-section h3,
.site-footer .footer-section h4 {
    color: #ffffff;
    margin: 0 0 1rem;
    font-size: 1rem;
}

.site-footer .footer-section p,
.site-footer .footer-section ul {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-links a.active {
    color: #1a1a1a;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE DESIGN - About Page
   ============================================ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero {
        padding: 3rem 1rem 2rem;
    }

    .about-section {
        margin: 3rem auto;
        padding: 0 1rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .owner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .owner-image-container {
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .owner-info h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}
