/*
Theme Name: Crocos Theme
Author: Crocos du Léman
Version: 2.0
*/

body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: white;
  margin: 0;
  color: #333;
  line-height: 1.6;
}


.banner {
  background-color: #62BBF5;
  text-align: center;
  padding: 40px 20px;
}



.logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 10px;
}


.banner h1, .banner h2 {
  
  margin: 5px 0;
  
}

.banner h1 {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  color: white;
  -webkit-text-stroke: 0.5px #70A94B;
  text-align: center;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.banner h2 {
color: #FFD700; /* couleur du texte */
-webkit-text-stroke: 0.5px #12A24A; /* contour noir autour des lettres */
font-family: 'anton', sans-serif; 
font-size: 3em;
font-weight: bold;
font-style: italic;
}




nav {
  background-color: #FFD700;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

nav ul {
  display: flex;
  justify-content: center;      /* ✅ CENTRAGE horizontal */
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  padding: 10px 20px;
  margin: 0 auto;
  gap: 30px;
  white-space: nowrap;
}

nav li {
  list-style: none;
  flex-shrink: 0;
}

nav a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
  white-space: nowrap;
  display: inline-block;
}

nav a:hover {
  color: #62BBF5;
}





main {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

/* Pour SWISS WATERPOLO MASTER TEAM */
.intro h1 {
  font-size: 1.8em; /* ajuste la taille ici */
  color: #62BBF5;   /* ou #999 si tu veux gris */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
}
/* Pour PLAY. FUN. TOGETHER. */
.offres h2 {
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 600;
  color: #999; /* gris clair au lieu de noir ou bleu */
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  text-align: center;
}

.subtitle {
  color: #888;
  text-align: center;
  font-size: 1.1em;
  margin-top: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: 240px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
}

.card h3 {
  text-transform: uppercase;
  font-size: 1.1em;
  margin: 0 0 12px 0;
  color: #62BBF5;
  letter-spacing: 0.5px;
  font-weight: bold;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.card h3 small {
  font-size: 0.8em;
  color: #666;
}


/* CA CEST POUR DANS LA BOX */
.card p {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.3em;
}

.card p::before {
  content: none;
  color: #666;
  margin-right: 8px;
  font-size: 0.6em;
  position: relative;
  top: 0.15em;
}

.card p a {
  color: #62BBF5; /* Bleu Crocos uniquement pour les liens */
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #fafafa;
  color: #666;
}

.page-title-play {
  text-align: center;
  margin-bottom: 60px;
}
.page-title-play h1 {
  font-size: 48px;
  font-weight: bold;
  color: white;
}
.page-title-play sup {
  font-size: 24px;
  vertical-align: super;
  color: red;
  margin-left: 2px;
}

.play-card-wrapper {
  display: flex;
  justify-content: center;
}

.play-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.play-card h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}
.play-card p {
  font-size: 18px;
  color: #555;
}


