/* EVENTS Grid Page etc */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.city-card {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: white;
  font-weight: 600;
}

.city-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  width: fit-content;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  backdrop-filter: blur(4px);
}

.events-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* EVENT CARD TAGS */
.card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.status-filling {
  background: var(--brand-orange);
  color: white;
}

.status-sold {
  background: #ef4444;
  color: white;
}

.event-tag-video {
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.event-tag-live {
  color: #facc15;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.events-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.events-header-row h2 {
  font-size: 2rem;
}

/* FILTER PILLS */
.filter-pill {
  background: var(--gradient-orange-black-subtle);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-pill.active {
  background: var(--gradient-orange-black);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--gradient-orange-glow);
}

.section-container {
  padding: 20px 0;
}

.filters-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   MODERN EVENTS SECTION STYLES
   ============================================ */

/* Events Hero Section */
.events-hero-section {
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.events-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 145, 77, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.events-hero-content {

  z-index: 2;
}

.events-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text-main);
}

.events-hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.events-hero-actions {
  display: flex;
  gap: 16px;
  z-index: 2;
}

.btn-hero-primary {
  background: var(--gradient-orange-black);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--gradient-orange-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gradient-orange-glow-hover);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 145, 77, 0.1);
  transform: translateY(-2px);
}

/* Filter Section */
.events-filter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 145, 77, 0.1), transparent);
  transition: left 0.5s ease;
}

.filter-tab:hover::before {
  left: 100%;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: var(--gradient-orange-black);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--gradient-orange-glow);
}

.filter-controls {
  display: flex;
  gap: 12px;
}

.filter-control-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.filter-control-btn:hover {
  border-color: var(--primary);
  background: rgba(255, 145, 77, 0.05);
}

.filter-control-btn i {
  width: 16px;
  height: 16px;
}

/* Modern Events Grid */
.modern-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

/* Modern Event Card - RE-DESIGNED TO FULL IMAGE */
.modern-event-card {
  background: #111;
  border: 1.5px solid rgba(255, 145, 77, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 380px;
  /* Increased height for more visual presence */
}

.modern-event-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 145, 77, 0.2);
}

/* Event Card Image Layer - Now Absolute Background */
.event-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  clip-path: none;
  /* Removed old clip-path */
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(0.6) contrast(1.1);
}

.modern-event-card:hover .event-card-image img {
  transform: scale(1.1);
  filter: brightness(0.7) contrast(1.1);
}

/* Gradient Overlay for Text Readability */
.modern-event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.modern-event-card:hover::after {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0.95) 100%);
}

/* Floating Badges */
.event-time-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--brand-orange);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 145, 77, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  z-index: 10;
}

/* Event Card Content Overlay */
.event-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Push content to bottom */
}

