/* style.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white; 
    overflow: hidden;
}

.bg {
/*    background-color: #26272c; */
    background-color: #24272E; 
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.05); 
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: block;
    width: 170px; 
    height: 170px; 
    border-radius: 50%; 
    object-fit: contain; 
    background-color: rgba(255, 255, 255, 0.08); 
    padding: 10px; 
    margin: 0 auto 15px auto; 
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 3.5em; 
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

p.subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.8;
}

.email-signup {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    width: 300px;
    max-width: 100%;
    font-size: 1em;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333; 
}

button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background-color: #ff7f50; 
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

button:hover {
    background-color: #e66a3e;
    transform: translateY(-2px);
}

/* --- NOUVEAU : STYLE DES RÉSEAUX SOCIAUX --- */
.social-footer {
    margin-top: 40px; /* Espace entre le formulaire et les icônes */
    display: flex;
    justify-content: center;
    gap: 25px; /* Espace entre les icônes */
}

.social-link {
    color: white; /* Couleur de base des icônes */
    opacity: 0.6; /* Un peu transparent par défaut pour ne pas voler la vedette au bouton */
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link svg {
    width: 28px; /* Taille des icônes */
    height: 28px;
    fill: currentColor; /* Permet au SVG de prendre la couleur définie dans le parent (.social-link) */
}

.social-link:hover {
    opacity: 1; /* Pleine visibilité au survol */
    color: #ff7f50; /* Devient orange au survol (assorti au bouton) */
    transform: translateY(-3px); /* Petit effet de soulèvement sympa */
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    .content { padding: 30px 20px; }
    .logo { width: 60px; height: 60px; padding: 8px; } 
    .email-signup { flex-direction: column; }
    input[type="email"] { width: auto; }
    button { width: 100%; }
    .social-footer { margin-top: 30px; }
}
