:root {
    --blue-elite: #1d2b7a;
    --yellow-elite: #f7c843;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background-color: #ffffff;
}

.text-primary {
    color: var(--blue-elite) !important;
}

.btn-primary {
    background-color: var(--blue-elite);
    border: none;
}

.btn-primary:hover {
    background-color: #16205c;
}

.hero-section {
    min-height: 100vh;

    background: linear-gradient(
        rgba(29, 43, 122, 0.5),
        rgba(29, 43, 122, 0.8)
    ),
    url('../images/stadium.jpg');
    background-size: cover;
    background-position: center;
}

.card {
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Icône */
.icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(13, 28, 113, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 1.8rem;
    color: #0d1c71;
}

/* Texte */
.card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1rem;
    line-height: 1.55;
}

.why-section {
    margin-top: 100px;
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #0d1c71 0%,
        #111f8f 100%
    );
}

/* Titres de section */
.why-title {
    color: #ffffff;
    letter-spacing: 0.6px;
}

.why-subtitle {
    color: #e0e3ff;
    font-size: 1.05rem;
    margin-top: 10px;
}

/* Icône circulaire */
.why-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(247, 200, 67, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-box i {
    font-size: 38px;
    color: #f7c843;
}

/* Titres des slides */
.why-section h4 {
    color: #ffffff;
    margin-top: 22px;
    letter-spacing: 0.4px;
}

/* Texte des slides */
.why-text {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
}

/* Espacement du carousel */
.carousel-item {
    padding: 55px 0;
}

/* Flèches du carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Responsive */

/* Animation fluide du carousel */
.carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Effet fade contrôlé */
.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
}
/* Contenu animé */
.carousel-item .why-icon-box,
.carousel-item h4,
.carousel-item .why-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Quand le slide est actif */
.carousel-item.active .why-icon-box,
.carousel-item.active h4,
.carousel-item.active .why-text {
    opacity: 1;
    transform: translateY(0);
}

/* Décalage progressif (effet pro) */
.carousel-item.active h4 {
    transition-delay: 0.15s;
}

.carousel-item.active .why-text {
    transition-delay: 0.3s;
}
.why-icon-box {
    transition: transform 0.4s ease;
}

.carousel-item.active .why-icon-box {
    transform: scale(1.05);
}
/* =========================================
   SECTION CTA - INSCRIPTION
========================================= */

.cta-section {
    margin-top: 1Opx;
    padding: 90px 0;
   
    position: relative;
    overflow: hidden;
}

/* Effet léger décoratif */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: rgba(247, 200, 67, 0.12);
    border-radius: 50%;
    z-index: 0;
}

/* Texte */
.cta-title {
    color: var(--blue-elite);
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}

.cta-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Bouton principal */
.btn-cta {
    background-color: #f7c843;
    color: #000;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    background-color: #ffd45f;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive */

.calendar-preview-section {
    margin-top: 10px;
    padding: 80px 0;
    background-color: #f8f9ff;
}

/* Titres */
.calendar-title {
    color: #0d1c71;
    letter-spacing: 0.5px;
}

.calendar-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
    margin-top: 10px;
}

/* Carte match */
.match-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.match-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Date */
.match-date {
    background: linear-gradient(
        135deg,
        #0d1c71 0%,
        #111f8f 100%
    );
    color: #ffffff;
    border-radius: 12px;
    width: 70px;
    height: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-date .day {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.match-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
}


.match-info h5 {
    color: #0d1c71;
    margin-bottom: 8px;
}

.match-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.match-info i {
    color: #0d1c71;
    margin-right: 6px;
}

/* Bouton */
.calendar-preview-section .btn-outline-primary {
    border-color: #0d1c71;
    color: #0d1c71;
}

.calendar-preview-section .btn-outline-primary:hover {
    background-color: #0d1c71;
    color: #ffffff;
}

.classement-section {
    margin-top: 10px;
    background-color: #f6f7ff;
}

.classement-title {
    font-weight: 700;
    color: #0d1c71;
    margin-bottom: 15px;
}

.classement-text {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}


.classement-table-wrapper {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(13, 28, 113, 0.08);
}

.classement-table {
    margin-bottom: 0;
    text-align: center;
}

.classement-table thead {
    background-color: #0d1c71;
}

.classement-table thead th {
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 14px;
}

.classement-table tbody tr {
    transition: background 0.3s ease;
}

.classement-table tbody tr:hover {
    background-color: #f0f2ff;
}

.classement-table td {
    padding: 14px;
    font-weight: 500;
    color: #333;
}

/* Mise en avant du leader */
.top-team {
    background-color: rgba(247, 200, 67, 0.15);
    font-weight: 700;
}

.top-team td:last-child {
    color: #0d1c71;
}

/* Responsive */

/* SECTION PARTENAIRES */
.partenaires-section {
  padding: 60px 0;
  background-color: #f6f7ff;
}

.partenaires-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0d1c71;
}