.event-card-header {
  margin-bottom: 8px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.event-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.event-location i {
  color: var(--primary);
}

.event-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Event Card Actions */
.event-card-actions {
  display: flex;
  gap: 12px;
  opacity: 0.9;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.modern-event-card:hover .event-card-actions {
  opacity: 1;
}

.btn-view-more {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-view-more:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.btn-book-now {
  flex: 1.5;
  background: var(--brand-orange);
  border: 1.5px solid var(--brand-orange);
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.btn-book-now:hover {
  transform: translateY(-2px);
  background: white;
  border-color: white;
  color: var(--brand-orange);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Carousel Styles */
.events-carousel-section {
  margin: 20px 0 40px 0;
  padding: 0;
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1) grayscale(0.2);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.carousel-slide:hover img {
  transform: scale(1.08);
  filter: brightness(0.7) contrast(1.1) grayscale(0);
}

.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 80px 60px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.carousel-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 145, 77, 0.3);
}

.carousel-content h2 {
  font-size: 3rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.carousel-content p {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 700px;
  line-height: 1.5;
}

.btn-carousel {
  background: white;
  color: black;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.btn-carousel:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--gradient-orange-glow);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 145, 77, 0.5);
}

/* Event List transition */
.view-container {
  transition: all 0.5s ease-in-out;
}

/* Mobile Responsive for Events */
@media (max-width: 1024px) {
  .modern-events-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .modern-event-card {
    height: 400px;
  }
}

@media (max-width: 900px) {

  /* Removed strict 1fr grid to allow 2 columns on tablet */
  .modern-events-grid {
    gap: 16px;
  }

  .events-hero-section {
    padding: 30px 20px;
  }

  .events-hero-content h1 {
    font-size: 1.8rem;
  }

  .events-hero-content p {
    font-size: 0.9rem;
  }

  .filter-tabs {
    overflow-x: auto;
    padding: 10px 0;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .events-hero-section {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }

  .events-hero-content h1 {
    font-size: 1.8rem;
  }

  .events-hero-content p {
    font-size: 0.95rem;
  }

  .events-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

  .events-filter-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* ================= REELS SECTION ================= */
.reels-section {
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid var(--border);
  margin: 40px 0;
  padding: 40px 20px;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.reels-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.reels-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.reels-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.reels-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.reels-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  scroll-snap-type: x mandatory;
}

.reels-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Webkit */
}

.reel-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  scroll-snap-align: center;
}

.reel-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.reel-card:hover video {
  opacity: 1;
}

.reel-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
}

.reel-card:hover .reel-overlay {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 900px) {
  .reel-card {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .reels-section {
    padding: 30px 16px;
    margin: 30px 0;
  }

  .reels-header h2 {
    font-size: 2rem;
  }

  .reels-container {
    gap: 16px;
  }

  .reel-card {
    height: 380px;
    border-radius: 16px;
  }
}



@media (max-width: 768px) {
  .filter-tabs {
    justify-content: center;
  }

  .filter-controls {
    justify-content: center;
    width: 100%;
  }

  .event-card-header {
    flex-direction: column;
    gap: 8px;
  }

  .event-price {
    margin-left: 0;
  }

  .event-card-actions {
    flex-direction: column;
  }

  .carousel-container {
    height: 400px;
  }

  .carousel-content {
    padding: 30px;
  }

  .carousel-content h2 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel-nav {
    display: none;
  }

  .carousel-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
  }
}

@media (max-width: 480px) {
  .modern-event-card {
    height: 400px;
  }

  .event-card-header h3 {
    font-size: 1.3rem;
  }

  .event-description {
    margin-bottom: 16px;
  }

  .events-hero-content h1 {
    font-size: 1.5rem;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .event-card-content {
    padding: 20px;
  }

  .event-card-header h3 {
    font-size: 1.2rem;
  }

  .carousel-container {
    height: 350px;
  }

  .carousel-content {
    padding: 20px;
  }

  .carousel-content h2 {
    font-size: 1.5rem;
  }

  .carousel-content p {
    font-size: 0.85rem;
  }

  .carousel-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .btn-carousel {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Extracted from events.html */
/* ================= FESTIVAL HERO STYLES (Namespaced) ================= */
.festival-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
  overflow: hidden;
  background: #000000;
  font-family: 'Poppins', sans-serif;
  min-height: 85vh;
  /* Adjustable height */
  color: #fff;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.festival-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 145, 77, 0.2), #000000 80%);
  z-index: 1;
}

.festival-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
}

.festival-top-text {
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 20px;
}

.festival-h1 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 35px;
}

.festival-h1 span {
  font-weight: 400;
}

.festival-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.festival-btn {
  position: relative;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  color: #fff;
  z-index: 1;
  transition: .3s ease;
}

.festival-btn::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 2px solid;
  border-radius: 6px;
  z-index: -1;
}

.festival-btn-start {
  background: linear-gradient(90deg, #f28b2c 0%, #f59f16 45%, #f7c34f 100%);
}

.festival-btn-start::after {
  border-color: #f5a623;
  z-index: -1;
  clip-path: inset(6px 0 0 6px);
}

.festival-btn-demo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 145, 77, 0.3);
}

