/* ===== CONTINUE EXPLORING - Premium Widget Style ===== */

.continue-exploring {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(10, 10, 10, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.continue-exploring::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Widget container - glass morphism */
.explore-widget {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated border glow */
.explore-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(212, 175, 55, 0.2) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.explore-widget:hover::before {
  opacity: 1;
}

/* Header section */
.explore-widget__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

/* Decorative line under header */
.explore-widget__header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

.explore-widget__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.explore-widget__title i {
  font-size: 1.1em;
  color: #d4af37;
  animation: compass-pulse 3s ease-in-out infinite;
}

@keyframes compass-pulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: rotate(15deg) scale(1.1);
    opacity: 1;
  }
  75% {
    transform: rotate(-10deg) scale(1.05);
    opacity: 0.9;
  }
}

.explore-widget__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Cards grid - horizontal on desktop */
.explore-widget__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Individual card */
.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Card hover glow effect */
.explore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.explore-card:hover {
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.15);
}

.explore-card:hover::before {
  opacity: 1;
}

/* Icon container */
.explore-card__icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.explore-card__icon i {
  font-size: 1.8rem;
  color: #d4af37;
  transition: all 0.4s ease;
}

.explore-card:hover .explore-card__icon {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  border-color: #d4af37;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.explore-card:hover .explore-card__icon i {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Content */
.explore-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.explore-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.explore-card:hover .explore-card__title {
  color: #f0d478;
}

.explore-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
}

/* Arrow indicator */
.explore-card__arrow {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: rgba(212, 175, 55, 0.6);
  font-size: 0.9rem;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
}

.explore-card:hover .explore-card__arrow {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0a0a;
  transform: translateY(4px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Section-specific colors */
.explore-card[href*="bio"] .explore-card__icon { border-color: rgba(139, 92, 246, 0.4); }
.explore-card[href*="bio"] .explore-card__icon i { color: #a78bfa; }
.explore-card[href*="bio"]:hover .explore-card__icon { border-color: #a78bfa; box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25); }

.explore-card[href*="concerts"] .explore-card__icon { border-color: rgba(239, 68, 68, 0.4); }
.explore-card[href*="concerts"] .explore-card__icon i { color: #f87171; }
.explore-card[href*="concerts"]:hover .explore-card__icon { border-color: #f87171; box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25); }

.explore-card[href*="gallery"] .explore-card__icon { border-color: rgba(34, 197, 94, 0.4); }
.explore-card[href*="gallery"] .explore-card__icon i { color: #4ade80; }
.explore-card[href*="gallery"]:hover .explore-card__icon { border-color: #4ade80; box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25); }

.explore-card[href*="repertoire"] .explore-card__icon { border-color: rgba(59, 130, 246, 0.4); }
.explore-card[href*="repertoire"] .explore-card__icon i { color: #60a5fa; }
.explore-card[href*="repertoire"]:hover .explore-card__icon { border-color: #60a5fa; box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25); }

.explore-card[href*="news"] .explore-card__icon { border-color: rgba(251, 146, 60, 0.4); }
.explore-card[href*="news"] .explore-card__icon i { color: #fb923c; }
.explore-card[href*="news"]:hover .explore-card__icon { border-color: #fb923c; box-shadow: 0 8px 24px rgba(251, 146, 60, 0.25); }

.explore-card[href*="press"] .explore-card__icon { border-color: rgba(236, 72, 153, 0.4); }
.explore-card[href*="press"] .explore-card__icon i { color: #f472b6; }
.explore-card[href*="press"]:hover .explore-card__icon { border-color: #f472b6; box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .explore-widget__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .explore-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .explore-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .explore-card__icon i {
    font-size: 1.5rem;
  }

  .explore-card__content {
    align-items: flex-start;
  }

  .explore-card__arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .explore-card:hover .explore-card__arrow {
    transform: translateY(-50%) translateX(4px);
  }

  .explore-card:hover {
    transform: translateX(8px);
  }
}

@media (max-width: 600px) {
  .continue-exploring {
    padding: 3.5rem 1rem;
  }

  .explore-widget {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .explore-widget__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .explore-widget__title {
    font-size: 1.4rem;
    gap: 0.75rem;
  }

  .explore-widget__subtitle {
    font-size: 0.9rem;
  }

  .explore-card {
    padding: 1.25rem;
  }

  .explore-card__icon {
    width: 52px;
    height: 52px;
  }

  .explore-card__icon i {
    font-size: 1.3rem;
  }

  .explore-card__title {
    font-size: 1.15rem;
  }

  .explore-card__desc {
    font-size: 0.8rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .explore-widget__title i {
    animation: none;
  }

  .explore-card,
  .explore-card__icon,
  .explore-card__icon i,
  .explore-card__arrow {
    transition: none !important;
  }

  .explore-card:hover,
  .explore-card:hover .explore-card__icon {
    transform: none;
  }
}
