/* ============================================
   TICKETZONE COMPLETE STYLESHEET
   ============================================ */
/* ============================================
   CSS VARIABLES (Design System)
   ============================================ */
:root {
  /* Light Mode Colors */
  --background: 0 0% 100%;
  --foreground: 237 55% 20%;
  --card: 0 0% 100%;
  --card-foreground: 237 55% 20%;
  --primary: 237 55% 20%;
  --primary-foreground: 0 0% 100%;
  --secondary: 340 82% 52%;
  --secondary-foreground: 0 0% 100%;
  --muted: 240 10% 96%;
  --muted-foreground: 237 20% 45%;
  --accent: 33 100% 50%;
  --accent-foreground: 0 0% 100%;
  --border: 240 10% 90%;
  --radius: 0.75rem;
  /* Brand Colors */
  --navy: 237 55% 20%;
  --pink: 340 82% 52%;
  --orange: 33 100% 50%;
  --purple: 280 70% 45%;
}

.dark {
  /* Dark Mode Colors */
  --background: 237 55% 8%;
  --foreground: 0 0% 98%;
  --card: 237 45% 12%;
  --card-foreground: 0 0% 98%;
  --primary: 340 82% 52%;
  --primary-foreground: 0 0% 100%;
  --secondary: 237 40% 18%;
  --secondary-foreground: 0 0% 98%;
  --muted: 237 40% 18%;
  --muted-foreground: 240 10% 70%;
  --accent: 33 100% 50%;
  --accent-foreground: 0 0% 100%;
  --border: 237 40% 18%;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: hsl(var(--foreground));
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

a:hover {
  color: hsl(var(--secondary)) !important;
  text-decoration: none !important;
}
a {
  transition: color 0.3s;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.5098039216);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 5.4rem;
  padding: 0 1rem;
  transition: height 0.25s ease, padding 0.25s ease;
}
@media screen and (max-width: 400px) {
  .navbar-container {
    padding: 0;
  }
}

@media screen and (max-width: 400px) {
  .navbar.topContainer {
    padding: 0;
  }
}

.navbar-logo {
  height: 100%;
}
.navbar-logo img {
  height: 100%;
  max-height: 71px;
  transition: opacity 0.3s, max-height 0.25s ease;
}
@media screen and (max-width: 430px) {
  .navbar-logo img {
    max-height: 57px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 340px) {
  .navbar-logo img {
    max-height: 50px;
    margin-top: 10px;
  }
}

.navbar-nav {
  display: none;
  gap: 2rem;
  flex-direction: row !important;
}

@media screen and (max-width: 768px) {
  .navbar-nav {
    display: none !important;
  }
}
.navbar-nav a {
  font-weight: 500;
  color: hsl(var(--foreground)) !important;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 576px) {
  .navbar-actions {
    gap: 0 !important;
  }
}

.navbar-mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: hsl(var(--foreground));
}

.navbar-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.ajaxCartCount {
  position: absolute;
  top: -5px;
  right: -5px;
  background: hsl(var(--foreground));
  border-radius: 10px;
  width: 20px;
  height: 20px;
  font-size: 12px;
  color: white;
  text-align: center;
  padding: 1px 2px;
}

.cartButton {
  position: relative;
}

/* Desktop navbar */
@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
  }
  .navbar-actions {
    display: flex;
  }
  .navbar-mobile-toggle {
    display: none;
  }
  .navbar-mobile-menu {
    display: none;
  }
}
.navbar.navbar-scrolled .navbar-container {
  height: 4rem;
}
.navbar.navbar-scrolled .navbar-logo img {
  max-height: 52px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: hsl(var(--primary)/0.9);
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary)/0.9);
}

.btn-ghost {
  background-color: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  background-color: hsl(var(--muted));
}

.language-switcher {
  padding: 0.2rem 0rem;
}
.language-switcher:hover {
  background-color: hsl(var(--muted));
  border-radius: var(--radius);
}

.language-switcher button {
  background: none;
  border: 0;
  padding: 5px 10px;
}
@media screen and (max-width: 400px) {
  .language-switcher button {
    padding: 5px;
  }
}
.language-switcher button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-switcher .icon {
  width: 18px;
  height: 18px;
}

.language-switcher .dropdown {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: 2px;
  min-width: 80px;
  z-index: 1000;
  margin-left: -50px;
}

.language-switcher .dropdown span {
  display: block;
  padding: 5px 10px;
  cursor: pointer;
}