.festival-btn-demo::after {
  border-color: #f5a623;
  z-index: -1;
  clip-path: inset(6px 0 0 6px);
  opacity: 0.8;
}

.festival-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.4);
}

.festival-btn-start:hover {
  filter: brightness(1.1);
}

.festival-btn-demo:hover {
  background: rgba(255, 145, 77, 0.15);
  border-color: #f5a623;
  color: #f5a623;
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.2);
}

.festival-gradient-text {
  background: linear-gradient(90deg, #f28b2c, #f5a623, #f7c34f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Triangles */
.festival-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none;
  z-index: 2;
  transform: rotate(var(--r, 0deg)) scale(var(--s, 1));
  transition: transform 0.3s ease;
}

.t-orange {
  border-color: transparent transparent #ffaa00 transparent;
}

.t-amber {
  border-color: transparent transparent #ffbd4d transparent;
}

.t-l1 {
  top: 8%;
  left: 6%;
  border-width: 0 80px 80px 0;
  --r: 12deg;
  opacity: 0.11;
}

.t-l2 {
  top: 18%;
  left: 14%;
  border-width: 0 70px 70px 0;
  --r: 28deg;
  opacity: 0.09;
}

.t-l3 {
  top: 32%;
  left: 8%;
  border-width: 0 60px 60px 0;
  --r: -10deg;
  opacity: 0.12;
}

.t-l4 {
  top: 25%;
  left: 20%;
  border-width: 65px 0 0 65px;
  --r: 18deg;
  opacity: 0.10;
}

.t-l5 {
  bottom: 22%;
  left: 18%;
  border-width: 0 65px 65px 0;
  --r: 35deg;
  opacity: 0.10;
}

.t-l6 {
  top: 45%;
  left: 22%;
  border-width: 0 50px 50px 0;
  --r: 8deg;
  opacity: 0.13;
}

.baby-l1 {
  top: 15%;
  left: 28%;
  border-width: 0 38px 38px 0;
  --r: 45deg;
  opacity: 0.14;
}

.baby-l2 {
  bottom: 25%;
  left: 35%;
  border-width: 0 35px 35px 0;
  --r: 15deg;
  opacity: 0.15;
}

.t-r1 {
  top: 8%;
  right: 6%;
  border-width: 0 80px 80px 0;
  --r: -12deg;
  opacity: 0.11;
}

.t-r2 {
  top: 18%;
  right: 14%;
  border-width: 0 70px 70px 0;
  --r: -28deg;
  opacity: 0.09;
}

.t-r3 {
  top: 32%;
  right: 8%;
  border-width: 0 60px 60px 0;
  --r: 10deg;
  opacity: 0.12;
}

.t-r4 {
  top: 25%;
  right: 20%;
  border-width: 65px 0 0 65px;
  --r: -18deg;
  opacity: 0.10;
}

.t-r5 {
  bottom: 22%;
  right: 18%;
  border-width: 0 65px 65px 0;
  --r: -35deg;
  opacity: 0.10;
}

.t-r6 {
  top: 45%;
  right: 22%;
  border-width: 0 50px 50px 0;
  --r: -8deg;
  opacity: 0.13;
}

.baby-r1 {
  top: 15%;
  right: 28%;
  border-width: 0 38px 38px 0;
  --r: -45deg;
  opacity: 0.14;
}

.baby-r2 {
  bottom: 25%;
  right: 35%;
  border-width: 0 35px 35px 0;
  --r: -15deg;
  opacity: 0.15;
}

.bg-big1 {
  top: -10%;
  left: -15%;
  border-width: 0 220px 220px 0;
  --r: -15deg;
  opacity: 0.04;
}

.bg-big2 {
  top: -10%;
  right: -15%;
  border-width: 0 220px 220px 0;
  --r: 15deg;
  opacity: 0.04;
}

.bg-big3 {
  bottom: -12%;
  left: -18%;
  border-width: 240px 0 0 240px;
  --r: 18deg;
  opacity: 0.04;
}

.bg-big4 {
  bottom: -12%;
  right: -18%;
  border-width: 240px 0 0 240px;
  --r: -18deg;
  opacity: 0.04;
}

/* Decor Circles */
.festival-decor {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.festival-circle {
  position: absolute;
  border: 1px dashed #ffaa40;
  border-radius: 50%;
  opacity: 0.18;
}

@media (max-width: 991px) {
  .festival-h1 {
    font-size: 42px;
  }

  .festival-top-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .festival-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .festival-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .festival-btn {
    width: 100%;
    max-width: 300px;
  }

  .festival-h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .festival-top-text {
    font-size: 14px;
    letter-spacing: 2px;
  }

  /* Scale down decorative elements for mobile */
  .festival-triangle {
    --s: 0.6;
  }

  .festival-decor {
    transform: scale(0.5) !important;
  }

  .bg-big1,
  .bg-big2,
  .bg-big3,
  .bg-big4 {
    display: none;
    /* Hide very large triangles on mobile to reduce clutter */
  }

}



/* Smooth View Transitions */
.view-container {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.view-container:not(.active) {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
}

/* Sliding Toggle Polish */
.pricing-toggle-main {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 50px;
  display: flex;
  gap: 4px;
  min-width: 320px;
  overflow: hidden;
}

.pricing-toggle-main::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 8px);
  background: var(--gradient-orange-black);
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--gradient-orange-glow);
  z-index: 1;
}

