﻿/* About Us page styles - Elegant Black & White Theme */
.about-banner {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Content/Img/Playa.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
}

.about-title {
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    padding-bottom: 15px;
}

    .about-title:after {
        content: '';
        position: absolute;
        width: 60px;
        height: 1px;
        background-color: #fff;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 100px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

    .section-heading:after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: #000;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Company Overview Styles */
.company-overview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.overview-content {
    flex: 1;
    padding: 50px;
    min-width: 300px;
}

    .overview-content h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #333;
        font-weight: 500;
    }

.overview-text {
    color: #666;
    line-height: 1.8;
}

.overview-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
}

    .overview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Values Section Styles */
.our-values {
    margin-bottom: 80px;
    text-align: center;
}

.values-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 500;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section Styles */
.team-section {
    margin-bottom: 80px;
}

.team-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .team-member:nth-child(even) {
        flex-direction: row-reverse;
    }

.member-photo {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.member-info {
    flex: 2;
    padding: 40px;
    min-width: 300px;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.member-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: normal;
}

.member-bio {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
}

    .member-social a {
        color: #333;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

        .member-social a:hover {
            color: #000;
        }

/* CTA Section Styles */
.about-cta {
    text-align: center;
    padding: 60px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .about-cta h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #333;
    }

    .about-cta p {
        max-width: 600px;
        margin: 0 auto 30px;
        color: #666;
        line-height: 1.6;
    }

.btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-cta:hover {
        background-color: #333;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .company-overview {
        flex-direction: column;
    }

    .overview-image {
        width: 100%;
        height: 350px;
    }

    .team-member, .team-member:nth-child(even) {
        flex-direction: column;
    }

    .member-photo {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 300px;
        margin-bottom: 60px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .overview-content {
        padding: 30px;
    }

    .value-card {
        min-width: 100%;
    }

    .about-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .about-banner {
        height: 200px;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .overview-content h3, .values-heading, .team-heading, .about-cta h3 {
        font-size: 1.5rem;
    }
}
