@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Alata&family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #ffffff;
    /*background-color: #010023;*/
    font-family: "Albert Sans", sans-serif;
    color: black;

    h2{
        font-family: Alata, sans-serif;
        color: black;
        font-size: 40px;
    }
}

.intro{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.introduction{
    text-align: center;
    z-index: 2;
}

.introduction p{
    /*color: #FFB1CE;*/
    color: black;
    font-family: Alata, sans-serif;
    font-size: 26px;
}

.introduction .principale{
    font-family: Aclonica, sans-serif;
    font-size: 160px;
    color: #FFB1CE;
}

.halo {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 210, 227, 0.71) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 0;
}

.halo.small {
    width: 12px;
    height: 12px;
    background: rgba(250, 201, 219, 0.58);
    z-index: 10;
}

@keyframes slideFadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.introduction p {
    opacity: 0;
    animation: slideFadeUp 0.6s ease-out forwards;
}

.introduction p:nth-child(1) {
    animation-delay: 0.1s;
}

.introduction p:nth-child(2) {
    animation-delay: 0.4s;
}

.introduction p:nth-child(3) {
    animation-delay: 0.7s;
}



.Myself{
    padding : 5em;
    border-bottom: 15px dashed #FFB1CE;
}

.Myself h2 {
    margin-bottom: 1em;
    font-family: Alata, sans-serif;
}

.Myself p {
    font-size: 18px;
    color: #606060;
}


.Dream{
    text-align: center;
    padding: 3em 3em 5em 3em;
    h1{
        font-family: Aclonica, sans-serif;
        color: #090909;
        margin: 1em;
        font-size: 30px;
    }

    p{
        padding: 0 8em;
        font-size: 18px;
        color: #606060;
    }

    a{
        text-decoration: none;
        color: white;
    }
}

.rea{
    background-color: rgb(41, 41, 41);
    padding: 5em;
    border-top: 10px solid #FFB1CE;
}

.rea h2{
    color: white;
}

.statistique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    justify-items: center;
    align-items: center;
    text-align: center;
    padding: 3em 9em;
}

.stat {
    background: radial-gradient(at -90% 90%, #fbe9e9, #fff9f9);
    padding: 2em 1.5em;
    border-radius: 25px;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 0 150px rgba(161, 107, 123, 0.25);
}

.stat .nombre {
    font-size: 3rem;
    font-weight: bold;
    color: #fb85a8;
    font-family: Alata, sans-serif;
}

.stat .label {
    font-size: 1rem;
    margin-top: 0.5em;
    font-family: Alata, sans-serif;
    color: black;
}

.reaimg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    justify-items: center;
    margin-top: 3em;
}

.reaimg img {
    width: 100%;
    max-width: 700px; /* Ajuste selon la taille que tu préfères */
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.reaimg img:hover {
    transform: scale(1.03);
}

.reaimg-wrapper {
    position: relative;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 2em;
}
/* effet dégradé pour masquer le bas */
.reaimg-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8em;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgb(41, 41, 41));
    pointer-events: none;
    z-index: 1;
}

.see-more-container {
    text-align: center;
    margin-top: -10em;
    position: relative;
    z-index: 2;

    a{
        text-decoration: none;
        color: white;
    }
}

.seeMoreBtn{
    padding: 0.8em 2em;
    background-color: #ffb1ce;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.seeMoreBtn:hover {
    background-color: #e39cb7;
}

.form {
    padding: 5em 12em;
    display: flex;
    justify-content: space-between;
    gap: 4em;
    align-items: center;
    background-image: url("/Portfolio/images/separateur.png");
    background-repeat: no-repeat;

}

.info {
    max-width: 400px;
}

.info p {
    font-size: 18px;
    color: rgb(255, 177, 206);
}

.info h1 {
    font-family: Aclonica, sans-serif;
    color: #090909;
    font-size: 30px;
    margin: 1em 0;
}

.contacter {
    flex: 1;
}

.call form {
    background-color: white;
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
}
.input-group textarea {
    resize: none;
    height: 100px;
}

.input-group input,
.input-group textarea {
    padding: 1em;
    border: 1px solid #FFB1CE;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 1em;
    font-family: Alata,sans-serif;
}

.input-group input:focus,
.input-group textarea:focus {
    border: 2px solid #FFB1CE;
    outline: none;
}

button {
    padding: 1em 2em;
    background-color: #FFB1CE;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1em;
}

button:hover {
    background-color: #E39CB7;
}

@media (max-width: 768px) {
    .form {
        flex-direction: column;
        gap: 2em;
    }
    .info {
        text-align: center;
    }
}
