	/* Section de contenu élégant */
.elegant-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.elegant-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.elegant-title {
    font-size: 2.5rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.elegant-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #E67E22;
}

.elegant-subtitle {
    font-size: 1.8rem;
    color: #34495E;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.elegant-section-title {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.elegant-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.elegant-text p {
    margin-bottom: 1.5rem;
    color: #4A4A4A;
}

.elegant-image {
    margin: 2.5rem 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.elegant-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.elegant-image:hover img {
    transform: scale(1.02);
}

.elegant-image.left {
    float: left;
    margin-right: 2rem;
    width: 45%;
}

.elegant-image.right {
    float: right;
    margin-left: 2rem;
    width: 45%;
}

.elegant-caption {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 0.8rem;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.elegant-image:hover .elegant-caption {
    transform: translateY(0);
    color: #F9F3F3;
}

/* Effet spécial sur la première lettre */
.elegant-text p:first-of-type::first-letter {
    font-size: 3.5em;
    float: left;
    padding: 0.1em 0.1em 0 0;
    color: #E67E22;
    font-family: 'Playfair Display', serif;
    line-height: 0.8;
}

/* Animation d'entrée */
@keyframes elegantFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elegant-content {
    animation: elegantFadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elegant-wrapper {
        padding: 0 1.5rem;
    }

    .elegant-title {
        font-size: 2rem;
    }

    .elegant-subtitle {
        font-size: 1.5rem;
    }

    .elegant-image.left,
    .elegant-image.right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

    .elegant-caption {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .elegant-title {
        font-size: 1.8rem;
    }

    .elegant-subtitle {
        font-size: 1.3rem;
    }

    .elegant-section-title {
        font-size: 1.2rem;
    }

    .elegant-text {
        font-size: 1rem;
    }
}
	
	
