/* About Page Specific CSS */

/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
}

.about-hero .hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Photographer Section */
.photographer-section {
    padding: 80px 0;
    background: var(--background-gray);
}

.photographer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.photographer-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.photographer-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.photographer-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.photographer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-item p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Our Approach Section */
.our-approach {
    padding: 80px 0;
    background: white;
}

.our-approach h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--background-light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: var(--primary-color);
}

.approach-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--background-gray);
}

.services-overview h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reason-item {
    padding: 25px;
    border-left: 4px solid var(--accent-color);
    background: var(--background-light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.reason-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content,
    .photographer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photographer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .story-image img,
    .photographer-image img {
        height: 300px;
    }
}

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

    .approach-card {
        padding: 30px 20px;
    }

    .approach-icon {
        width: 60px;
        height: 60px;
    }

    .approach-icon i {
        font-size: 1.5rem;
    }
}