:root {
  --primary: #ff7a00;
  --primary-dark: #e65a00;
  --secondary: #0b1220;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #1a1a1a;
  --light: #f9fafb;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bs-primary: #ff7a00;
  --bs-danger: #ef4444;
}

/* Bootstrap Button Overrides */
.btn-primary {
  background-color: #ff7a00 !important;
  border-color: #ff7a00 !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #e65a00 !important;
  border-color: #e65a00 !important;
  color: white !important;
}

.btn-primary:active,
.btn-primary.active,
.btn-primary:focus {
  background-color: #e65a00 !important;
  border-color: #e65a00 !important;
  color: white !important;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.25) !important;
}

.btn-primary:disabled {
  background-color: #cc6600 !important;
  border-color: #cc6600 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Header & Navigation */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Enhanced navbar for better visibility when scrolled */
.navbar.scrolled {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary) !important;
  text-decoration: none;
  z-index: 1001;
  position: relative;
}

.navbar-brand i {
  margin-right: 0.5rem;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1001;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hamburger Menu Styling */
.navbar-toggler {
  border: 2px solid rgba(255, 122, 0, 0.3);
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.navbar-toggler:hover {
  background: rgba(255, 122, 0, 0.1);
  border-color: var(--primary);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 18, 32, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
  .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
  }

  .navbar.scrolled {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-toggler {
    border: 2px solid rgba(255, 122, 0, 0.4);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    position: relative;
  }

  .navbar-toggler:hover {
    background: rgba(255, 122, 0, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    padding-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--dark) !important;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary) !important;
    transform: translateX(4px);
  }

  .navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--dark);
    padding: 0.75rem 1rem;
    font-weight: 500;
  }

  .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
  }

  .navbar-nav .dropdown-menu .dropdown-divider {
    margin: 0.5rem 0;
  }
}

/* Desktop Navigation Styles */
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar-nav .nav-item {
    display: flex;
    align-items: center;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary) !important;
  }

  .navbar-nav .dropdown-menu {
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    min-width: 180px;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--dark);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
  }

  .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
  }

  .navbar-nav .ms-2 {
    margin-left: 0.5rem !important;
  }

  .user-menu {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
  }
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, rgba(11,18,32,0.75), rgba(11,18,32,0.45)), url('/assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  margin-top: -1px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,18,32,0.1), rgba(11,18,32,0.2));
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  padding: 0 1rem;
}

.hero-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-left {
  flex: 1 1 55%;
  text-align: left;
}

.hero-right {
  flex: 1 1 45%;
  text-align: right;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.featured-event {
  background: linear-gradient(90deg, rgba(11,18,32,0.8), rgba(11,18,32,0.6)), url('/assets/images/featured-bg.jpg');
  color: white;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}

.featured-card {
  background: transparent;
  border: none;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-badge {
  display: inline-block;
  background: rgba(255,122,0,0.95);
  color: white;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.featured-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.featured-meta {
  color: #e6edf3;
  margin-bottom: 1rem;
}

.featured-desc {
  color: #d8e2ea;
  margin-bottom: 1.25rem;
}

.featured-actions .btn-primary {
  background: var(--primary);
  box-shadow: 0 6px 20px rgba(255,122,0,0.18);
}

.price-pill {
  display: inline-block;
  color: var(--primary);
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

/* Featured Event Section */
.featured-event {
  background: white;
}

.featured-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.featured-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: stretch;
  max-width: 1100px;
}

.featured-media img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.featured-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.featured-meta {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.featured-desc {
  color: var(--muted);
  margin-bottom: 1rem;
}

.featured-actions {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .featured-grid {
    flex-direction: column;
    align-items: center;
  }

  .featured-media img {
    width: 100%;
    height: 220px;
  }

  .featured-actions {
    flex-direction: column;
  }
}

.page-hero {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.85) 0%, rgba(11, 18, 32, 0.75) 100%), url('/assets/images/section-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(11, 18, 32, 0.2) 100%);
  z-index: 1;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Features Section */
.features {
  background: white;
}

.features h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--border);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: white;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: var(--muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.625rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,122,0,0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-outline-secondary {
  background: transparent;
  color: var(--primary); /* Changed to primary color for consistency, if used */
  border: 2px solid var(--primary);
}

.btn-outline-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Cards */
.card {
  border: none; /* Cards in screenshot don't have explicit border */
  border-radius: 1rem; /* More rounded */
  transition: all 0.3s ease;
}

.card-title {
  font-weight: 600;
  color: var(--dark);
}

.card-text {
  color: var(--muted);
}

/* Forms */
.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.625rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 0.625rem;
  margin-bottom: 1rem;
  border: none;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
}

.alert i {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  margin-top: 4rem;
}

.footer h5,
.footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Legal Pages */
.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
  color: var(--dark);
}

.legal-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

/* Error Page */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
}

.error-code {
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.error-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Accordion */
.accordion-button {
  padding: 1rem;
  background: white;
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--primary);
}

.accordion-body {
  padding: 1rem;
  color: var(--muted);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Filter Bar */
.filter-bar {
  background: white;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.filter-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.filter-item {
  flex: 1 1 auto;
  min-width: 150px;
}

.filter-select, .filter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--light);
  color: var(--dark);
  font-size: 0.95rem;
}

.filter-select:focus, .filter-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary), 0.2);
  outline: none;
}

