/* style/event-center-leagues-cups.css */
.page-event-center-leagues-cups {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-event-center-leagues-cups .highlight {
  color: #FFD700; /* Gold accent color for highlights */
}

.page-event-center-leagues-cups .highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-event-center-leagues-cups__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-event-center-leagues-cups__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-event-center-leagues-cups__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-event-center-leagues-cups__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-event-center-leagues-cups__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.page-event-center-leagues-cups__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-event-center-leagues-cups__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-event-center-leagues-cups__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-event-center-leagues-cups__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-event-center-leagues-cups__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-event-center-leagues-cups__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-event-center-leagues-cups__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-event-center-leagues-cups__button--tertiary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-event-center-leagues-cups__button--tertiary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-event-center-leagues-cups__button span.icon-arrow-right::before,
.page-event-center-leagues-cups__button span.icon-download::before,
.page-event-center-leagues-cups__button span.icon-user-plus::before,
.page-event-center-leagues-cups__button span.icon-log-in::before {
  content: ''; /* Placeholder for actual icon, use font icons or SVG */
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 8px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Example icon styles (replace with actual font icons or SVG backgrounds) */
.page-event-center-leagues-cups__button span.icon-arrow-right::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%230A192F" viewBox="0 0 24 24"><path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"/></svg>'); }
.page-event-center-leagues-cups__button--secondary span.icon-arrow-right::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFD700" viewBox="0 0 24 24"><path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"/></svg>'); }
.page-event-center-leagues-cups__button span.icon-download::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%230A192F" viewBox="0 0 24 24"><path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"/></svg>'); }
.page-event-center-leagues-cups__button--secondary span.icon-download::before, .page-event-center-leagues-cups__button--tertiary span.icon-download::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFD700" viewBox="0 0 24 24"><path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"/></svg>'); }
.page-event-center-leagues-cups__button span.icon-user-plus::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%230A192F" viewBox="0 0 24 24"><path d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>'); }
.page-event-center-leagues-cups__button--secondary span.icon-user-plus::before, .page-event-center-leagues-cups__button--tertiary span.icon-user-plus::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFD700" viewBox="0 0 24 24"><path d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>'); }
.page-event-center-leagues-cups__button span.icon-log-in::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%230A192F" viewBox="0 0 24 24"><path d="M11 7L9.6 8.4l2.6 2.6H4v2h8.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z"/></svg>'); }
.page-event-center-leagues-cups__button--secondary span.icon-log-in::before, .page-event-center-leagues-cups__button--tertiary span.icon-log-in::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFD700" viewBox="0 0 24 24"><path d="M11 7L9.6 8.4l2.6 2.6H4v2h8.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z"/></svg>'); }

.page-event-center-leagues-cups__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-event-center-leagues-cups__section:nth-of-type(even) {
  background-color: #1a2f4a; /* Slightly lighter dark blue for alternating sections */
}

.page-event-center-leagues-cups__section-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-event-center-leagues-cups__subsection-title {
  font-size: 2em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-event-center-leagues-cups p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-event-center-leagues-cups ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-event-center-leagues-cups ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-event-center-leagues-cups__image--full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-event-center-leagues-cups__image--inline {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-event-center-leagues-cups__link--text {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-event-center-leagues-cups__link--text:hover {
  color: #e6c200;
}

.page-event-center-leagues-cups__cta-final {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #0A192F, #304e70);
  border-top: 5px solid #FFD700;
}

.page-event-center-leagues-cups__cta-final .page-event-center-leagues-cups__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-event-center-leagues-cups__cta-final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-event-center-leagues-cups__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-event-center-leagues-cups__hero {
    padding: 60px 20px;
  }
  .page-event-center-leagues-cups__hero-title {
    font-size: 2.8em;
  }
  .page-event-center-leagues-cups__hero-description {
    font-size: 1.1em;
  }
  .page-event-center-leagues-cups__section-title {
    font-size: 2.2em;
  }
  .page-event-center-leagues-cups__subsection-title {
    font-size: 1.7em;
  }
  .page-event-center-leagues-cups p, .page-event-center-leagues-cups ul li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-event-center-leagues-cups__hero {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-event-center-leagues-cups__hero-title {
    font-size: 2.2em;
  }
  .page-event-center-leagues-cups__hero-description {
    font-size: 1em;
  }
  .page-event-center-leagues-cups__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-event-center-leagues-cups__button {
    width: 100%;
    max-width: 300px;
  }
  .page-event-center-leagues-cups__section {
    padding: 40px 15px;
  }
  .page-event-center-leagues-cups__section-title {
    font-size: 1.8em;
  }
  .page-event-center-leagues-cups__subsection-title {
    font-size: 1.5em;
  }
  .page-event-center-leagues-cups__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-event-center-leagues-cups__hero-title {
    font-size: 1.8em;
  }
  .page-event-center-leagues-cups__section-title {
    font-size: 1.5em;
  }
  .page-event-center-leagues-cups__subsection-title {
    font-size: 1.3em;
  }
  .page-event-center-leagues-cups__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}