.pricing-toggle-main[data-active="spaces"]::before {
  transform: translateX(calc(100% + 4px));
}

.pricing-toggle-main .btn-toggle {
  position: relative;
  z-index: 2;
  flex: 1;
  background: transparent !important;
  box-shadow: none !important;
  border: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing-toggle-main .btn-toggle.active {
  color: white;
}

/* Hero height stability */
.events-hero-section {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 📱 MOBILE FIX — FORCE GroThh INTO ONE LINE */

/* Responsive tweak for pricing toggle to avoid clipping in rounded hero */
.pricing-toggle-main {
  min-width: 0;
  /* allow shrinking within hero */
  width: min(100%, 320px);
  /* cap at 320px but fill smaller containers */
  margin: 12px auto 0;
  /* center within the hero */
}

@media (max-width: 600px) {
  .pricing-toggle-main {
    width: 100%;
    max-width: 280px;
    padding: 4px;
    gap: 6px;
  }

  .pricing-toggle-main .btn-toggle {
    font-size: 0.72rem;
    padding: 8px 0;
  }

  .pricing-toggle-main::before {
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 8px);
  }
}

/* Visit cards styles (appended) */
:root {
  --bg: #050606;
  --accent: #FF914D;
  --accent-soft: rgba(156, 207, 122, 0.15);
  --text: #e9efe6;
  --muted: #9aa29a;
  --radius: 18px;
}

/* Scope fonts and box-sizing to the visit section to avoid overriding global layout */
.visit-wrapper {
  font-family: 'Inter', sans-serif;
}

.visit-wrapper * {
  box-sizing: border-box;
}

/* Wrapper */
.visit-wrapper {
  width: 100%;
  max-width: 1400px;
  padding: 40px 24px;
}

/* Header */
.visit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-header h2 {
  font-size: 26px;
  font-weight: 500;
}

.visit-header p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.contact-btn {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

/* Cards container */
.cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}


/* Card (HALF SIZE) */
.card {
  position: relative;
  height: 160px;
  /* significantly reduced height */
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: reveal 0.6s ease forwards;
}

.visit-card-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 145, 77, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.card:hover .visit-card-btn {
  opacity: 1;
  transform: scale(1);
}

.visit-card-btn:hover {
  background: var(--accent);
  color: #000;
  transform: scale(1.1);
}

/* Stagger animation */
.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.25s;
}

