/* Style global */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #b7dcff, #e3f2ff);
    font-family: "Segoe UI", Arial, sans-serif;
    color: #1a1a1a;
    text-align: center;
}

/* Conteneur principal */
.container {
    margin-top: 60px;
    animation: fadeIn 1.5s ease-in-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* centre tout le contenu */
}

/* Logo AMP — NON CENTRÉ */
.logo {
    width: 140px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    display: block;
    margin-left: 20px; /* tu peux ajuster */
    margin-right: auto; /* empêche le centrage */
}

/* Image en construction */
.construction-img {
    width: 320px;
    max-width: 80%;
    animation: float 3s ease-in-out infinite;
}

/* Titres et textes */
h1 {
    font-size: 2.4em;
    margin-top: 10px;
    font-weight: 700;
}

p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Compte à rebours */
#countdown {
    margin-top: 25px;
    font-size: 1.8em;
    font-weight: bold;
    color: #004a8f;
}

/* Formulaire email */
.email-box {
    margin-top: 35px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 340px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeIn 2s ease-in-out;
}

input[type="email"] {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    margin-bottom: 12px;
}

button {
    background: #0078d7;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #005fa3;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Conteneur global si besoin */
#global {
    margin-left: auto;
    margin-right: auto;
    width: auto;
}
