/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

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

/* Global Styles */
body {
  background-color: #050201;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 0 40px;
  width: calc(100% - 80px);
  box-sizing: border-box;
}

.btn,
.btn-landing {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13.91px 20px;
  position: relative;
  border-radius: 10px;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  background: linear-gradient(0deg,
      rgba(255, 240, 218, 1) 1%,
      rgba(148, 100, 30, 1) 4%,
      rgba(255, 242, 219, 1) 83%,
      rgba(234, 200, 133, 1) 94%,
      rgba(251, 245, 209, 1) 98%,
      rgba(189, 154, 75, 1) 100%,
      rgba(236, 216, 163, 1) 100%);
  color: #050201;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn-landing:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 240, 218, 0.3);
}

.btn-icon {
  margin-left: 5px;
}

.btn-login {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13.91px 20px;
  position: relative;
  border-radius: 10px;
  background: transparent;
  border: 2px solid #C9A04C;
  color: #C9A04C;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-login:hover {
  background: rgba(201, 160, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 160, 76, 0.3);
}

.divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 63px 0;
  width: 703px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  max-width: 1280px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(5, 2, 1, 0.9);
  backdrop-filter: blur(10px);
}



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

.logo-icon {
  width: 40px;
  height: 40px;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-icon:hover {
  opacity: 0.8;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 88px 0;
  min-height: 751px;
  position: relative;
  padding-top: 100px;
}

.hero-content {
  width: 679px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  width: 303px;
  height: 563px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero p {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

/* Description */
.description {
  text-align: center;
  margin: 60px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description p {
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* Features */
.features {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  text-align: center;
  gap: 20px;
}

.feature {
  width: 387px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #161616;
  border-radius: 20px;
  padding: 40px;
}

.feature-icon {
  color: #C9A04C;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-title {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 400;
  width: 100%;
  color: #FFFFFF;
}

.feature-description {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto;
}

/* How It Works */
.how-it-works {
  margin: 80px 0;
  width: 100%;
}

.how-it-works h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 27px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  position: relative;
  display: flex;
  width: 100%;
  height: 190px;
  background-color: #161616;
  border-radius: 20px;
  overflow: hidden;
}

.step-image {
  width: 320px;
  background-color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 69px;
}

.step-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.step-content {
  padding: 49px;
  flex: 1;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
}

.step-content p {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 1.4;
}

/* Hot Tickets Section */
.hot-tickets {
  margin: 80px 0;
}

.hot-tickets h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.ticket-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ticket-slider::-webkit-scrollbar {
  display: none;
}

.ticket-card {
  width: 504px;
  background-color: #161616;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

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

.ticket-info {
  padding: 18px;
}

.ticket-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #FFFFFF;
}

.ticket-meta {
  display: flex;
  gap: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #8C908C;
}

.ticket-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticket-meta span::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
}

.ticket-meta span:first-child::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C9A04C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

.ticket-meta span:last-child::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C9A04C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

/* CTA */
.cta {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  margin: 80px auto;
  background-color: #161616;
  border-radius: 20px;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.cta p {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  font-family: 'Helvetica', Arial, sans-serif;
  max-width: 800px;
}

/* Testimonials */
.testimonials {
  margin: 80px 0;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 247px;
  padding: 20px;
  gap: 20px;
  background-color: #161616;
  border-radius: 20px;
  flex: 1;
}

.testimonial-user {
  font-family: 'Helvetica-Bold', Helvetica;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.testimonial-location {
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: 400;
  color: #8C908C;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.testimonial-rating {
  color: #C9A04C;
  margin-bottom: 15px;
  display: flex;
  gap: 8px;
}

.testimonial-rating i {
  width: 24px;
  height: 24px;
}

.testimonial-content {
  font-family: 'Helvetica-Light', Helvetica;
  font-weight: 300;
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19.2px;
}

/* Footer */
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 29px 20px;
  padding: 35px 40px;
  background-color: #050201;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  margin-top: 80px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.footer-top .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-top .logo>div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-top .logo>div>div:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 18.7px;
  color: #FFFFFF;
}

.footer-description {
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 28.8px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: 400;
  color: #8C908C;
  font-size: 14px;
}

.footer-links a {
  color: #8D908D;
  text-decoration: underline;
  margin-left: 15px;
  font-size: 14px;
  line-height: 30px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

/* Dashboard Styles */
.dashboard-container {
  padding-top: 120px;
  min-height: 100vh;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.dashboard-header p {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.dashboard-content {
  max-width: 1200px;
  margin: 0 auto;
}

.chart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #161616;
  border-radius: 12px;
  border: 1px solid rgba(201, 160, 76, 0.2);
}

.calendar-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-month-nav {
  background: transparent;
  border: 2px solid #C9A04C;
  color: #C9A04C;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-month-nav:hover {
  background: rgba(201, 160, 76, 0.1);
  transform: translateY(-1px);
}

#current-month-year {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  min-width: 200px;
  text-align: center;
}

.config-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.config-option label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.config-option input {
  background: #050201;
  border: 1px solid rgba(201, 160, 76, 0.3);
  color: #FFFFFF;
  padding: 6px 10px;
  border-radius: 6px;
  width: 60px;
  text-align: center;
}

.config-option input:focus {
  outline: none;
  border-color: #C9A04C;
  box-shadow: 0 0 0 2px rgba(201, 160, 76, 0.2);
}

.chart-container {
  background-color: #161616;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  border: 1px solid rgba(201, 160, 76, 0.2);
  position: relative;
  min-height: 500px;
}

#interests-chart {
  width: 100%;
  height: 500px;
}

.calendar-highlights-legend {
  background-color: #161616;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  border: 1px solid rgba(201, 160, 76, 0.2);
}

.calendar-highlights-legend h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.legend-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.legend-symbol {
  width: 30px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.overlay-symbol {
  background-color: rgba(76, 175, 80, 0.2);
  border: 2px solid rgba(56, 142, 60, 1);
}

.event-symbol {
  background-color: transparent;
  border: 2px solid rgba(201, 160, 76, 1);
}

.count-symbol {
  background-color: rgba(201, 160, 76, 1);
  color: #050201;
  font-weight: bold;
}

.legend-item span {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* Dashboard Profile Section - matching auth.css styling */
.dashboard-content .profile-section {
  background-color: #161616;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dashboard-content .profile-section h2 {
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-content .preferences-summary {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
}

.dashboard-content .preferences-summary p {
  color: #FFFFFF;
  margin-bottom: 15px;
}

.dashboard-content .date-range-info {
  background-color: #222;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #C9A04C;
}

.dashboard-content .date-range-info h4 {
  margin: 0 0 10px 0;
  color: #C9A04C;
  font-size: 16px;
  font-weight: 600;
}

.dashboard-content .date-range-info p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.dashboard-content .preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.dashboard-content .preference-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
}

.dashboard-content .preference-category h4 {
  color: #C9A04C;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dashboard-content .preference-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-content .preference-list li {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Add extra spacing for dashboard action buttons */
.dashboard-content .action-buttons {
  margin-top: 30px;
}

/* Override button styles for dashboard pages - match login button styling */
header .btn-primary,
header .btn-secondary,
header .btn-outline,
.dashboard-content .btn-primary,
.dashboard-content .btn-secondary {
  background: transparent !important;
  border: 2px solid #C9A04C !important;
  color: #C9A04C !important;
  text-shadow: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  height: 50px;
  padding: 13.91px 20px !important;
}

header .btn-primary:hover,
header .btn-secondary:hover,
header .btn-outline:hover,
.dashboard-content .btn-primary:hover,
.dashboard-content .btn-secondary:hover {
  background: rgba(201, 160, 76, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 160, 76, 0.3);
}

/* Override landing page header button to match login button */
header .btn:not(.btn-login):not(.btn-primary):not(.btn-secondary):not(.btn-outline) {
  background: transparent !important;
  border: 2px solid #C9A04C !important;
  color: #C9A04C !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  height: 50px;
  padding: 13.91px 20px !important;
}

header .btn:not(.btn-login):not(.btn-primary):not(.btn-secondary):not(.btn-outline):hover {
  background: rgba(201, 160, 76, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 160, 76, 0.3);
}

.btn-primary {
  background: transparent !important;
  border: 2px solid #C9A04C !important;
  color: #C9A04C !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  height: 50px;
  padding: 13.91px 20px !important;
}

.btn-primary:hover {
  background: rgba(201, 160, 76, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 160, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #C9A04C;
  color: #050201;
}

.btn-secondary:hover {
  background: rgba(201, 160, 76, 0.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid #C9A04C;
  color: #050201;
}

.btn-outline:hover {
  background: rgba(201, 160, 76, 0.1);
}

.no-events-message {
  text-align: center;
  padding: 60px 40px;
  background-color: #161616;
  border-radius: 12px;
  border: 1px solid rgba(201, 160, 76, 0.2);
}

.no-events-message h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.no-events-message p {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.no-events-message ul {
  text-align: left;
  max-width: 500px;
  margin: 20px auto;
  color: rgba(255, 255, 255, 0.7);
}

.no-events-message li {
  margin-bottom: 8px;
}

.suggestions {
  margin: 30px 0;
}

.suggestions h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #C9A04C;
  margin-bottom: 15px;
}

/* Responsive Dashboard Styles */
@media (max-width: 992px) {
  .chart-controls {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  
  .calendar-navigation {
    justify-content: center;
  }
  
  .preferences-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    padding-top: 80px;
  }
  
  .dashboard-header h1 {
    font-size: 28px;
  }
  
  .chart-container {
    padding: 15px;
  }
  
  #interests-chart {
    height: 400px;
  }
  
  .calendar-navigation {
    flex-direction: column;
    gap: 10px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Event Details Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #161616;
  border: 2px solid #C9A04C;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(201, 160, 76, 0.3);
  background-color: rgba(201, 160, 76, 0.1);
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #C9A04C;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: rgba(201, 160, 76, 0.2);
  transform: scale(1.1);
}

.modal-body {
  padding: 25px;
  color: #FFFFFF;
}

.modal-event-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #C9A04C;
  margin-bottom: 15px;
  line-height: 1.3;
}

.modal-event-details {
  margin-bottom: 25px;
}

.modal-event-details p {
  margin: 8px 0;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.modal-event-details strong {
  color: #C9A04C;
  font-weight: 600;
}

.modal-section {
  margin-bottom: 25px;
}

.modal-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #C9A04C;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(201, 160, 76, 0.3);
  padding-bottom: 8px;
}

.modal-member-list,
.modal-reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-member-list li,
.modal-reason-list li {
  padding: 8px 0;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.modal-member-list li:last-child,
.modal-reason-list li:last-child {
  border-bottom: none;
}

.modal-member-list li::before {
  content: '👤';
  margin-right: 10px;
  font-size: 14px;
}

.modal-reason-list li::before {
  content: '✓';
  margin-right: 10px;
  color: #C9A04C;
  font-weight: bold;
  font-size: 16px;
}

.modal-member-name {
  font-weight: 600;
  color: #FFFFFF;
}

.modal-member-reason {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-left: 8px;
}

.modal-multiple-events {
  border-top: 1px solid rgba(201, 160, 76, 0.3);
  margin-top: 20px;
  padding-top: 20px;
}

.modal-event-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #C9A04C;
}

.modal-event-item:last-child {
  margin-bottom: 0;
}

.modal-event-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #C9A04C;
  margin-bottom: 10px;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-event-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 12px 15px;
  }
  
  .modal-header h2 {
    font-size: 18px;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .modal-event-title {
    font-size: 20px;
  }
  
  .modal-event-details p {
    font-size: 14px;
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .cta {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 120px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-image {
    position: relative;
    width: 100%;
    margin-top: 40px;
    justify-content: center;
  }

  .description p {
    font-size: 28px;
  }

  .features {
    flex-wrap: wrap;
  }

  .feature {
    width: calc(50% - 10px);
  }

  .ticket-card {
    width: 400px;
  }
}

@media (max-width: 768px) {
  /* Fix header actions alignment on mobile */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  .feature {
    width: 100%;
  }

  .step {
    flex-direction: column;
    height: auto;
  }

  .step-image {
    width: 100%;
    padding: 20px;
  }

  .step-content {
    padding: 20px;
  }

  .step-content h3 {
    font-size: 28px;
  }

  .step-content p {
    font-size: 18px;
  }

  .testimonial-cards {
    flex-direction: column;
  }

  .ticket-card {
    width: 100%;
  }

  .ticket-card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  /* Ensure header actions maintain right alignment on small mobile */
  .header-actions {
    gap: 4px;
    display: grid;
  }

  .container {
    padding: 0 0;
    width: fit-content;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    height: 40px;
    padding: 10px 15px;
  }

  .description p {
    font-size: 20px;
  }

  .footer-description {
    font-size: 18px;
  }
}
