/* Custom Fonts */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* Root Variables */
:root {
  --primary-color: #2563eb;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --background-white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Minimalistic Design Styles */
.minimalistic-design {
  background-color: #f8fafc;
}

.minimalistic-header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.logo-minimal {
  height: 32px;
  width: auto;
}

.minimal-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.minimal-nav .nav-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.minimal-nav .nav-link.active,
.minimal-nav .nav-link:hover {
  color: #1e293b;
}

.minimalistic-main {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.main-event-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.event-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.event-main-image,
.story-main-video {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px -5px rgb(0 0 0 / 0.2);
}

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

.event-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.event-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 14px 0 rgb(59 130 246 / 0.2);
}

.btn-primary-blue:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgb(59 130 246 / 0.4), 0 4px 6px -4px rgb(59 130 246 / 0.1);
}

.btn-secondary-gray {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 14px 0 rgb(100 116 139 / 0.2);
}

.btn-secondary-gray:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgb(100 116 139 / 0.4), 0 4px 6px -4px rgb(100 116 139 / 0.1);
}

.btn-outline-gray {
  background: rgba(255, 255, 255, 0.9);
  color: #475569;
  border: 2px solid #e2e8f0;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.btn-outline-gray:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #64748b;
  color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgb(100 116 139 / 0.2), 0 4px 6px -4px rgb(100 116 139 / 0.1);
}

.event-description {
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
}

.story-preview-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
}

.story-preview-card {
  position: relative;
  width: 120px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.story-preview-card:hover {
  transform: scale(1.05);
}

.story-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 1rem 0.75rem 0.75rem;
}

.story-preview-title {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.minimalistic-footer {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0;
  text-align: center;
}

.footer-links-minimal {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links-minimal a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links-minimal a:hover {
  color: #1e293b;
}

.modal-content-minimal {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-content-minimal h3 {
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 600;
}

.termin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.termin-date {
  font-weight: 600;
  color: #1e293b;
}

.termin-location {
  color: #64748b;
  flex-grow: 1;
  margin-left: 1rem;
}

.termin-ticket .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 160px);
}

.content-wrapper-header,
.content-wrapper-main,
.content-wrapper-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.desktop-logo-container {
  display: none;
  text-align: center;
  margin-bottom: 2rem;
}

.logo-desktop {
  height: 48px;
  width: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo-desktop:hover {
  transform: scale(1.05);
}

.mobile-logo-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: none;
}

.logo-mobile {
  height: 32px;
  width: auto;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Story Slider Styles */
.slider-container {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-slider {
  position: relative;
  width: 300px;
  height: 533px; /* Instagram story aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--background-white);
}

.story-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.story-slide.active {
  opacity: 1;
}

.story-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Enhanced gradient for better text contrast */
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 70%) 70%, rgba(0, 0, 0, 0.95) 100%);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
}

.story-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  /* Enhanced text shadow for better contrast */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 4px 8px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 1);
  color: #ffffff !important;
  /* Additional contrast measure */
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
}

/* Progress Bars */
.story-progress {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}

.story-progress-group {
  flex: 1;
  display: flex;
  gap: 2px;
}