.filter-actions {
  display: flex;
  gap: 0.5rem;
}

/* Upcoming Events Section */
.upcoming-events {
  padding: 3rem 0;
  background: var(--light);
}

.upcoming-events h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.upcoming-events p.lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: 1rem; /* More rounded */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-card-content {
  padding: 1.25rem;
}

.event-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.event-card-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.event-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.event-card .btn {
  width: 100%;
  text-align: center;
}

.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

/* Event Details Page */
.event-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.event-image-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.event-header {
    position: relative;
    z-index: 3;
    color: white;
    padding-bottom: 2rem;
}

.event-category-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.event-details {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: none;
}

.event-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--muted);
    margin: 0;
}

.tickets-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: none;
    position: sticky;
    top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tickets-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-option {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-option:hover {
    border-color: var(--primary);
    background: var(--light);
}

.ticket-info h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ticket-price {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0.5rem 0;
}

.ticket-available {
    font-size: 0.9rem;
    margin: 0;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 768px) {
    .featured-grid {
    flex-direction: column;
    align-items: center;
  }

  .featured-media img {
    width: 100%;
    height: 220px;
  }

  .featured-actions {
    flex-direction: column;
  }

    .event-header h1 {
        font-size: 1.75rem;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .tickets-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
  .featured-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .filter-item {
    min-width: unset;
  }
}

/* Utility Classes */
.py-5 {
  padding: 3rem 0;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.gap-4 {
  gap: 1.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.75rem;
}

.col-lg-2,
.col-lg-4,
.col-lg-6,
.col-lg-8 {
  padding: 0.75rem;
}

.col-lg-2 {
  flex-basis: calc(100% / 6 - 1.5rem);
}

.col-lg-4 {
  flex-basis: calc(100% / 3 - 1.5rem);
}

.col-lg-6 {
  flex-basis: calc(50% - 1.5rem);
}

.col-lg-8 {
  flex-basis: calc(66.66% - 1.5rem);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
}

.h-100 {
  height: 100%;
}

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

.gap-3 {
  gap: 1rem;
}

.w-100 {
  width: 100%;
}

.bg-light {
  background-color: var(--light);
}

.rounded {
  border-radius: 0.625rem;
}

/* Modern Header & Navigation */
.navbar {
  padding: 1rem 0;
  background: transparent !important;
  transition: all 0.3s ease;
  z-index: 999;
}

.navbar.bg-gradient {
  background: linear-gradient(135deg, rgba(255,122,0,0.95) 0%, rgba(11,18,32,0.95) 100%) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.sticky-top.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: white !important;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.brand-text {
  letter-spacing: 0.05em;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
  width: 20px;
}

.user-menu .dropdown-toggle::after {
  display: none;
}

.avatar-sm {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.user-menu:hover .avatar-sm {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

.dropdown-menu {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.25rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: var(--light);
  border-left-color: var(--primary);
  color: var(--primary);
}

.dropdown-item i {
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Modern Footer */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #0a0f1b 100%);
  margin-top: 5rem;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: white;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  outline: none;
}

.newsletter-form .btn {
  border: none;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-heading::after {
    width: 30px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
  }

  .navbar-light .navbar-nav .nav-link::after {
    display: none;
  }

  .social-links {
    margin-top: 1rem;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

/* ========================================
   SCROLL-DRIVEN ANIMATIONS
   ======================================== */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Down Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scale In Up Animation */
@keyframes scaleInUp {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Scale In Down Animation */
@keyframes scaleInDown {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Rotate In Animation */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-15deg) scale(0.85);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Rotate In Clockwise Animation */
@keyframes rotateInClockwise {
  from {
    opacity: 0;
    transform: rotate(15deg) scale(0.85);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Slide In Animation (from left) */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In Animation (from right) */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom In Animation */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Bounce In Animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Float/Bounce Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glow Animation */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 122, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.8);
  }
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Base scroll animated class */
.scroll-animated {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation Duration Variables */
:root {
  --scroll-animation-duration: 600ms;
  --scroll-animation-delay: 0ms;
}

/* Fade In Animations */
.animate-fadeIn {
  animation-name: fadeIn;
}

.animate-fadeInUp {
  animation-name: fadeInUp;
}

.animate-fadeInDown {
  animation-name: fadeInDown;
}

.animate-fadeInLeft {
  animation-name: fadeInLeft;
}

.animate-fadeInRight {
  animation-name: fadeInRight;
}

/* Scale Animations */
.animate-scaleIn {
  animation-name: scaleIn;
}

.animate-scaleInUp {
  animation-name: scaleInUp;
}

.animate-scaleInDown {
  animation-name: scaleInDown;
}

/* Rotate Animations */
.animate-rotateIn {
  animation-name: rotateIn;
}

.animate-rotateInClockwise {
  animation-name: rotateInClockwise;
}

/* Slide Animations */
.animate-slideInLeft {
  animation-name: slideInLeft;
}

.animate-slideInRight {
  animation-name: slideInRight;
}

/* Zoom Animations */
.animate-zoomIn {
  animation-name: zoomIn;
}

/* Bounce Animations */
.animate-bounceIn {
  animation-name: bounceIn;
}

/* Continuous Animations */
.animate-pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.animate-float {
  animation-name: float;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.animate-glow {
  animation-name: glow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.animate-shimmer {
  animation-name: shimmer;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
}

/* Parallax Effect Support */
[data-parallax] {
  will-change: transform;
}

/* Progress Reveal Support */
[data-scroll-progress],
[data-scroll-reveal] {
  --scroll-progress: 0%;
  --reveal-progress: 0;
}

/* Staggered Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
.stagger-9 { animation-delay: 0.9s; }
.stagger-10 { animation-delay: 1s; }

/* Animation Speed Modifiers */
.animation-fast {
  animation-duration: 300ms !important;
}

.animation-normal {
  animation-duration: 600ms !important;
}

.animation-slow {
  animation-duration: 1000ms !important;
}

.animation-slower {
  animation-duration: 1500ms !important;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Transitions */
a, button, input[type="button"], input[type="submit"], .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation Utilities for Common Elements */
.event-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card[data-scroll] {
  opacity: 0;
}

.event-card.scroll-animated {
  opacity: 1;
}

.feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card[data-scroll] {
  opacity: 0;
}

.feature-card.scroll-animated {
  opacity: 1;
}

.blog-post {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post[data-scroll] {
  opacity: 0;
}

.blog-post.scroll-animated {
  opacity: 1;
}

/* Responsive Animation Adjustments */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .animate-fadeInLeft,
  .animate-slideInLeft {
    animation-name: fadeInUp;
  }

  .animate-fadeInRight,
  .animate-slideInRight {
    animation-name: fadeInUp;
  }

  .stagger-1 { animation-delay: 0.05s; }
  .stagger-2 { animation-delay: 0.1s; }
  .stagger-3 { animation-delay: 0.15s; }
  .stagger-4 { animation-delay: 0.2s; }
  .stagger-5 { animation-delay: 0.25s; }
}

.p-4 {
  padding: 1.5rem;
}

/* Contact Form Styles */
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 2px solid var(--border-light);
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.25rem;
  min-width: 30px;
}

.contact-item strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Feature Grid Styles */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.feature-item p {
  color: var(--muted);
  margin: 0;
}

/* Responsive Contact Layout */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem;
  }

  .contact-info {
    margin-top: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Legal content mobile styles */
  .legal-content {
    padding: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.1rem;
    margin-top: 2rem;
  }

  .legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* FAQ accordion mobile improvements */
  .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Card improvements for mobile */
  .card-body {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  /* Contact form mobile improvements */
  .contact-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .contact-form .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .contact-form .btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
  }

  /* Contact info mobile */
  .contact-info {
    padding: 1.5rem;
  }

  .contact-item {
    margin-bottom: 1rem;
    padding: 0.75rem 0;
  }

  .contact-item strong,
  .contact-item a {
    font-size: 0.9rem;
  }

  /* Further mobile optimizations */
  .legal-content {
    padding: 1rem;
  }

  .legal-content h2 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .legal-content p {
    font-size: 0.9rem;
  }

  /* Contact info mobile */
  .contact-info {
    padding: 1.5rem;
  }

  .contact-item {
    margin-bottom: 1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  /* FAQ mobile touch targets */
  .accordion-button {
    padding: 1rem;
    min-height: 48px; /* Ensure adequate touch target */
  }

  .accordion-body {
    padding: 1rem;
  }

  /* About page mobile */
  .feature-item h4 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }
}

/* Accordion/FAQ Styles */
.accordion {
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  overflow: hidden;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-light);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--dark);
  background: white;
  border: none;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background: #fff7f2;
  color: var(--primary);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff7a00' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:hover {
  background: #fff7f2;
  color: var(--primary);
}

.accordion-body {
  padding: 1.5rem;
  background: white;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Card Styles - used in About/Contact sections */
.card {
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--muted);
  line-height: 1.6;
}

/* Legal Content Styles */
.legal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Blog Page Styles */
.blog-hero {
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-top: -1px;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11,18,32,0.75), rgba(11,18,32,0.45));
  z-index: 1;
}

.blog-section {
  background: var(--light);
}

.blog-post {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.blog-post:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-date,
.blog-author,
.blog-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.blog-post:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--muted);
  line-height: 1.8;
}

.blog-content-preview {
  list-style: none;
  padding: 1rem;
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: 0.25rem;
}

.blog-content-preview li {
  padding: 0.5rem 0;
  color: var(--dark);
}

.blog-content-preview li:before {
  content: "✓ ";
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.blog-widget {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.category-list,
.recent-posts-list {
  list-style: none;
  padding: 0;
}

.category-list li,
.recent-posts-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.category-list li:last-child,
.recent-posts-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-list a,
.recent-posts-list a {
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-list a:hover,
.recent-posts-list a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.recent-posts-list small {
  display: block;
  margin-top: 0.25rem;
}

.pagination {
  margin-top: 3rem;
  justify-content: center;
}

.page-link {
  color: var(--primary);
  border: 1px solid var(--border);
}

.page-link:hover {
  background: rgba(255, 122, 0, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

.page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

/* Footer Styles */
.footer {
  background: var(--secondary);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.95rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a i {
  width: auto;
  display: inline-block;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 3rem 0;
    min-height: 300px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-meta {
    gap: 1rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .blog-title {
    font-size: 1.5rem;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .blog-excerpt {
    font-size: 1rem;
  }

  .blog-widget {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .widget-title {
    font-size: 1.1rem;
  }

  .category-list li,
  .recent-posts-list li {
    padding: 0.5rem 0;
  }

  .recent-posts-list small {
    margin-left: 1.5rem;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Additional Mobile Responsive Styles for All Pages */
@media (max-width: 768px) {
  /* Homepage Hero Section */
  .hero {
    padding: 3rem 0;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Filter Bar */
  .filter-bar {
    padding: 1.5rem 0;
  }

  .filter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .filter-item {
    width: 100%;
  }

  .filter-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filter-actions .btn {
    width: 100%;
  }

  /* Events Grid */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card {
    margin: 0;
  }

  .event-card-content {
    padding: 1.5rem;
  }

  .event-card h3 {
    font-size: 1.1rem;
  }

  .event-card-meta {
    font-size: 0.85rem;
  }

  .event-card-price {
    font-size: 0.9rem;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Blog Page */
  .blog-hero {
    padding: 3rem 0;
    min-height: 300px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-meta {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .blog-title {
    font-size: 1.5rem;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .blog-widget {
    margin-bottom: 1.5rem;
  }

  .widget-title {
    font-size: 1.1rem;
  }

  .category-list li,
  .recent-posts-list li {
    padding: 0.5rem 0;
  }

  /* Error Page */
  .error-code {
    font-size: 4rem;
  }

  .error-content h2 {
    font-size: 1.5rem;
  }

  .error-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 250px;
  }

  /* Password Reset Pages */
  .auth-benefits {
    padding: 2rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .benefit-item i {
    font-size: 2rem;
  }

  /* Payment Success/Failed Pages */
  .success-hero,
  .failed-hero {
    padding: 3rem 0;
  }

  .success-checkmark,
  .failed-icon {
    width: 60px;
    height: 60px;
  }

  .success-checkmark i,
  .failed-icon i {
    font-size: 2.5rem;
  }

  .success-content h1,
  .failed-content h1 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .ticket-download {
    padding: 1.5rem;
  }

  .ticket-info {
    flex-direction: column;
    gap: 1rem;
  }

  /* General Mobile Improvements */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  /* Form Improvements */
  .form-control {
    font-size: 16px; /* Prevents iOS zoom */
  }

  .btn {
    min-height: 44px; /* Adequate touch target */
    font-size: 1rem;
  }

  /* Table Improvements */
  .table-responsive {
    font-size: 0.9rem;
  }

  .table td,
  .table th {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra Small Screens */
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .event-card h3 {
    font-size: 1rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .blog-title {
    font-size: 1.25rem;
  }

  .blog-hero {
    padding: 2rem 0;
  }

  .blog-post {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .blog-widget {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .widget-title {
    font-size: 1rem;
  }

  .error-code {
    font-size: 3rem;
  }

  .success-content h1,
  .failed-content h1 {
    font-size: 1.5rem;
  }

  .success-checkmark,
  .failed-icon {
    width: 50px;
    height: 50px;
  }

  .success-checkmark i,
  .failed-icon i {
    font-size: 2rem;
  }

  /* Stats Grid on Very Small Screens */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Filter Bar on Very Small Screens */
  .filter-bar .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* Navbar enhancements for very small screens */
  .navbar-toggler {
    width: 48px;
    height: 48px;
    margin-left: 0.5rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
}
