/* ================================
   AÉAQ EVENT — STYLE GLOBAL
   ================================ */

body {
    font-family: "Montserrat", "Segoe UI", sans-serif;
    color: #e6e6e6;
    background: #0A1A2F;
}

/* Titres principaux */
h1, h2, h3 {
    font-weight: 700;
    color: #4DB8FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sous-titres */
.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8CD3FF;
    margin-bottom: 10px;
}

/* ================================
   BLOCS / CARTES
   ================================ */

.eb-event-registration,
#eb-event-page,
.eb-container,
.eb-form {
    background: #0F223A;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ================================
   TABLEAU DES BILLETS
   ================================ */

table.eb-ticket-types {
    width: 100%;
    border-collapse: collapse;
    background: #102840;
    border-radius: 10px;
    overflow: hidden;
}

table.eb-ticket-types th {
    background: #14395C;
    color: #ffffff;
    padding: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

table.eb-ticket-types td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #d9d9d9;
}

table.eb-ticket-types tr:last-child td {
    border-bottom: none;
}

/* ================================
   FORMULAIRES
   ================================ */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    background: #0C1C30;
    border: 1px solid #1E3A57;
    border-radius: 10px;
    color: #e6e6e6;
    transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #4DB8FF;
    box-shadow: 0 0 8px rgba(77,184,255,0.4);
    outline: none;
}

/* Labels */
label {
    font-weight: 600;
    color: #bcdfff;
    margin-bottom: 6px;
    display: block;
}

/* Champs obligatoires */
label.required:after {
    content: " *";
    color: #FF6B6B;
}

/* ================================
   BOUTONS
   ================================ */

button,
input[type="submit"],
.eb-submit-button {
    background: linear-gradient(135deg, #4DB8FF, #1A75BB);
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover,
input[type="submit"]:hover,
.eb-submit-button:hover {
    background: linear-gradient(135deg, #6FD0FF, #2A8ED6);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Bouton désactivé */
button:disabled,
input[type="submit"]:disabled {
    background: #3A4F63;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ================================
   SECTIONS DE PAIEMENT
   ================================ */

#eb-payment-section,
.eb-payment-info {
    background: #102840;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

#eb-payment-section h3 {
    color: #4DB8FF;
}

/* Montants */
.eb-cart-total,
.eb-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8CD3FF;
}

/* ================================
   INFOLETTRE / CHECKBOXES
   ================================ */

input[type="checkbox"] {
    accent-color: #4DB8FF;
    width: 18px;
    height: 18px;
}

/* ================================
   FOOTER
   ================================ */

footer,
#eb-footer {
    background: transparent !important;
    color: #8CD3FF;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #4DB8FF;
    font-weight: 600;
}
/* ================================
   AÉAQ — CORRECTION DE LISIBILITÉ
   ================================ */

/* Texte général trop sombre */
body,
.eb-container,
.eb-event-registration,
.eb-form,
#eb-event-page {
    color: #e8f4ff !important;
}

/* Libellés de champs */
label,
label span,
.eb-field-label {
    color: #cfe8ff !important;
}

/* Texte dans les tableaux */
table.eb-ticket-types td,
table.eb-ticket-types th {
    color: #e8f4ff !important;
}

/* Placeholders trop pâles */
input::placeholder,
textarea::placeholder {
    color: #9bbcd4 !important;
}

/* Champs de formulaire */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    color: #e8f4ff !important;
    background: #0C1C30 !important;
}

/* Options de select */
select option {
    color: #0A1A2F !important;
    background: #e8f4ff !important;
}

/* Texte des sections de paiement */
#eb-payment-section,
.eb-payment-info {
    color: #e8f4ff !important;
}