.progress-segment {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.progress-segment:hover {
  background: rgba(255, 255, 255, 0.5);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Navigation Buttons */
.story-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.story-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.story-nav.prev {
  left: -20px;
}

.story-nav.next {
  right: -20px;
}

.story-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.story-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* Enhanced story content area */
.story-content {
  position: relative;
  z-index: 5;
}

.story-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.story-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* CTA button styling */
.story-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.story-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Slide indicators for multi-slide stories */
.slide-indicators {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slide-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Content Container */
.content-container {
  padding: 2rem;
  display: flex;
  align-items: center;
}

.content-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.content-slide {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease-in-out;
  position: absolute;
  width: 100%;
}

.content-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgb(59 130 246 / 0.3), 0 4px 6px -4px rgb(59 130 246 / 0.1);
}

.btn-secondary {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  border: 1px solid transparent;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgb(100 116 139 / 0.3), 0 4px 6px -4px rgb(100 116 139 / 0.1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: #1e293b;
  border: 2px solid #e2e8f0;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgb(59 130 246 / 0.2), 0 4px 6px -4px rgb(59 130 246 / 0.1);
}

/* Content Text */
.content-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
}

.text-fade {
  opacity: 0.7;
}

.text-full {
  margin-top: 1rem;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  padding: 0;
  text-decoration: underline;
}

.btn-read-more:hover {
  color: #1d4ed8;
}

/* Footer */
.footer {
  background: var(--background-white);
  border-top: 1px solid var(--border-light);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: var(--background-white);
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-close:hover {
  color: var(--text-dark);
}

/* Event Calendar Table Styles */
.event-calendar-section {
  margin: 3rem 0;
  text-align: left;
}

.event-calendar-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.event-calendar-table {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.calendar-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

.calendar-row:last-child {
  border-bottom: none;
}

.calendar-row:hover {
  background-color: #f8fafc;
}

.calendar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  margin-right: 1.5rem;
}

.date-day {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-location {
  flex-grow: 1;
}

.location-city {
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.location-venue {
  color: #64748b;
  font-size: 0.875rem;
}

.calendar-ticket {
  margin-left: 1rem;
}

.ticket-icon {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  display: inline-block;
}

.ticket-icon:hover {
  transform: scale(1.1);
}

/* Story Thumbnails Gallery Styles */
.story-thumbnails-section {
  margin: 4rem 0 2rem;
  padding: 0 1rem;
}

.thumbnails-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.thumbnails-container::-webkit-scrollbar {
  height: 6px;
}

.thumbnails-container::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.story-thumbnail {
  position: relative;
  min-width: 120px;
  width: 120px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgb(0, 0, 0 / 0.1);
}

.story-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgb(0, 0, 0 / 0.2);
}

.story-thumbnail.active {
  border: 3px solid #3b82f6;
  transform: scale(1.05);
}

.thumbnail-image,
.thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 1rem 0.75rem 0.75rem;
}

.thumbnail-title {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  display: block;
  line-height: 1.2;
}

/* Story Buttons Overlay Styles */
.story-buttons-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 15;
}

.story-btn {
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.875rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.025em;
}

.story-btn-primary {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.story-btn-primary:hover {
  background: rgba(37, 99, 235, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.story-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.story-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* Ticket Popup Styles */
.modal-content-ticket {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  text-align: center;
}

.modal-content-ticket h3 {
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 600;
}

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

.btn-ticket-provider {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  font-size: 1rem;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 14px 0 rgb(59 130 246 / 0.3);
}

.btn-ticket-provider:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -3px rgb(59 130 246 / 0.4), 0 4px 6px -4px rgb(59 130 246 / 0.1);
}

/* Logo Menu Styles */
.logo-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 90vw);
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.logo-menu.show {
  right: 0;
}

.logo-menu a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s;
}

.logo-menu a:hover {
  background: #f9fafb;
  color: #111827;
  padding-left: 2.5rem;
}

.logo-menu a:first-child {
  border-top: 1px solid #f3f4f6;
}

/* Added menu overlay for better UX */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1999;
  transition: background-color 0.3s ease-in-out;
  pointer-events: none;
}

.menu-overlay.show {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .logo-menu {
    width: 100vw;
    right: -100vw;
  }

  .logo-menu a {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) {
  /* Desktop layout */
  .desktop-logo-container {
    display: block;
  }

  .mobile-logo-overlay {
    display: none;
  }

  .content-wrapper-main {
    padding: 0 4rem;
  }

  .event-content-center {
    margin-top: 4rem;
  }

  .story-buttons-overlay {
    bottom: 2rem;
  }

  .event-main-image,
  .story-main-video {
    max-width: 500px;
  }

  .desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .desktop-nav .nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
  }

  .desktop-nav .nav-link.active,
  .desktop-nav .nav-link:hover {
    color: #1e293b;
  }

  .desktop-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
  }

  .hashtag-navigation {
    bottom: 4rem;
    right: 4rem;
  }

  .logo-menu {
    width: 450px;
    right: -450px;
  }
}

@media (max-width: 480px) {
  .content-wrapper-header,
  .content-wrapper-main,
  .content-wrapper-footer {
    padding: 0 0.5rem;
  }

  .event-main-image,
  .story-main-video {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .event-content-center {
    padding: 0 0.5rem;
  }

  .story-thumbnails-section {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding: 0 0.5rem;
  }

  .event-calendar-table {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .event-main-title {
    font-size: 2rem;
  }

  .story-btn {
    width: 180px;
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }

  .menu-header {
    padding: 1rem;
  }

  .menu-section {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .menu-footer {
    padding: 1rem;
  }

  .menu-footer .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hashtag-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Variant Specific Styles */
.variant-1 {
  /* Minimalistic variant - already default */
}

.variant-2 .main-title {
  font-family: "Georgia", serif;
  color: #8b5a3c;
}

.variant-2 .btn-primary {
  background: #8b5a3c;
}

.variant-2 .btn-primary:hover {
  background: #6d4428;
}

.variant-3 .main-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.variant-3 .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