.partenaires-text {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

/* BLOC PAR TYPE */
.partenaires-bloc {
  margin-bottom: 60px;
}

.partenaires-type {
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
}

.partenaires-type::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--yellow-elite);
  display: block;
  margin: 10px auto 0;
}


.partenaires-logos {
  gap: 20px;
}

.partenaire-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.partenaire-card:hover {
  transform: translateY(-5px);
}

.partenaire-card img {
  max-width: 70%;
  max-height: 80px;
  object-fit: contain;
}



html, body {
    height: 100%;
}


.footer {
    margin-top: 0px !important;
    background: linear-gradient(135deg, #0d1c71, #0b1760);
    color: #ffffff;
    padding: 70px 0 30px;
}

/* Titres */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Textes */
.footer-text {
    color: #dcdfff;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Liens */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #dcdfff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f7c843;
}

/* Séparateur */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 40px 0 20px;
}

/* Bas du footer */
.footer-bottom {
    font-size: 0.9rem;
    color: #cfd3ff;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group {
    position: relative;
}

.newsletter-input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #f7c843;
}

.newsletter-input-group input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    box-shadow: 0 0 0 3px rgba(247, 200, 67, 0.3);
}
.newsletter-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

.newsletter-alert.success {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.newsletter-alert.error {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.newsletter-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: inherit;
}

.newsletter-close:hover {
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Bouton */
.newsletter-btn {
    background: #f7c843;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #ffd95c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 200, 67, 0.4);
}

/* Message */
.newsletter-message {
    font-size: 0.85rem;
    min-height: 20px;
}

.newsletter-success {
    color: #28a745;
}

.newsletter-error {
    color: #ff6b6b;
}
.py-5 {
    padding-top: 3rem !important;
}
.about-page h4 {
    color: #0d1c71;
}

.icon-box i {
    font-size: 2.2rem;
    color: #0d1c71;
}

.about-box {
    border-left: 4px solid #0d1c71;
}

.about-page p {
    font-size: 0.95rem;
    line-height: 1.7;
}


.why-title1 {
    color: #ffffff;
    
}

.how-section {
    background: #ffffff;
}

.how-title {
    color: #0d1c71;
}

.how-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

.how-card {
    background: #f8f9fa;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.how-step {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #0d1c71;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.how-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: #0d1c71;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.how-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}
.dropdown-menu {
    border-radius: 8px;
}

.dropdown-item {
    padding: 10px 18px;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #f2f4ff;
    color: #0d1c71;
}
.reglement-section h4 {
    color: #0d1c71;
}

.reglement-block {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.reglement-list {
    list-style: none;
    padding-left: 0;
}

.reglement-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444;
}

.reglement-list i {
    color: #0d1c71;
    font-size: 1.1rem;
    margin-top: 2px;
}
.code-conduite-section h5 {
    color: #0d1c71;
}

.conduite-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conduite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.conduite-card i {
    color: #0d1c71;
    font-size: 1.2rem;
}

.conduite-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}
#format-tournoi {
    background-color: var(--elite-gray);
}

#format-tournoi h2 {
    color: var(--elite-blue);
    letter-spacing: 0.6px;
}

#format-tournoi h4,
#format-tournoi h5 {
    color: var(--elite-blue);
}

#format-tournoi .card {
    border: none;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Liseré bleu pro à gauche */
#format-tournoi .card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--blue-elite)
}

/* Hover élégant */
#format-tournoi .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 43, 82, 0.12);
}

/* Icônes */
#format-tournoi .text-warning {
    color: var(--blue-elite) !important;
}

/* Listes */
#format-tournoi ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #333;
}

/* Petit badge date / lieu */
.elite-badge {
    display: inline-block;
    background: rgba(13, 43, 82, 0.08);
    color: var(--blue-elite);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}.why-hero {
    min-height: 45vh;
    background: linear-gradient(
        rgba(13, 28, 113, 0.85),
        rgba(13, 28, 113, 0.95)
    ), url('../images/stadium.jpg') center/cover no-repeat;
}

.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card i {
    font-size: 2.4rem;
    color: #f2c94c; /* jaune Elite Cup */
    margin-bottom: 15px;
}

