/* --- SECTION GLOBALE --- */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
}

body {
    font-family: "Montserrat", sans-serif;
}

h1, h2, h3 {
    font-family: 'DIN Next Rounded LT W01 Light';
}

.about-left {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.about-left, .about-right {
    flex: 1;
}

.about-left-img {
    flex: 0 0 320px;
    max-width: 320px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.profile-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    transition: transform 0.3s, box-shadow 0.3s;
}
.profile-img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(255,139,90,0.18);
}

.about-left-text {
    flex: 1;
    min-width: 260px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-left-text h1 {
    font-family: 'DIN Next Rounded LT W01 Light', sans-serif;
    font-size: 2.2rem;
    color: #ce6f2bf5;
    margin-bottom: 0.5em;
    margin-top: 0;
}
.about-left-text h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1em;
    font-weight: 600;
}
.about-left-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1em;
    text-align: justify;
}
.about-actions {
    margin: 1.5em 0 1em 0;
}
.btn-contact {
    display: inline-block;
    background: #ce6f2bf5;
    color: #fff;
    padding: 0.7em 2em;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-contact:hover {
    background: #e06d3b;
}
.about-funfacts {
    margin-top: 2em;
    background: #fff7f3;
    border-left: 4px solid #ce6f2bf5;
    padding: 1em 1.5em;
    border-radius: 8px;
}
.about-funfacts h3 {
    margin-top: 0;
    color: #ce6f2bf5;
    font-size: 1.1em;
    margin-bottom: 0.7em;
}
.about-funfacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-funfacts li {
    margin-bottom: 0.5em;
    font-size: 1.05em;
    color: #555;
}

/* --- IMAGE & TEXTE --- */
.about-left img {
    width: 100%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    height: auto;
    display: block;
}

.about-left h2 {
    font-family: 'DIN Next Rounded LT W01 Light';
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    margin-top: 0;
}

.about-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

/* --- FORMULAIRE DE CONTACT --- */
.about-right {
    width: 35%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.about-right h2 {
    font-family: 'DIN Next Rounded LT W01 Light';
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.about-right input, .about-right textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.about-right textarea {
    height: 120px;
    resize: none;
}

.about-right button {
    width: 100%;
    padding: 12px;
    background: #ce6f2bf5;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.about-right button:hover {
    background: #e65c00;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
}

input, textarea {
    box-sizing: border-box;
}

.or {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.line {
    width: 48%;
    height: 2px;
    background-color: #ccc;
}

.or span {
    font-size: 1.3rem;
    margin: 20px 0;
}

.other-contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.other-contacts img {
    width: 38px;
    height: 38px;
    margin-right: 10px;
}

.call {
    display: flex;
    align-items: center;
    font-size: 18px;
}

@media (max-width: 900px) {
    #about {
        padding: 20px 0;
        width: 98%;
    }
    .about-left {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .about-left-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {

    .about-left-img img {
        margin: 0px;
    }

    .about-left-text h2 {
        text-align: center;
    }

    .about-left-text {
        padding: 20px;
    }
}