:root {
  --primary: #ca20fd;
  --secondary: #f27839;
  --accent1: #eb4f74;
  --accent2: #f7b267;
  --text-dark: #1a1a2e;
  --text-light: #666;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --nav-shadow: 0 14px 40px rgba(26, 26, 46, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --page-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(1000px 340px at 10% 8%, rgba(202, 32, 253, 0.08), transparent 55%),
    radial-gradient(900px 280px at 90% 16%, rgba(242, 120, 57, 0.08), transparent 50%),
    radial-gradient(1100px 420px at 50% 88%, rgba(235, 79, 116, 0.05), transparent 55%),
    #fafafd;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.container-custom {
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: white;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
  padding: 10px 0;
}

#header .logo {
  font-size: 32px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  background-color: #ff4a17;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #000000;
  border: 2px solid #000000;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #d93a00;
  border-color: #d93a00;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 1px;
}

.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}

.mobile-nav-toggle {
  color: #0a0a0a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: 0.5s;
  background: transparent;
  border: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    line-height: 1;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 991px) {
  #header .navbar {
    position: static !important;
  }

  #header .navbar.navbar-mobile {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    background: rgba(4, 7, 9, 0.9) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
  }

  #header .navbar.navbar-mobile ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10000 !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 9999;
}

.navbar.navbar-mobile {
  display: block !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.navbar.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ff4a17;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  list-style: none;
  margin: 0;
}

.navbar.navbar-mobile ul {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ff4a17;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/* Main */
.event-listings-main {
  padding-top: 92px;
}

.page-hero {
  padding: 42px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-shell,
.location-bar,
.filter-summary {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(202, 32, 253, 0.12);
  box-shadow: 0 18px 50px rgba(26, 26, 46, 0.08);
  backdrop-filter: blur(12px);
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.hero-copy--wide {
  padding: 36px 38px 34px;
}

.eyebrow,
.section-kicker,
.hero-panel__label,
.filter-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(202, 32, 253, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 14px;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(202, 32, 253, 0.06), rgba(242, 120, 57, 0.04));
  border: 1px solid rgba(202, 32, 253, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(202, 32, 253, 0.12);
}

.metric-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Hero Filter Panel */
.hero-panel {
  border-radius: var(--radius-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  z-index: 100;
  transition: margin-bottom 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 1199px) {
  .hero-panel:has(.dropdown-modern.is-open) {
    margin-bottom: 170px;
  }
}

.hero-panel__label {
  align-self: flex-start;
}

.hero-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px;
}

.hero-panel__content {
  flex: 0 0 auto;
}

.hero-panel__city-name {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero-panel__city-copy {
  margin: 8px 0 0;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-dropdown-wrapper {
  position: relative;
  z-index: 50;
}

.hero-dropdown-wrapper .dropdown-menu-modern {
  top: calc(100% + 10px);
  bottom: auto;
  max-height: calc(3 * 46px + 20px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(202, 32, 253, 0.08);
}

.hero-dropdown-wrapper .dropdown-menu-modern::-webkit-scrollbar {
  width: 6px;
}

.hero-dropdown-wrapper .dropdown-menu-modern::-webkit-scrollbar-track {
  background: rgba(202, 32, 253, 0.06);
  border-radius: 10px;
}

.hero-dropdown-wrapper .dropdown-menu-modern::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px;
}

.hero-dropdown-wrapper .dropdown-menu-modern::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.hero-location-hint {
  display: block;
  margin-top: 8px;
  color: var(--text-light);
  font-size: 12px;
  padding-left: 4px;
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.hero-panel__stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(202, 32, 253, 0.06), rgba(242, 120, 57, 0.04));
  border: 1px solid rgba(202, 32, 253, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-panel__stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(202, 32, 253, 0.1);
}

.hero-panel__stat-number {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-panel__stat-label {
  display: block;
  margin-top: 2px;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-section {
  padding: 10px 0 0;
}

.location-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  padding: 18px;
}

.location-bar-left,
.location-bar-right {
  min-width: 0;
}

.filter-bar-label {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dropdown-modern {
  position: relative;
  width: 100%;
}

.dropdown-toggle-modern {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--white);
  padding: 12px 18px 12px 20px;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 8px 22px rgba(202, 32, 253, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}

.dropdown-toggle-modern:hover,
.dropdown-modern.is-open .dropdown-toggle-modern {
  border-color: var(--secondary);
  box-shadow: 0 12px 28px rgba(242, 120, 57, 0.18);
  transform: translateY(-1px);
}

.location-icon {
  flex: 0 0 auto;
}

.current-location {
  flex: 1 1 auto;
  text-align: left;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid var(--primary);
  transition: transform 0.3s ease;
}

.dropdown-modern.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu-modern {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.08);
  box-shadow: 0 18px 36px rgba(26, 26, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 40;
}

.dropdown-modern.is-open .dropdown-menu-modern {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-modern li {
  padding: 12px 18px 12px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dropdown-menu-modern li:hover,
.dropdown-menu-modern li.is-selected {
  background: linear-gradient(135deg, rgba(202, 32, 253, 0.06), rgba(242, 120, 57, 0.06));
  color: var(--primary);
  padding-left: 24px;
}

.location-hint {
  display: block;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 13px;
}

.events-section {
  padding: 26px 0 72px;
}

.section-shell {
  margin-top: 18px;
  border-radius: 28px;
  padding: 24px;
}

.section-shell + .section-shell {
  margin-top: 28px;
}

.events-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 32, 253, 0.2), rgba(242, 120, 57, 0.2), transparent);
  margin: 32px 0;
}

.section-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-header-row h2 {
  margin: 12px 0 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.section-header-row p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-light);
  font-size: 0.96rem;
  line-height: 1.7;
  text-align: right;
}

.events-slider {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  margin: -6px 0;
}

.events-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.event-card-wrap {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.event-hero-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(202, 32, 253, 0.12);
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.event-hero-card:hover {
  border: 2px solid var(--primary);
  transform: translateY(-3px);
}

/* Completed State */
.event-hero-card.is-completed {
  /* Just a subtle desaturation and brightness drop so it still looks great */
  filter: grayscale(0.2) contrast(0.95);
}

.event-hero-card.is-completed .event-badge-date,
.event-hero-card.is-completed .event-badge-price {
  /* Keep normal colors, or make them slightly muted, but the status badge handles the messaging */
}

.event-badge-status {
  position: absolute;
  top: 18px;
  right: 18px;
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-completed {
  background: rgba(62, 39, 83, 0.85); /* Deep luxury plum/aubergine */
  box-shadow: 0 4px 12px rgba(62, 39, 83, 0.25);
}

.status-upcoming {
  background: rgba(202, 32, 253, 0.85); /* var(--primary) but translucent */
  box-shadow: 0 4px 12px rgba(202, 32, 253, 0.25);
}

.status-ongoing {
  background: rgba(242, 120, 57, 0.85); /* var(--secondary) but translucent */
  box-shadow: 0 4px 12px rgba(242, 120, 57, 0.25);
}

.event-hero-card__media {
  position: relative;
  background: rgba(202, 32, 253, 0.06);
}

.event-hero-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.event-badge-date {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 10px 14px;
  border-radius: 14px;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 20px rgba(202, 32, 253, 0.22);
}

.event-badge-date__day {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.event-badge-date__month {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-badge-price {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(26, 26, 46, 0.1);
}

.event-hero-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-category-tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(202, 32, 253, 0.08);
  color: var(--text-dark);
  border: 1px solid rgba(202, 32, 253, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.event-hero-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.22;
  font-weight: 700;
}

.event-hero-card__desc {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-meta-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
}

.event-meta-row svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: var(--primary);
}

.event-hero-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(202, 32, 253, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(202, 32, 253, 0.3);
}

.btn-secondary {
  background: rgba(26, 26, 46, 0.05);
  color: var(--text-dark);
  box-shadow: none;
  border: 1px solid rgba(26, 26, 46, 0.1);
}

.btn-secondary:hover {
  background: rgba(26, 26, 46, 0.08);
  color: var(--primary);
  border-color: rgba(202, 32, 253, 0.3);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.08);
}

.events-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.events-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.events-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(202, 32, 253, 0.3);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.events-slider__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.35);
}

.events-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202, 32, 253, 0.18);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(202, 32, 253, 0.12);
  transition: all 0.25s ease;
}

.events-slider__arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: transform 0.25s ease, fill 0.25s ease;
}

.events-slider__arrow:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  transform: translateY(-2px);
}

.events-slider__arrow:hover svg {
  fill: var(--white);
}

.events-slider__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.no-results {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(202, 32, 253, 0.06);
  color: var(--text-light);
  font-size: 0.95rem;
  display: none;
}

.no-results.is-visible {
  display: block;
}

.is-hidden {
  display: none !important;
}

/* Footer */
#footer {
  background: #f3516a;
  padding: 0 0 30px 0;
  color: var(--white);
  font-size: 14px;
}

