/* ============================================
   CURRENT YEAR SHOW TICKETS SECTION
   Add to sdvp.css
   ============================================ */

.current-year-section {
  margin-top: 0;
  margin-bottom: 40px;
}

.current-year-container {
  background: linear-gradient(135deg, #1f6473 0%, #103740 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.current-year-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 181, 19, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.current-year-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Calendar Icon */
.current-year-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-icon {
  width: 80px;
  height: 80px;
  color: #ffb513;
  filter: drop-shadow(0 4px 15px rgba(255, 181, 19, 0.4));
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Info Section */
.current-year-info {
  text-align: left;
}

.current-year-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.current-year-text {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.6;
}

/* Action Button */
.current-year-action {
  display: flex;
  align-items: center;
}

.find-show-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(255, 181, 19, 0.15);
  border: 2px solid rgba(255, 181, 19, 0.4);
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffb513;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.find-show-btn:hover {
  background: rgba(255, 181, 19, 0.25);
  border-color: #ffb513;
  color: #ffc93d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 181, 19, 0.4);
}

.find-show-btn:active {
  transform: translateY(-1px);
}

.find-show-btn .btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.find-show-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Responsive - Tablet */
@media (max-width: 968px) {
  .current-year-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  
  .current-year-icon {
    justify-content: center;
  }
  
  .current-year-info {
    text-align: center;
  }
  
  .current-year-action {
    justify-content: center;
  }
  
  .calendar-icon {
    width: 70px;
    height: 70px;
  }
  
  .current-year-title {
    font-size: 1.6rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .current-year-container {
    padding: 30px 20px;
  }
  
  .calendar-icon {
    width: 60px;
    height: 60px;
  }
  
  .current-year-title {
    font-size: 1.4rem;
  }
  
  .current-year-text {
    font-size: 0.95rem;
  }
  
  .find-show-btn {
    font-size: 1rem;
    padding: 14px 25px;
    width: 100%;
  }
  
  .find-show-btn .btn-icon {
    width: 20px;
    height: 20px;
  }
}

/* Accessibility */
.find-show-btn:focus-visible {
  outline: 3px solid #ffc93d;
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .calendar-icon {
    animation: none;
  }
  
  .find-show-btn::before {
    display: none;
  }
}