.why-card h5 {
    font-weight: 700;
    color: #0d1c71;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: #555;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-experience {
    background: linear-gradient(135deg, #0d1c71, #162d9c);
    padding: 90px 0;
}

.experience-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card i {
    font-size: 2.6rem;
    color: #f2c94c;
    margin-bottom: 18px;
}

.experience-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.experience-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}



/* RESPONSIVE */



.how-participate {
    padding: 90px 0;
    background-color: #f8f9ff;
}

.how-participate h2 {
    color: #0d1c71;
}

/* Wrapper horizontal */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Étape */
.step-arrow {
    background: #fff;
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    width: 240px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-arrow:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Cercle numéro */
.step-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #162d9c, #0d1c71);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.step-arrow h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0d1c71;
}

.step-arrow p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Flèche */
.arrow-line {
    font-size: 2rem;
    color: #162d9c;
    margin: 0 5px;
}

/* =========================
   POURQUOI NOUS SOUTENIR
========================= */

.support-elite {
    padding: 100px 0;
    background: #ffffff;
}

.section-header h2 {
    font-weight: 800;
    color: #0d1c71;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Bloc principal */
.support-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 70px;
}

.support-block.reverse {
    flex-direction: row-reverse;
}

/* Icône */
.support-icon {
    min-width: 90px;
    height: 90px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
}

