/* Styles CSS spécifiques pour la page À propos (about.html) */

/* Section Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 100%);
    color: white;
    padding: 6rem 0 10rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: float 3s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.text-accent {
    color: #ff9800;
}

.hero .lead {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 150px;
}

.hero-shape .shape-fill {
    fill: #FFFFFF;
}

/* Sections avec badges */
.section-subtitle {
    display: inline-block;
    background-color: rgba(33, 150, 243, 0.1);
    color: #1976d2;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* About Intro Section */
.about-intro-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
}

.about-content {
    padding: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-feature-icon {
    flex: 0 0 40px;
    height: 40px;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.about-feature-text h5 {
    margin: 0 0 0.25rem;
    color: #0d47a1;
    font-weight: 600;
}

.about-feature-text p {
    margin: 0;
    color: #546e7a;
    font-size: 0.9rem;
}

.about-image-main {
    position: relative;
    margin: 1rem auto;
    max-width: 90%;
}

.about-image-main img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image-main:hover img {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    transform: rotate(-5deg);
    animation: pulse 3s infinite;
}

.about-image-badge span {
    display: block;
    font-size: 0.85rem;
    line-height: 1.2;
}

.about-image-badge span:first-child {
    font-size: 1rem;
}

/* Installations Section */
.installation-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.installation-image {
    position: relative;
    overflow: hidden;
}

.installation-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.installation-card:hover .installation-image img {
    transform: scale(1.05);
}

.installation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.installation-card:hover .installation-overlay {
    opacity: 1;
}

.installation-icon {
    background: white;
    color: #1976d2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.installation-card:hover .installation-icon {
    transform: translateY(0);
    opacity: 1;
}

.installation-content {
    padding: 1.5rem;
}

.installation-content h4 {
    color: #0d47a1;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.installation-content p {
    color: #546e7a;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Shape Divider */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Section Mission & Vision */
.mission-vision-section {
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.mission-vision-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-card-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.mission-vision-icon-wrapper {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.mission-vision-card-icon {
    color: #1976d2;
    font-size: 2rem;
}

.mission-vision-card-title {
    color: #0d47a1;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.mission-vision-card-content {
    padding: 2rem;
}

.mission-vision-card-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.mission-vision-card-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mission-list-icon {
    flex: 0 0 28px;
    height: 28px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.mission-list-text {
    color: #37474f;
}

/* Équipe Section */
.team-section {
    background: linear-gradient(0deg, rgba(245, 247, 250, 0.5) 0%, #ffffff 100%);
}

.team-profile-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-profile-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-profile-image {
    height: 280px;
    overflow: hidden;
}

.team-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-profile-card:hover .team-profile-image img {
    transform: scale(1.05);
}

.team-profile-info {
    position: relative;
    padding: 2rem 1.5rem;
    text-align: center;
}

.team-profile-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1976d2;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.team-profile-name {
    color: #0d47a1;
    margin: 0.5rem 0;
    font-weight: 700;
}

.team-profile-position {
    color: #78909c;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.team-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d47a1;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
}

.team-social-icon:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-3px);
}

.team-expertise-container {
    margin-top: 3rem;
}

.team-expertise-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-expertise-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    flex: 0 0 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.expertise-content h5 {
    margin: 0 0 0.25rem;
    color: #0d47a1;
    font-weight: 600;
}

.expertise-content p {
    margin: 0;
    color: #78909c;
    font-size: 0.9rem;
}

/* Valeurs Section */
.values-section {
    background: linear-gradient(0deg, #ffffff 0%, rgba(245, 247, 250, 0.5) 100%);
    position: relative;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    transition: height 0.3s ease;
    z-index: -1;
}

.value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.value-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.3) 100%);
}

.value-icon i {
    font-size: 2rem;
    color: #1976d2;
}

.value-title {
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.value-list {
    padding: 0;
    list-style: none;
}

.value-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #37474f;
}

.value-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff9800;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 152, 0, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-image-badge {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .about-image-badge span:first-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 4rem 0 8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .about-image-main {
        margin: 2rem auto;
    }
    
    .about-image-badge {
        width: 70px;
        height: 70px;
        right: -10px;
        bottom: -10px;
    }
    
    .about-feature-item {
        margin-bottom: 1rem;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
}