:root {
    --rouge: #CD0000;
    --rouge-sombre: #970100;
    --bleu: #101F8D;
    --footer: #1C0D0D;
}

:root {
  --primary-color: #101F8D;
  --secondary-color: #CD0000;
  --primary-dark: #1d4ed8;
  --primary-hover: #1e40af;
  --primary-light: #dbeafe;
  --primary-ultra-light: #f5f9ff;
  --text-light: #ffffff;
  --text-dark: #212529;
  --bg-light: #ffffff;
  --bg-dark: #212529;
  --bg-gray: #f8f9fa;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --success: #16a34a;
  --success-dark: #15803d;
  --success-light: #dcfce7;
  --danger: #ef4444;
  --danger-dark: #dc2626;
  --danger-light: #fee2e2;
  
  /* Variables améliorées */
  --water-blue: #0099ff;
  --water-dark-blue: #0077cc;
  --water-light-blue: #e6f7ff;
  --gradient-blue: linear-gradient(135deg, var(--primary-color), var(--water-blue));
  --footer-bg: #000814;
  --card-hover-transform: translateY(-10px) scale(1.02);
  --card-hover-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.rouge {
    color: var(--rouge);
}

.rouge-sombre {
    color: var(--rouge-sombre);
}

.bleu {
    color: var(--bleu);
}

/* 1. RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'PT Sans', sans-serif;
}

main {
    text-align: center;
}

main ul {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Anton', serif;
    font-weight: normal;
}

.container {
    max-width: 1140px;
    margin: auto;
}

main.container {
    min-height: 55vh;
}

img.logo {
    max-width: 200px;
    max-height: 200px;
}

/*********************************
Tables
*/
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 768px;
    margin: auto;
    text-align: center;
}

table thead tr {
    background: var(--rouge);
    border: 1px solid var(--rouge);
    color: #fff;
}

table th,
table td {
    padding: 0.75rem 0;
}

table th.jour,
table td.jour {
    width: 40px;
}

table td.horaire,
table th.horaire {
    width: 50px;
}

table th.terrain,
table td.terrain {
    width: 50px;
}

table th.match,
table td.match {
    text-align: center;
}

table th.separateur,
table td.separateur {
    width: 10px;
}

table th.equipe,
table td.equipe {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

table th.score,
table td.score {
    width: 25px;
}


table tbody tr {
    border: 1px solid #000;
    border-top: 0;
}

table tbody tr:nth-child(even) {
    background: #eee;
}

/*********************************
Footer
*/
.logos-footer {
    position: relative;
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 15px;
    margin-inline: 15px;
    margin: 15px;
    padding: 15px;
}

@media (max-width: 1200px) {}


@media (max-width: 992px) {}


@media (max-width: 768px) {}


@media (max-width: 576px) {

    #navigation {
        display: block;
    }

    #hp-breadcrumbs {
        margin-bottom: 1rem;
    }

    #hp-breadcrumbs>span {
        display: none;
    }

}
.team-logo {
    width: 1em;
    height: auto;
}