* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-style: normal;
}

body {
    background: linear-gradient(180deg, #009fe3, #351251);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    margin-bottom: -15px;
}

.logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.logo h1 {
    font-size: 32px;
    letter-spacing: 2px;
    visibility: hidden;
    height: 0;
}

.logo span {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
    visibility: hidden;
    height: 0;
}

.content {
    display: flex;
    gap: 60px;
    align-items: center; /* 🔥 centrage vertical */
    justify-content: center;
    flex-wrap: wrap;
}

/* Colonne gauche (photo + réseaux) */
.left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.photo {
    width: 250px;
    height: 285px;
    border-radius: 50%;
    overflow: hidden;
    /*background: #1fa6d1;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo img {
    width: 100%;
    height: auto;
}

/* Réseaux sociaux */
.social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* Icônes */
.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #029fe3;
    border-radius: 4px;
    color: #029fe3;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social a:hover {
    background: #029fe3;
    color: #fff;
}

/* Colonne droite */
.right {
    max-width: 500px;
    text-align: left;
}

/* Construction aligné */
.construction {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
}

/* Texte */
.text {
    text-align: left;
}

/* Contact aligné */
.contact {
    margin-top: 30px;
    font-size: 14px;
    color: #7fd8ff;
    text-align: left;
}

.text {
    max-width: 500px;
    text-align: left;
}

.text p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.text p.highlight {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
    flex-direction: column;
    align-items: center;
    }
    .logo {
    margin-bottom: 20px;
    }

    /* 🔥 On inverse les colonnes */
    .right {
    order: -1; /* passe avant la photo */
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .left {
    order: 0;
    }

    /* Centrage mobile */
    .construction,
    .text,
    .contact {
    text-align: center;
    }
}