#footer .footer-top {
  background: #912b93;
  border-bottom: 1px solid #e16911;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

#footer .footer-top .footer-info p {
  margin: 0;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}

#footer .footer-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff4a17;
  text-decoration: none;
}

#footer .footer-top h4 {
  position: relative;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .footer-top .footer-links ul li {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5e31;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul a {
  color: var(--white);
  transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff4a17;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type='email'] {
  width: calc(100% - 110px);
  border: 0;
  padding: 8px 6px;
}

#footer .footer-top .footer-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: #ff4a17;
  color: var(--white);
  font-size: 16px;
  padding: 0 20px;
  cursor: pointer;
}

#footer .copyright,
#footer .credits {
  text-align: center;
}

#footer .copyright {
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel__inner {
    min-height: 240px;
  }

  .hero-panel__mini-stats {
    max-width: 460px;
  }

  .location-bar {
    grid-template-columns: 1fr;
  }

  .filter-bar-label {
    min-height: auto;
    padding: 0;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header-row p {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(4, 7, 9, 0.9);
  }

  .navbar.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--primary);
  }

  .navbar.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: var(--white);
    overflow-y: auto;
  }

  .navbar.navbar-mobile a,
  .navbar.navbar-mobile a:focus {
    color: var(--text-dark);
    padding: 12px 20px;
  }

  .event-card-wrap {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .event-listings-main {
    padding-top: 84px;
  }

  .container-custom {
    width: min(100% - 28px, var(--page-width));
  }

  .hero-copy,
  .hero-panel,
  .section-shell,
  .location-bar {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .location-bar {
    padding: 14px;
  }

  .location-bar-right {
    width: 100%;
  }

  .dropdown-toggle-modern {
    padding: 11px 16px;
  }

  .hero-panel__mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-panel__chips {
    gap: 8px;
  }

  .hero-panel__chips span {
    font-size: 0.8rem;
  }

  .section-shell {
    padding: 18px 16px 20px;
  }

  .event-card-wrap {
    flex-basis: 100%;
  }

  .event-hero-card__img {
    height: 220px;
  }

  .event-hero-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .event-register-btn {
    width: 100%;
  }

  .events-slider__nav {
    gap: 10px;
  }

  .events-slider__arrow {
    width: 42px;
    height: 42px;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    margin-left: 0;
  }
}
