@charset "UTF-8";
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1rem 3rem;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  opacity: 0.7;
}
.header__logo-image {
  width: 100px;
}
.header__container-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header__nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__nav-item:hover {
  color: #ff6b35;
}
.header__cta {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header__cta:hover {
  background: rgb(255, 69.6336633663, 2);
}
.header__cta-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.header__hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.header__hamburger:hover .header__hamburger-line {
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ff6b35;
}

@media (max-width: 768px) {
  .header__container-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  .header__nav.active {
    right: 0;
  }
  .header__nav-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .header__nav-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
  }
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }
  .header.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.footer {
  background: linear-gradient(135deg, #1f2937 0%, rgb(21.8081395349, 28.8430232558, 38.6918604651) 50%, rgb(36.5151162791, 48.2941860465, 64.7848837209) 100%);
  color: #ffffff;
  padding: 5rem 0 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(220, 38, 38, 0.4) 100%);
}
.footer__container {
  margin: 0 auto;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 3rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .footer__logo {
  margin-bottom: 2rem;
}
.footer__brand .footer__logo-image {
  width: 120px;
  height: auto;
}
.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer__social-link:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
.footer__section-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer__link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer__contact-icon {
  color: #ff6b35;
  flex-shrink: 0;
}
.footer__bottom {
  padding: 3rem 3rem;
  background: rgba(0, 0, 0, 0.3);
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.footer__legal {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #ff6b35;
}
.footer__developer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}
.footer__developer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer__developer-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 0 0;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer__legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer__container {
    padding: 0 2rem;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero--calendar {
  background: linear-gradient(135deg, rgba(247, 215, 0, 0.9) 0%, rgba(30, 58, 138, 0.8) 50%, rgba(255, 0, 0, 0.7) 100%);
}
.hero--calendar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero/1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero--calendar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero--calendar .hero__content {
  position: relative;
  z-index: 2;
}

.calendar {
  padding: 5rem 0;
  background: #ffffff;
  color: #1f2937;
}
.calendar__container {
  width: 80%;
  max-width: none;
  margin: 0 auto;
  padding: 0 3rem;
}
.calendar__header {
  text-align: center;
  margin-bottom: 5rem;
}
.calendar__title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calendar__description {
  font-size: 1.25rem;
  color: rgba(31, 41, 55, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.calendar__download {
  margin-top: 3rem;
  text-align: center;
}
.calendar__filters {
  margin: 3rem auto 0 auto;
  width: 100%;
}
.calendar__filters-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: end;
  justify-content: center;
}
.calendar__filter-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(31, 41, 55, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.calendar__filter-control {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(31, 41, 55, 0.15);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.calendar__filter-control:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}
.calendar__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #22c55e;
  color: #ffffff;
  padding: 1rem 3rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}
.calendar__download-btn:hover {
  background: rgb(26.4935064935, 153.5064935065, 73.2467532468);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}
.calendar__download-btn svg {
  width: 16px;
  height: 16px;
}
.calendar__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 5rem;
}
.calendar__event-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.calendar__event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(31, 41, 55, 0.15);
}
.calendar__event-card-price {
  display: none;
}
.calendar__event-card-header {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #F0A741 0%, #1e3a8a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  color: #ffffff;
  overflow: hidden;
}
.calendar__event-card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 167, 65, 0.8) 0%, rgba(30, 58, 138, 0.6) 100%);
  z-index: 1;
}
.calendar__event-card-header--competition {
  background-image: url("../images/gallery/_DSC1521.jpg");
  background-size: cover;
  background-position: center;
}
.calendar__event-card-header--training {
  background-image: url("../images/gallery/_DSC1593.jpg");
  background-size: cover;
  background-position: center;
}
.calendar__event-card-header--workshop {
  background-image: url("../images/gallery/_DSC1641 copia.jpg");
  background-size: cover;
  background-position: center;
}
.calendar__event-card-header--meeting {
  background-image: url("../images/gallery/_DSC3183 copia.jpg");
  background-size: cover;
  background-position: center;
}
.calendar__event-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}
.calendar__event-card-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.calendar__event-card-date {
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.calendar__event-card-price {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: #22c55e;
  color: #ffffff;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}
.calendar__event-card-body {
  padding: 3rem;
  background: #ffffff;
}
.calendar__event-card-club {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.calendar__event-card-club-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F0A741;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
}
.calendar__event-card-club-name {
  font-size: 0.875rem;
  color: rgba(31, 41, 55, 0.7);
  font-weight: 500;
}
.calendar__event-card-info {
  margin-bottom: 2rem;
}
.calendar__event-card-datetime {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.calendar__event-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.calendar__event-card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(31, 41, 55, 0.6);
  margin-bottom: 1rem;
}
.calendar__event-card-location::before {
  content: "📍";
  font-size: 0.75rem;
}
.calendar__event-card-distance {
  font-size: 0.875rem;
  color: rgba(31, 41, 55, 0.5);
}
.calendar__event-card-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.calendar__event-card-badge {
  background: rgba(31, 41, 55, 0.1);
  color: rgba(31, 41, 55, 0.7);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.calendar__event-card-favorite {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.calendar__event-card-favorite:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.calendar__event-card-favorite::before {
  content: "★";
  color: #ffffff;
  font-size: 1rem;
}
.calendar__empty {
  text-align: center;
  padding: 5rem;
  color: rgba(31, 41, 55, 0.5);
}
.calendar__empty-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 0.3;
}
.calendar__empty-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.calendar__empty-description {
  font-size: 0.9rem;
  line-height: 1.6;
}
.calendar__event-card--past {
  opacity: 0.8;
  filter: grayscale(0.25) saturate(0.8);
}
.calendar__event-card--next {
  box-shadow: 0 0 0 3px rgba(240, 167, 65, 0.85) inset, 0 16px 48px rgba(31, 41, 55, 0.2);
  transform: translateY(-4px);
}
.calendar__event-card-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #F0A741;
  color: #1f2937;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 12px;
  border-bottom-left-radius: 8px;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calendar__event-card-badge--past {
  background: rgba(255, 0, 0, 0.15);
  color: red;
}
.calendar__event-card-badge--next {
  background: rgba(240, 167, 65, 0.2);
  color: #1f2937;
}

@media (max-width: 1024px) {
  .calendar__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .calendar__filters-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .calendar {
    padding: 4rem 0;
  }
  .calendar__title {
    font-size: 2.5rem;
  }
  .calendar__description {
    font-size: 1.125rem;
  }
  .calendar__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .calendar__event-card-header {
    height: 180px;
    padding: 2rem;
  }
  .calendar__event-card-title {
    font-size: 1.25rem;
  }
  .calendar__event-card-body {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .calendar__title {
    font-size: 2rem;
  }
  .calendar__event-card-header {
    height: 160px;
    padding: 1rem;
  }
  .calendar__event-card-title {
    font-size: 1.125rem;
  }
  .calendar__event-card-price {
    padding: 4px 12px;
    font-size: 0.75rem;
  }
}
.calendar__event-card--skeleton {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
.calendar__event-card--skeleton .skeleton-header-bg,
.calendar__event-card--skeleton .skeleton-title,
.calendar__event-card--skeleton .skeleton-subtitle,
.calendar__event-card--skeleton .skeleton-date,
.calendar__event-card--skeleton .skeleton-club-logo,
.calendar__event-card--skeleton .skeleton-club-name,
.calendar__event-card--skeleton .skeleton-location,
.calendar__event-card--skeleton .skeleton-time {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
.calendar__event-card--skeleton .calendar__event-card-header {
  position: relative;
  overflow: hidden;
}
.calendar__event-card--skeleton .calendar__event-card-header .skeleton-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.3;
}
.calendar__event-card--skeleton .calendar__event-card-header .skeleton-title {
  width: 70%;
  height: 20px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.calendar__event-card--skeleton .calendar__event-card-header .skeleton-subtitle {
  width: 50%;
  height: 16px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.calendar__event-card--skeleton .calendar__event-card-header .skeleton-date {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
}
.calendar__event-card--skeleton .calendar__event-card-body {
  padding: 3rem;
}
.calendar__event-card--skeleton .calendar__event-card-body .calendar__event-card-club {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.calendar__event-card--skeleton .calendar__event-card-body .calendar__event-card-club .skeleton-club-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.calendar__event-card--skeleton .calendar__event-card-body .calendar__event-card-club .skeleton-club-name {
  width: 80px;
  height: 16px;
}
.calendar__event-card--skeleton .calendar__event-card-body .calendar__event-card-info .skeleton-location {
  width: 100%;
  height: 16px;
  margin-bottom: 1rem;
}
.calendar__event-card--skeleton .calendar__event-card-body .calendar__event-card-info .skeleton-time {
  width: 60%;
  height: 16px;
}

.calendar__loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  color: #1f2937;
}
.calendar__loading-indicator .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(240, 167, 65, 0.2);
  border-left: 4px solid #F0A741;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}
.calendar__loading-indicator span {
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.7);
}

.calendar__error-state,
.calendar__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  text-align: center;
  color: #1f2937;
  min-height: 400px;
}

.calendar__error-icon,
.calendar__empty-icon {
  font-size: 4rem;
  margin-bottom: 3rem;
  opacity: 0.5;
}

.calendar__error-title,
.calendar__empty-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2rem;
}

.calendar__error-description,
.calendar__empty-description {
  font-size: 1rem;
  color: rgba(31, 41, 55, 0.7);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 3rem;
}

.calendar__retry-btn {
  background: #F0A741;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calendar__retry-btn:hover {
  background: rgb(235.4146341463, 144.9658536585, 18.5853658537);
  transform: translateY(-2px);
}

.calendar__event-card-download {
  margin-top: 2rem;
}

.calendar__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e3a8a;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.calendar__download-btn:hover {
  background: rgb(20.8928571429, 40.3928571429, 96.1071428571);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}
.calendar__download-btn i {
  font-size: 1rem;
}

/*# sourceMappingURL=calendar.css.map */