.card:nth-child(3) {
  animation-delay: 0.4s;
}

.card:nth-child(4) {
  animation-delay: 0.55s;
}

.card:nth-child(5) {
  animation-delay: 0.7s;
}

.card:nth-child(6) {
  animation-delay: 0.85s;
}

.card:nth-child(7) {
  animation-delay: 1s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Background Image */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2.5px);
  transform: scale(1.1);
}

/* Overlay */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 6, 0.55);
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

/* Step */
.step {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  font-size: 12px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Icon */
.icon {
  font-size: 28px;
  color: var(--accent);
  margin: 4px 0;
  filter: drop-shadow(0 0 8px rgba(255, 145, 77, 0.3));
}

/* Background images */
.bg-1::before {
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee');
}

.bg-2::before {
  background-image: url('https://images.unsplash.com/photo-1501117716987-c8e1ecb210ad');
}

.bg-3::before {
  background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1');
}

.bg-4::before {
  background-image: url('https://images.unsplash.com/photo-1515169067865-5387ec356754');
}

.bg-5::before {
  background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
}

.bg-6::before {
  background-image: url('https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e');
}

.bg-7::before {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d');
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    grid-auto-columns: 100%;
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 480px) {
  .cards {
    grid-auto-columns: 100%;
  }
}

/* ===============================
   MOBILE SCROLL ARROWS
================================ */

.mobile-arrows {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(5, 6, 6, 0.6);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.arrow:hover {
  background: rgba(156, 207, 122, 0.12);
  transform: scale(1.08);
}

.arrow i {
  font-size: 20px;
}

/* Show arrows ONLY on mobile */
@media (max-width: 768px) {
  .mobile-arrows {
    display: flex;
  }
}

/* ===============================
   CARD HOVER EFFECTS (DESKTOP)
================================ */

/* Smooth base transition */
.card {
  transition:
    transform 0.5s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

/* Background animation */
.card::before {
  transition: transform 0.8s ease, filter 0.6s ease;
}

/* Overlay fade */
.card::after {
  transition: background 0.4s ease;
}

/* Card hover lift */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 145, 77, 0.45);
}

/* Background parallax + clarity */
.card:hover::before {
  transform: scale(1.25) translateY(-6%);
  filter: blur(1px);
}

/* Dark overlay softens */
.card:hover::after {
  background: rgba(5, 6, 6, 0.35);
}

/* Content micro movement */
.card-content {
  transition: transform 0.4s ease;
}

.card:hover .card-content {
  transform: translateY(-4px);
}

/* Icon pop */
.icon {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.card:hover .icon {
  transform: scale(1.2);
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(255, 145, 77, 0.6));
}

/* Step badge glow */
.step {
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.card:hover .step {
  background: rgba(255, 145, 77, 0.15);
  box-shadow: 0 0 14px rgba(255, 145, 77, 0.5);
}

/* Title clarity */
.title {
  transition: letter-spacing 0.3s ease;
}

.card:hover .title {
  letter-spacing: 0.4px;
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: none;
  }
}


@media (max-width: 900px) {
  .content-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-hero,
  .events-hero-section {
    padding: 24px;
  }

  .events-hero-section h1 {
    font-size: 1.25rem;
    margin-left: 5px;
  }


  .modern-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modern-event-card {
    width: 100%;
  }

  .visit-wrapper {
    padding: 24px 12px;
  }

  .visit-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}



/* Container height handles images */

.visit-wrapper .cards {
  gap: 12px;
}

.card {
  height: 160px;
}

.visit-header h2 {
  font-size: 20px;
}

.visit-header p {
  font-size: 13px;
}

.mobile-arrows .arrow {
  width: 40px;
  height: 40px;
}