:root {
  --rec-primary: #6f1d1b; /* burgundy */
  --rec-secondary: #1f1f1f; /* charcoal */
  --rec-accent: #f2c94c; /* yellow */
  --rec-light: #f7f7f7;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--rec-secondary);
  background: #fff;
}

.navbar-rec {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.navbar-rec .nav-link {
  font-weight: 600;
}

.navbar-nav {
  align-items: center;
}

.navbar-collapse .d-flex {
  min-height: 40px;
}

.btn-rec.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-rec {
  background: var(--rec-primary);
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
}

.btn-rec:hover {
  background: #5b1615;
  color: #fff;
}

.btn-rec-outline {
  border: 2px solid var(--rec-primary);
  color: var(--rec-primary);
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-rec-outline:hover {
  background: var(--rec-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-rec-secondary {
  background: #f0f0f0;
  color: var(--rec-primary);
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-rec-secondary:hover {
  background: #e0e0e0;
  color: var(--rec-primary);
}

.section-pad {
  padding: 80px 0;
}

.hero {
  background: var(--rec-light);
  border-bottom: 1px solid #eee;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.badge-accent {
  background: var(--rec-accent);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.card-rec {
  border: 1px solid #eee;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.footer {
  background: #0f0f0f;
  color: #fff;
}

.footer a { color: #fff; text-decoration: none; }

.sidebar {
  min-height: 100vh;
  background: #101010;
  color: #fff;
}

.sidebar a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 0.75rem 1rem;
}

.sidebar a.active,
.sidebar a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.topbar {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.table thead th {
  font-weight: 700;
}

.form-control, .form-select {
  border-radius: 0.5rem;
}

.alert-rec {
  border-left: 4px solid var(--rec-primary);
  background: #fff9f9;
}

.swiper {
  padding-bottom: 40px;
}

.swiper-slide .card-rec {
  height: 100%;
}

/* Hover effect for cards */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(111, 29, 27, 0.15) !important;
}

/* Swiper navigation buttons */
.swiper-button-next, .swiper-button-prev {
  background: var(--rec-primary);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #5b1615;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--rec-primary);
  width: 30px;
  border-radius: 10px;
}

/* Navigation responsive improvements */
@media (max-width: 991px) {
  .navbar-nav {
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  
  .navbar-collapse .d-flex {
    flex-direction: column;
    width: 100%;
  }
  
  .navbar-collapse .d-flex .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 0.5rem;
  }
}
/* Wine-colored ticket theme */
.ticket-card {
  background: linear-gradient(135deg, #722f37 0%, #6f1d1b 100%);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(111, 29, 27, 0.25);
  color: #fff;
  transition: all 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(111, 29, 27, 0.35);
}

.ticket-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ticket-card .ticket-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rec-accent);
  margin-bottom: 0.5rem;
}

.ticket-card .ticket-benefits {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  min-height: 60px;
}

.ticket-card .btn-ticket {
  background: #fff;
  color: var(--rec-primary);
  border: none;
  font-weight: 700;
  width: 100%;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.ticket-card .btn-ticket:hover {
  background: var(--rec-accent);
  color: #000;
  transform: scale(1.05);
}

.ticket-instructions {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  border-left: 5px solid var(--rec-primary);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ticket-instructions h5 {
  color: var(--rec-primary);
  font-weight: 700;
}

/* Mystery/Unveiling Speaker Styles */
.mystery-speaker {
  position: relative;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  border: 2px solid #444;
  color: #fff;
}

.mystery-speaker-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.mystery-speaker-avatar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.mystery-speaker-avatar .mystery-icon {
  font-size: 5rem;
  color: #666;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.mystery-speaker-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rec-accent);
  text-align: center;
  margin-bottom: 0.5rem;
}

.mystery-speaker-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.mystery-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--rec-accent);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