.language-switcher .dropdown span:hover {
  background: #f0f0f0;
}

.language-switcher.show .dropdown {
  display: block;
}

.searchButton {
  width: auto !important;
}

.searchWrapper {
  transition: margin-left 0.25s ease;
}
@media screen and (max-width: 300px) {
  .searchWrapper {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .searchWrapper {
    position: absolute !important;
    margin-left: -35px;
  }
  .searchWrapper.expanded {
    margin-left: -220px;
  }
}

.navbar-actions .searchButton {
  position: relative;
  overflow: hidden;
  gap: 6px;
}
.navbar-actions .searchButton.expanded {
  background: hsl(var(--muted));
  padding-right: 10px;
}

.navbar-actions .searchWrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar-actions .searchSuggest {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 320px;
  max-width: 480px;
  max-height: 420px;
  overflow: auto;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1200;
}
.navbar-actions .searchSuggest.show {
  display: block;
}
.navbar-actions .searchSuggest-content {
  padding: 12px;
}

.navbar-actions .searchButton .searchField {
  width: 0;
  opacity: 0;
  border: none;
  background: transparent;
  transition: width 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
  padding: 0;
  margin-left: 4px;
  color: inherit;
  outline: none;
}

.navbar-actions .searchButton .searchField.expanded {
  width: 180px;
  opacity: 1;
  padding: 2px 6px;
  background: hsl(var(--muted));
  border-radius: 4px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1 !important;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.hero-content .btn {
  animation: fadeIn 0.8s ease-out 0.4s backwards;
  background-color: white;
  color: hsl(var(--primary));
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.hero-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-nav-btn.prev {
  left: 1rem;
}

.hero-nav-btn.next {
  right: 1rem;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  width: 2rem;
  background-color: white;
}

.hero-carousel {
  position: relative;
}

.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
}

.hero-carousel .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 450px) {
  .hero-carousel {
    max-height: 260px;
  }
  .hero-carousel .hero-slide {
    min-height: 260px;
  }
  .hero-carousel .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-carousel .hero-content p {
    font-size: 1rem;
  }
}
/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.section-muted {
  background-color: hsl(var(--muted)/0.3);
}

/* ============================================
   CARDS & EVENTS
   ============================================ */
.card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

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

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-content {
  padding: 1.5rem;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
  border-top: 0 !important;
}

/* Event card gradients */
.gradient-pink-orange {
  background: linear-gradient(to bottom right, hsl(340, 82%, 52%), hsl(33, 100%, 50%));
}

.gradient-navy-purple {
  background: linear-gradient(to bottom right, hsl(237, 55%, 20%), hsl(280, 70%, 45%));
}

.gradient-purple-pink {
  background: linear-gradient(to bottom right, hsl(280, 70%, 45%), hsl(340, 82%, 52%));
}

.gradient-orange-pink {
  background: linear-gradient(to bottom right, hsl(33, 100%, 50%), hsl(340, 82%, 52%));
}

.gradient-navy-orange {
  background: linear-gradient(to bottom right, hsl(237, 55%, 20%), hsl(33, 100%, 50%));
}

/* ============================================
   GRID
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   BADGE
   ============================================ */
.badge {
  position: absolute;
  right: 1.5rem;
  bottom: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  font-size: 14px;
  border-radius: calc(var(--radius) - 2px);
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #fff !important;
  font-size: 16px;
  transition: color 0.3s;
}

.footer h3 {
  font-size: 18px;
  color: #fff !important;
}

.footer p {
  color: #fff !important;
}

.footer a:hover {
  color: hsl(var(--secondary));
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  transition: color 0.3s;
}

.footer-social a:hover {
  color: hsl(var(--secondary));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

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

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

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

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

.mb-8 {
  margin-bottom: 2rem;
}

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

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

/* ============================================
   ICONS
   ============================================ */
.icon {
  width: 1.6rem;
  height: 1.6rem;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */
@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .hero-content h1 {
    font-size: 4.5rem;
  }
  .hero-content p {
    font-size: 1.5rem;
  }
}
/* ============================================
   ACCESSIBILITY
   ============================================ */
button:focus-visible,
a:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================
   ADDITIONAL UTILITIES
   ============================================ */
.max-w-3xl {
  max-width: 48rem;
}

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

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brightness-invert {
  filter: brightness(0) invert(1);
}

.headerHolder {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsla(var(--background), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}

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