/* Configuration générale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Conteneur principal */
.container {
    padding: 20px;
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

/* Style du Logo */
.logo {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Slogan doré */
.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    color: #d4af37;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #d4af37;
    margin: 20px auto;
}

/* Texte de message */
.message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
}

/* Bouton interactif */
.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-contact:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Pied de page */
.footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 1px;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