.support-icon.sponsor {
    background: linear-gradient(135deg, #162d9c, #0d1c71);
}

.support-icon.partner {
    background: linear-gradient(135deg, #f2c200, #d9a800);
}

.support-icon.patron {
    background: linear-gradient(135deg, #0d1c71, #1f3ed3);
}

/* Contenu */
.support-content h3 {
    font-weight: 700;
    color: #0d1c71;
    margin-bottom: 15px;
}

.support-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Responsive */

/* =========================
   SOIRÉE DE GALA ELITE CUP
========================= */

.gala-elite {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff, #f7f9ff);
}

.gala-header {
    margin-bottom: 60px;
}

.gala-subtitle {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(242, 194, 0, 0.15);
    color: #b38b00;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gala-header h2 {
    font-weight: 800;
    color: #0d1c71;
    margin-bottom: 10px;
}

.gala-tagline {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

/* Texte principal */
.gala-content {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.gala-content p {
    color: #444;
    line-height: 1.9;
    font-size: 1.02rem;
    margin-bottom: 18px;
}

/* Distinctions */
.gala-awards {
    margin: 70px 0;
    text-align: center;
}

.gala-awards h3 {
    font-weight: 700;
    color: #0d1c71;
    margin-bottom: 40px;
}

.award-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.award-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-6px);
}

.award-item i {
    font-size: 2.2rem;
    color: #f2c200;
    margin-bottom: 15px;
}

.award-item span {
    display: block;
    font-weight: 600;
    color: #0d1c71;
}

.award-item small {
    font-weight: 400;
    color: #555;
}
/* =========================
   FORMULAIRE SPONSORING
========================= */

.sponsoring-form {
    padding: 120px 0;
    background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

.form-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.form-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(13, 28, 113, 0.1);
    color: #0d1c71;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.form-header h2 {
    font-weight: 800;
    color: #0d1c71;
    margin-bottom: 15px;
}

.form-header p {
    color: #555;
    line-height: 1.8;
}

/* Form */
.elite-form {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.elite-form label {
    font-weight: 600;
    color: #0d1c71;
    margin-bottom: 6px;
}

.elite-form .form-control,
.elite-form .form-select {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #ddd;
}

.elite-form .form-control:focus,
.elite-form .form-select:focus {
    border-color: #0d1c71;
    box-shadow: 0 0 0 0.15rem rgba(13, 28, 113, 0.15);
}

/* Bouton */
.btn-sponsor {
    background: linear-gradient(135deg, #0d1c71, #1230c7);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-sponsor:hover {
    background: linear-gradient(135deg, #f2c200, #e0b000);
    color: #0d1c71;
}
.elite-inscription-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.elite-container {
  max-width: 900px;
  margin: 0 auto;
}

.elite-section-header {
  text-align: center;
  margin-bottom: 40px;
  color: #0b3c68; /* bleu ELITE */
}

.elite-section-header i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #f2c300; /* jaune ELITE */
}

.elite-form-card {
  background: #fff;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.elite-form-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #0b3c68;
}

.elite-form-group {
  margin-bottom: 18px;
}

.elite-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #0b3c68;
}

.elite-form-group input,
.elite-form-group select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 0.95rem;
}

.elite-color-picker {
  display: flex;
  gap: 20px;
}

.elite-color-picker div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.elite-color-picker input[type="color"] {
  width: 30px;
  height: 25px;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 6px;
}

.elite-form-action {
  text-align: center;
  margin-top: 30px;
}

.elite-form-action button {
  background: #0b3c68;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.elite-form-action button:hover {
  background: #f2c300;
  color: #0b3c68;
}

.elite-login-link {
  margin-top: 12px;
  font-size: 0.9rem;
}
.elite-login-link a {
  color: #0b3c68;
  font-weight: 500;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Quand l’élément est visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes optionnelles */
.reveal-left {
  transform: translateX(-40px);
}
.why-title1 {
    color: var(--blue-elite);
}

.reveal-right {
  transform: translateX(40px);
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ffc107; /* jaune Bootstrap */
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  background: #ffca2c;
}
.elite-login-section {
    padding: 90px 0;
    background: linear-gradient(
        rgba(20, 40, 120, 0.05),
        rgba(20, 40, 120, 0.08)
    );
}

.elite-login-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.elite-login-header i {
    font-size: 3rem;
    color: #f4b400; /* jaune Elite */
    margin-bottom: 10px;
}

.elite-login-header h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.elite-login-header p {
    color: #555;
    font-size: 0.95rem;
}

.elite-login-card {
    max-width: 420px;
    margin: auto;
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.elite-login-form .elite-form-group {
    margin-bottom: 18px;
}

.elite-login-form label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
}

.elite-login-form label i {
    color: #1d2b7a; /* bleu Elite */
    margin-right: 6px;
}

.elite-login-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.elite-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot-password {
    color: #1d2b7a;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.elite-login-btn {
    width: 100%;
    padding: 14px;
    background: #1d2b7a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
}

.elite-login-btn i {
    margin-right: 6px;
}

.elite-login-btn:hover {
    background: #16205c;
}

.elite-login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.elite-login-footer a {
    color: #f4b400;
    font-weight: 600;
    text-decoration: none;
}
.elite-annonce {
  background: linear-gradient(135deg, #0d1c71 0%, #111f8f 100%);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 1030;
}

/* Marquee */
.elite-marquee {
  display: inline-flex;
  white-space: nowrap;
  animation: eliteScroll 35s linear infinite;
}

.elite-marquee span {
  flex-shrink: 0;           /* empêche la compression */
  padding-right: 3rem;       /* espace entre répétitions */
  display: inline-flex;
  align-items: center;
}

.elite-marquee:hover {
  animation-play-state: paused; /* pause au survol */
}


@keyframes eliteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* défilement complet du texte dupliqué */
  }
}

/* Icône pulse */
.elite-icon {
  color: var(--yellow-elite);
  animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.conditions-hero {
    background: linear-gradient(rgba(13, 28, 113, 0.85), rgba(13, 28, 113, 0.95)), url(../images/stadium.jpg) center / cover no-repeat;
}

.section-title {
    font-weight: 700;
    color: #0d1c71;
}

.participation-table thead {
    background-color: #f7f9fc;
}

.included-list {
    list-style: none;
    padding-left: 0;
}

.included-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.timeline {
    border-left: 3px solid #0d1c71;
    padding-left: 20px;
}

.timeline-item {
    margin-bottom: 25px;
}

.timeline-item h6 {
    font-weight: 700;
    color: #0d1c71;
}

.assurance-box {
    background: #f8f9fa;
    border-left: 5px solid #f7c843;
    border-radius: 8px;
}
.elite-btn {
    background: linear-gradient(135deg, #0d1c71, #111f8f);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(13,28,113,0.2);
}

.elite-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13,28,113,0.3);
    color:white;
    background: linear-gradient(135deg, #111f8f, #0d1c71);
}
.countdown-box {

    padding: 25px;

}

.time-box {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.time-box span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d1c71;
}

.time-box small {
    font-size: 0.8rem;
    color: #6c757d;
}

/* ===== Bloc principal ===== */
/* ===== TITRE ===== */
.news-title {
    color: #0d1c71;
}

.news-highlight {
    background: linear-gradient(135deg, #0d1c71, #111f8f);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(13, 28, 113, 0.25);
    position: relative;
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #f7c843; /* ðÂÂÂ texte doré */
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Icône document */
.news-icon {
    opacity: 0.08;
    transform: scale(1.2);
}

/* Bouton téléchargement premium */
.news-highlight .btn-light {
    background: #f7c843;
    border: none;
    color: #000;
    transition: all 0.3s ease;
}

.news-highlight .btn-light:hover {
    background: #ffd95e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
button.sending::after {
  content: "…";
  display: inline-block;
  width: 1.2em;
  text-align: left;
  animation: dots 1s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ""; }
  40% { content: "."; }
  60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* =========================================
   RESPONSIVE GLOBAL
========================================= */
@media screen and (min-width: 993px) {

    .hero-section {
    min-height: 90vh;

}
   
}
@media screen and (max-width: 992px) {
    .navbar-brand img {
  height: 80px;   /* nouvelle hauteur souhaitée */
  width: auto;
   .flex-column-md {
    flex-direction: column !important;
  }   /* pour garder les proportions */
}
    

    h1, h2 {
     
        font-size: 3.2rem;
    }
    p {
        font-size: 1.6rem;
    }

    .row-to-column {
        flex-direction: column !important;
        align-items: center; /* Pour centrer les cartes si elles ne prennent pas toute la largeur */
    }

    .row-to-column .col-md-4 {
        width: 100%; /* Force les colonnes à prendre toute la largeur de la ligne */
        max-width: 800px; /* Optionnel : évite que les cartes soient trop larges sur PC */
    }
    .row-to-column .col-md-3 {
        width: 100%; /* Force les colonnes à prendre toute la largeur de la ligne */
        max-width: 92%; /* Optionnel : évite que les cartes soient trop larges sur PC */
    }
    .card {
        padding: 1.6rem !important;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .icon-box i {
        font-size: 2rem;
    }

    .card h5 {
        font-size: 1rem;
    }

    .card p {
        font-size: 1rem;
        line-height: 1.45;
    }
    #scrollTopBtn {
    
    width: 50px;
    height: 50px;
   
}
}

/* =====================================================
   RESPONSIVE STRUCTURE PRO – ELITE CUP
===================================================== */

/* ================================
   TABLETTE (≤ 992px)
================================ */

@media (max-width: 992px) {

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    p  { font-size: 0.95rem; }

    /* Navbar */
    .navbar-brand img {
        height: 60px;
        width: auto;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
    }

    .navbar .nav-link {
        font-size: 1rem !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
        font-size: 1rem;
    }

    /* Layout adjustments */
    .steps-wrapper,
    .support-block,
    .support-block.reverse,
    .match-card {
        flex-direction: column;
        text-align: center;
    }

    .arrow-line i {
        transform: rotate(90deg);
    }

    .row-to-column {
        flex-direction: column !important;
        align-items: center;
    }

    .card {
        padding: 1.5rem !important;
    }

    .icon-box {
        width: 55px;
        height: 55px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    #scrollTopBtn {
        width: 45px;
        height: 45px;
    }
}


/* ================================
   MOBILE (≤ 768px)
================================ */

@media (max-width: 768px) {

    /* Typography */
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    p  { font-size: 0.95rem; line-height: 1.6; }

    .btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        margin-top :5px ;
        margin-bottom: 5px;
    }

    /* Sections spacing */
    .why-section,
    .why-experience,
    .cta-section {
        padding: 50px 20px;
    }

    .why-hero {
        min-height: 40vh;
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 0.95rem;
        max-width: 95%;
    }

    .hero-logo {
        max-width: 160px;
        margin-top: 15px;
    }

    .elite-form-card {
        padding: 20px;
    }

    .experience-card,
    .why-card {
        padding: 20px;
    }

    .classement-title {
        font-size: 1.2rem;
    }

    .classement-table-wrapper {
        padding: 15px;
    }

    .carousel-item {
        padding: 10px 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}


/* ================================
   PETIT MOBILE (≤ 576px)
================================ */

@media (max-width: 576px) {

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    p  { font-size: 0.9rem; }

    .partenaires-title {
        font-size: 1.3rem;
    }

    .partenaires-type {
        font-size: 1rem;
    }

    .how-card h6 {
        font-size: 1rem;
    }

    .how-card p {
        font-size: 0.9rem;
    }

    section {
        padding-top: 50px;
    }
}



@media (max-width: 768px) {

    /* Badge revient dans le flux normal */
    .news-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
        font-size: 0.7rem;
        padding: 5px 12px;
        letter-spacing: 0.5px;
    }

    /* Titre principal section */
    .news-title {
        font-size: 1.5rem;
    }

    /* Sous-titre description */
    .news-section .text-muted {
        font-size: 0.9rem;
    }

    /* Titre document */
    .news-highlight h3 {
        font-size: 1.2rem;
    }

    /* Paragraphes */
    .news-highlight p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Bouton téléchargement */
    .news-highlight .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    /* Icône watermark */
    .news-icon {
        font-size: 4rem !important;
        opacity: 0.05;
        margin-top: 20px;
    }


    .news-highlight {
        padding: 25px !important;
    }
}
