/* Thermonic Website - About Page CSS Styles
   This stylesheet contains styles specific to the about page
*/

/* About Header Section */
.about-header-section {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    color: #fff;
}

.about-header-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 53, 87, 0.8) 30%, rgba(29, 53, 87, 0.6) 70%, rgba(29, 53, 87, 0.4) 100%);
}

.about-header-content {
    position: relative;
    z-index: 2;
    text-align: start;
}

.about-header-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
}

.mission-row,
.vision-row {
    margin-bottom: 80px;
}

.mission-image,
.vision-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-image img,
.vision-image img {
    width: 100%;
    border-radius: 5px;
}

.mission-content,
.vision-content {
    padding: 30px 0;
}

.mission-content h2,
.vision-content h2 {
    color: #1d3557;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mission-content h2:after,
.vision-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #3c5f8e;
}

/* Company Story Section */
.company-story-section {
    padding: 80px 0;
}

.company-story {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

.value-box {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon img {
    height: 60px;
    width: auto;
}

.value-icon i {
    font-size: 48px;
    color: #3c5f8e;
}

.value-box h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-member {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
    color: #1d3557;
}

.member-info .position {
    color: #3c5f8e;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info .bio {
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
}

.member-social .social-icon {
    width: 35px;
    height: 35px;
    background-color: #f1faee;
    color: #1d3557;
    margin: 0 5px;
}

.member-social .social-icon:hover {
    background-color: #3c5f8e;
    color: #fff;
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .about-header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .about-header-content h1 {
        font-size: 2.2rem;
    }
    
    .about-header-section {
        height: 350px;
    }
    
    .mission-vision-section,
    .values-section,
    .team-section {
        padding: 80px 0;
    }
    
    .mission-row,
    .vision-row {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .about-header-content h1 {
        font-size: 2rem;
    }
    
    .about-header-section {
        height: 300px;
    }
    
    .mission-vision-section,
    .values-section,
    .team-section {
        padding: 60px 0;
    }
    
    .mission-image,
    .vision-image {
        margin-bottom: 30px;
    }
    
    .mission-row,
    .vision-row {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .about-header-content h1 {
        font-size: 1.8rem;
    }
    
    .about-header-section {
        height: 250px;
    }
    
    .mission-vision-section,
    .values-section,
    .team-section {
        padding: 50px 0;
    }
}