.section-presentation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 80px 5%;
    background: var(--tuatara);
    position: relative;
}

.section-presentation-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: 40px;
}

.section-presentation-titre {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turmeric);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 0.05em;
}

/*Titre*/
.section-presentation-titre::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: rgba(203, 194, 80, 0.5);
    margin: 20px auto 0;
    transition: all var(--transition-speed) ease;
}

.section-presentation-titre:hover::after {
    width: 120px;
    background: var(--turmeric);
}

/* Version mobile */
@media (max-width: 768px) {
    .section-presentation-titre {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .section-presentation-titre::after {
        width: 60px;
        margin-top: 15px;
    }
    
    .section-presentation-titre:hover::after {
        width: 80px;
    }
}

/* Style de l'image */
.section-presentation-image {
    position: relative;
    max-width: 500px;
    z-index: 1;
}

.section-presentation-image::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle at center, var(--turmeric) 0%, transparent 70%);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

.section-presentation-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

.section-presentation-image:hover img {
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    transform: translateY(-5px);
}

/* Style du texte */
.section-presentation-description {
    padding: 40px;
    background: rgba(31, 31, 30, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--turmeric);
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

.section-presentation-description p {
    margin-bottom: 1em;
}

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

/* Style du bouton */
.section-presentation-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border-radius: 25px;
    background-color: var(--turmeric);
    color: var(--tuatara);
    border: none;
    align-self: flex-start;
    margin-top: 20px;
}

.section-presentation-btn:hover {
    background-color: white;
    box-shadow: 0 4px 20px rgba(203, 194, 80, 0.6);
    transform: translateY(-2px);
}

.section-presentation-btn:active {
    transform: translateY(1px);
}

/* Animation du halo */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.2; }
    100% { transform: scale(1.05); opacity: 0.4; }
}

/* Version mobile */
@media (max-width: 768px) {
    .section-presentation {
        flex-direction: column;
        padding: 60px 5%;
        min-height: auto;
    }
    
    .section-presentation-content {
        margin-left: 0;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .section-presentation-image {
        max-width: 100%;
    }
    
    .section-presentation-description {
        padding: 30px;
    }
    
    .section-presentation-btn {
        align-self: center;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}