/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
    margin-bottom: 3rem;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.about-hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* About Content */
.about-content {
    padding: 2rem 0;
}

/* Section Card */
.about-section {
    margin-bottom: 4rem;
}

.section-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-card h2 {
    font-size: 2rem;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-card h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

.section-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

/* Values Section */
.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2rem;
    color: var(--secondary-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.values-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    margin-bottom: 4rem;
}

.portfolio-section h2 {
    font-size: 2rem;
    color: var(--secondary-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.portfolio-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

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

.portfolio-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.portfolio-card.light {
    background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
    border: 2px solid var(--primary-gold);
}

.portfolio-card.dark {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #1a252f 100%);
    color: var(--bg-white);
}

.portfolio-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.portfolio-card.light h3 {
    color: var(--secondary-dark);
}

.portfolio-card.light h3::after,
.portfolio-card.dark h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.portfolio-card ul {
    list-style: none;
}

.portfolio-card ul li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.portfolio-card.light ul li {
    color: var(--text-dark);
}

.portfolio-card.dark ul li {
    color: #bdc3c7;
}

.portfolio-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #1a252f 100%);
    color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 4rem;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #bdc3c7;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--secondary-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-gold);
}

.cta-btn:hover {
    background: transparent;
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        margin-bottom: 2rem;
    }

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

    .about-hero-content p {
        font-size: 1rem;
    }

    .section-card {
        padding: 1.5rem;
    }

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

    .values-section h2,
    .portfolio-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .values-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-cta h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 35vh;
    }

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

    .about-hero-content p {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 1rem 0;
    }

    .section-card {
        padding: 1rem;
    }

    .section-card h2 {
        font-size: 1.3rem;
    }

    .values-section h2,
    .portfolio-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .portfolio-card {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 1.5rem;
    }

    .contact-cta h2 {
        font-size: 1.3rem;
    }

    .contact-cta p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
