:root {
  --gold: #fed75d;
  --gold-dark: #e6c14f;
  --black: #000000;
  --white: #ffffff;
}

button,
a,
[role="button"],
input[type="button"],
input[type="submit"],
label,
.cursor-pointer {
  cursor: url('../img/cursor2.svg') 8 8, pointer !important;
}
.grenze-regular {
  font-family: "Grenze", serif;
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Arial", sans-serif;
  color: #333;
}

/* Utility Classes */
.text-gold {
  color: var(--gold) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  background-color: var(--gold-dark);
  color: var(--black);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background-color: var(--gold);
  color: var(--black);
}

/* Header */
header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
}

.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.nav-link {
  color: var(--white) !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold) !important;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 85vh;
  position: relative;
}

.hero-carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease-in-out;
}

.hero-carousel .carousel-item.active img {
  transform: scale(1);
}

.hero-carousel .carousel-caption {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  /* background: rgba(0, 0, 0, 0.7); */
  border-radius: 20px;
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 1s ease-out 0.3s forwards;
}

.hero-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--black);
  box-shadow: 0 10px 30px rgba(254, 215, 93, 0.3);
  transform: scale(0);
  animation: badgePop 0.8s ease-out 0.6s forwards;
}

.hero-title {
  font-family: "Grenze", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.9s;
}

.title-line:nth-child(2) {
  animation-delay: 1.1s;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.7s forwards;
}

.hero-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 200px;
}

.hero-btn span {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover span {
  transform: translateX(5px);
}

.hero-btn:hover i {
  transform: translateX(5px);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 3;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 2rem;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  background-size: 60%;
}

.hero-carousel .carousel-indicators {
  z-index: 3;
  bottom: 2rem;
}

.hero-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
  background-color: var(--gold);
  border-color: var(--white);
  transform: scale(1.2);
}

/* Animations */
@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes badgePop {
  to {
    transform: scale(1);
  }
}

/* Schedule Cards */
.schedule-card {
  border: 1px solid rgba(254, 215, 93, 1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}



.day-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--black);
  box-shadow: 0 8px 20px rgba(254, 215, 93, 0.3);
}

.day-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-times {
  margin-top: 2rem;
}

.time-slot {
  display: flex;
  align-items: center;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.time-slot:last-child {
  margin-bottom: 0;
}

.time-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1rem;
  color: var(--black);
}

.time-info {
  flex: 1;
  text-align: left;
}

.time-label {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.time-hours {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.schedule-footer {
  border-top: 1px solid rgba(254, 215, 93, 0.3);
  padding-top: 1rem;
}
.footer-cet-icon {
  height: 100px;
}

.availability-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(254, 215, 93, 0.3);
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.info-item i {
  font-size: 1.2rem;
}

/* CET Icon */
.cet-icon {
  max-height: 175px;
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-carousel .carousel-item {
    height: 70vh;
  }
  
  .hero-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-btn {
    min-width: 180px;
    padding: 0.6rem 1.5rem;
  }
  
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    margin: 0 1rem;
  }
  
  .schedule-card {
    padding: 1.5rem;
  }
  
  .day-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .day-title {
    font-size: 1.3rem;
  }
  
  .time-slot {
    padding: 0.75rem;
  }
  
  .time-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .time-hours {
    font-size: 1rem;
  }
  
  .schedule-info {
    gap: 0.75rem;
  }
  
  .info-item {
    font-size: 0.9rem;
  }
}

/* Cards */
.card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Number Circle */
.number-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Liga Section */
.liga-logo-container {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
}

.border-gold {
  border-color: var(--gold) !important;
}

/* Modal Styles */
.modal-content {
  border-radius: 0.5rem;
  overflow: hidden;
}

.modal-header {
  padding: 1rem 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
}

.table-dark {
  background-color: var(--black);
}

.table-dark th {
  border-color: #333;
}

.table tbody tr:hover {
  background-color: rgba(254, 215, 93, 0.1);
}

/* Footer */
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-carousel .carousel-caption {
    padding: 0 15px;
  }

  .hero-carousel .carousel-caption h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {

  .hero-carousel .carousel-caption h1 {
    font-size: 1.75rem;
  }

  .liga-logo-container {
    width: 150px;
    height: 150px;
  }
}
/* Ranking Specific Styles */
.ranking.nav {
  gap: 20px;
}
.ranking .ranking-tab {
  color: var(--black) !important;
  background-color: transparent;
  border: 2px solid var(--gold);
  margin: 0 0.25rem;
  transition: all 0.3s;
}

.nav-pills .ranking-tab:hover {
  background-color: var(--gold);
  color: var(--black);
}

.nav-pills .ranking-tab.active {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.table-warning {
  background-color: rgba(254, 215, 93, 0.2) !important;
}

.table-warning:hover {
  background-color: rgba(254, 215, 93, 0.3) !important;
}

.badge.bg-gold {
  background-color: var(--gold) !important;
  color: var(--black) !important;
}

.ranking-table img {
  border: 2px solid var(--gold);
}

.ranking-container .ranking-table td {
  align-content: center;
}
