/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap");

/* Reset and base styles */
:root {
  --primary-color: #b24fe0; /* Lighter purple for better contrast */
  --primary-color-dark: #9331c5; /* Original purple for backgrounds */
  --secondary-color: #ffffff;
  --accent-color: #b24fe0; /* Lighter purple for accents */
  --accent-hover: #c975e8; /* Even lighter for hover states */
  --dark-bg: #1a0f2e;
  --overlay-color: rgba(26, 15, 46, 0.85);
  --glow-color: rgba(147, 49, 197, 0.3);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --hover-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  overflow-x: hidden;
  background-color: var(--dark-bg);
}

/* Enhanced Focus Indicators for Accessibility */
*:focus {
  outline: 3px solid var(--accent-hover);
  outline-offset: 2px;
}

/* Improved focus for interactive elements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--accent-hover);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(178, 79, 224, 0.2);
}

/* Reduced motion preferences */
@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;
  }
}

/* Hero section styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.2) contrast(1.1);
  transition: transform 0.5s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5, 2, 10, 0.9) 0%,
    rgba(5, 2, 10, 0.8) 45%,
    rgba(147, 49, 197, 0.4) 100%
  );
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.text-content {
  max-width: 800px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.headline {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.headline-main {
  font-size: clamp(3rem, 6vw, 5rem);
  opacity: 0;
  transform: translateY(30px);
  color: #ffffff;
}

.headline-sub {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-color);
  opacity: 0;
  transform: translateY(30px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.event-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.location,
.date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: var(--secondary-color);
  padding: 0.8rem 1.2rem;
  background: rgba(147, 49, 197, 0.1);
  border-radius: 12px;
  transition: var(--hover-transition);
}

.location:hover,
.date:hover {
  background: rgba(147, 49, 197, 0.15);
  transform: translateY(-2px);
}

.icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: var(--hover-transition);
}

.location:hover .icon,
.date:hover .icon {
  transform: scale(1.1);
}

.countdown-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 1;
  perspective: 1000px;
}

.countdown-item {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(147, 49, 197, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  min-width: 140px;
  text-align: center;
  transition: var(--hover-transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
}

.countdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(147, 49, 197, 0.15) 0%,
    transparent 50%,
    rgba(147, 49, 197, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.countdown-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(147, 49, 197, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(147, 49, 197, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

.countdown-item:hover::before {
  opacity: 1;
}

.countdown-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
  transition: var(--hover-transition);
  text-shadow: 0 0 20px rgba(147, 49, 197, 0.4), 0 2px 8px rgba(0, 0, 0, 0.5);
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.05em;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--hover-transition);
  box-shadow: 0 4px 15px rgba(147, 49, 197, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(147, 49, 197, 0.4);
  background: var(--dark-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.logo-container {
  opacity: 0;
  transform: scale(0.9);
}

.logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0;
  cursor: pointer;
  transition: var(--hover-transition);
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
  transition: var(--hover-transition);
}

.scroll-indicator:hover .mouse {
  border-color: var(--accent-color);
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.5s ease infinite;
  transition: var(--hover-transition);
}

.scroll-indicator:hover .wheel {
  background-color: var(--accent-color);
}

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(45deg);
  margin-top: 8px;
}

@keyframes wheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* About Section */
.about-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1548 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.05;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about-content {
  padding-right: 2rem;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(147, 49, 197, 0.2);
  border: 1px solid rgba(147, 49, 197, 0.4);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.about-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-divider {
  display: none;
}

.about-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text strong,
.about-cta-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.about-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(147, 49, 197, 0.1);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 12px 12px 0;
}

/* About Slider Styles */
.about-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(147, 49, 197, 0.3);
}

.about-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slide-caption {
  background: linear-gradient(
    to top,
    rgba(26, 15, 46, 0.98),
    rgba(26, 15, 46, 0.8) 40%,
    rgba(26, 15, 46, 0)
  );
  width: 100%;
  padding: 4rem 150px 2rem 2rem;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}

.slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.slide-caption h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.slider-btn {
  position: absolute;
  bottom: 30px;
  background: rgba(26, 15, 46, 0.6);
  color: white;
  border: 1px solid rgba(147, 49, 197, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.prev-btn {
  right: 85px;
  left: auto;
}
.next-btn {
  right: 30px;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-slider-container {
    height: 400px;
    max-width: 100%;
  }

  .slide-caption h3 {
    font-size: 1.4rem;
  }

  .slide-caption p {
    font-size: 1rem;
  }
}

/* About Section Responsive */
@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-slider-container {
    height: 400px; /* Fixed height for mobile/tablet where stretching isn't possible */
    width: 100%;
    aspect-ratio: auto;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

  .about-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta-text {
    border-left: none;
    border-top: 4px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
  }

  .about-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-card {
    flex: 1 1 280px;
    max-width: 350px;
    flex-direction: column;
    text-align: center;
  }

  .feature-card:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 5rem 1.5rem;
  }

  .about-features {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card {
    max-width: none;
  }
}

/* Welcome Section */
.welcome-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1548 100%);
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.05;
}

.welcome-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem;
  background: rgba(147, 49, 197, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(147, 49, 197, 0.1);
  backdrop-filter: blur(10px);
}

.welcome-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.welcome-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.welcome-heading .word {
  display: inline-block;
  margin: 0 0.3em;
  opacity: 0;
  transform: translateY(30px);
}

.welcome-paragraph {
  font-size: 1.2rem;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
}

.welcome-paragraph:last-of-type {
  margin-bottom: 0;
}

/* Tickets Section */
.tickets-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1548 100%);
  position: relative;
  overflow: hidden;
}

.tickets-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.05;
}

.tickets-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tickets-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding: 2rem;
  background: rgba(147, 49, 197, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(147, 49, 197, 0.1);
}

.tickets-header::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.tickets-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.tickets-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.package-card {
  background: rgba(147, 49, 197, 0.08);
  border: 1px solid rgba(147, 49, 197, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(147, 49, 197, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.featured {
  background: linear-gradient(
    135deg,
    rgba(147, 49, 197, 0.15) 0%,
    rgba(147, 49, 197, 0.08) 100%
  );
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(147, 49, 197, 0.15);
}

.package-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(147, 49, 197, 0.15);
  position: relative;
}

.package-header h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.early-bird-offer {
  float: right;
  margin-top: -1.5rem;
  margin-right: -1.5rem;
  margin-left: 1rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 0 16px;
  box-shadow: 0 4px 15px rgba(147, 49, 197, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
  flex-grow: 1;
}

.package-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.6;
}

.package-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: auto;
  padding: 0.5rem;
  flex-shrink: 0;
}

.price-option {
  background: rgba(147, 49, 197, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 49, 197, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
}

.price-option.single {
  grid-column: 1 / -1;
  max-width: 300px;
  margin: 0 auto;
}

.price-label {
  display: block;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.price-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.old-price {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-weight: 500;
  text-shadow: none;
}

.price-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 200px;
  text-align: center;
}

.price-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.price-button:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(147, 49, 197, 0.2);
}

.price-button:hover::before {
  transform: translateX(100%);
}

/* Golf Package */
.golf-package-wrapper {
  width: 100%;
  margin-bottom: 2.5rem;
}

.golf-card {
  background: linear-gradient(
    135deg,
    rgba(147, 49, 197, 0.12) 0%,
    rgba(147, 49, 197, 0.05) 100%
  );
  border: 2px solid rgba(147, 49, 197, 0.3);
  position: relative;
  overflow: hidden;
}

.golf-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(147, 49, 197, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.golf-card .package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.golf-badge {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(147, 49, 197, 0.3);
}

.golf-details {
  position: relative;
  z-index: 2;
}

.golf-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(147, 49, 197, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(147, 49, 197, 0.15);
}

.golf-date,
.golf-time {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.golf-features {
  margin-bottom: 2rem;
}

.golf-features li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.golf-cta {
  text-align: center;
  margin-top: 2rem;
}

.golf-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a847d9 100%);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(147, 49, 197, 0.3);
  letter-spacing: 0.5px;
}

.golf-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.golf-button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(147, 49, 197, 0.4);
}

.golf-button:hover::before {
  transform: translateX(100%);
}

.golf-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.golf-button:hover svg {
  transform: translateX(4px);
}

/* Contact Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 1rem;
  position: relative;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.additional-stay,
.awards-option {
  display: flex;
  align-items: stretch;
}

.package-card.additional-night,
.package-card.awards-only {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(147, 49, 197, 0.12) 0%,
    rgba(147, 49, 197, 0.05) 100%
  );
}

.contact-section {
  background: linear-gradient(
    135deg,
    rgba(147, 49, 197, 0.15) 0%,
    rgba(147, 49, 197, 0.08) 100%
  );
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(147, 49, 197, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(147, 49, 197, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.contact-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.contact-button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Location Section */
.location-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1548 100%);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.05;
}

.location-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.location-card {
  background: rgba(147, 49, 197, 0.08);
  border: 1px solid rgba(147, 49, 197, 0.15);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  background: rgba(147, 49, 197, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(147, 49, 197, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.card-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--secondary-color);
  opacity: 0.9;
  font-size: 1.1rem;
}

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

.highlight-item {
  background: rgba(147, 49, 197, 0.08);
  border: 1px solid rgba(147, 49, 197, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  background: rgba(147, 49, 197, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.highlight-item p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin: 0;
}

.transport-info {
  background: rgba(147, 49, 197, 0.08);
  border: 1px solid rgba(147, 49, 197, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.transport-info p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.map-container {
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(147, 49, 197, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Sponsors Section */
.combined-sponsors-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1548 100%);
  position: relative;
  overflow: hidden;
}

.combined-sponsors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(147, 49, 197, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 49, 197, 0.08) 0%,
      transparent 50%
    );
  opacity: 0.7;
}

.sponsors-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  padding: 3rem 2rem;
  background: rgba(147, 49, 197, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(147, 49, 197, 0.1);
  backdrop-filter: blur(10px);
}

.sponsors-header::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.sponsors-header h2 {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a847d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sponsors-header p {
  font-size: 1.3rem;
  color: var(--secondary-color);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.header-decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.header-decorative-line span {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  flex: 1;
  max-width: 120px;
}

.header-decorative-line svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.sponsor-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
  padding: 2rem 1rem;
}

.sponsor-logo-card {
  background: rgba(147, 49, 197, 0.08);
  border: 1px solid rgba(147, 49, 197, 0.15);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.sponsor-logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(147, 49, 197, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sponsor-logo-card:hover {
  transform: translateY(-8px);
  background: rgba(147, 49, 197, 0.12);
  border-color: rgba(147, 49, 197, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sponsor-logo-card:hover::before {
  opacity: 1;
}

.logo-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sponsor-logo-card:hover .logo-wrapper {
  transform: scale(1.05);
}

.sponsor-logo {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Sponsorship Card */
.sponsorship-card {
  background: linear-gradient(
    135deg,
    rgba(26, 15, 46, 0.95) 0%,
    rgba(147, 49, 197, 0.1) 100%
  );
  border: 1px solid rgba(147, 49, 197, 0.2);
  border-radius: 32px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(147, 49, 197, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 4rem 0;
}

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

.sponsorship-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sponsorship-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sponsorship-badge {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

.sponsorship-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.sponsorship-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: rgba(147, 49, 197, 0.1);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 200px;
  justify-content: center;
}

.sponsorship-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.sponsorship-cta:hover {
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(147, 49, 197, 0.4);
  background: var(--primary-color);
}

.sponsorship-cta:hover::before {
  transform: translateX(0);
}

.sponsorship-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s ease;
}

.sponsorship-cta:hover svg {
  transform: translateX(5px);
}

.sponsorship-overlay {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(147, 49, 197, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 5rem 0 4rem;
}

.testimonial-card {
  height: 100%;
  min-height: 350px;
  background: rgba(147, 49, 197, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 49, 197, 0.1);
  border-radius: 30px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 49, 197, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 0.1;
}

.quote-icon svg {
  width: 50px;
  height: 50px;
  color: var(--primary-color);
}

blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--secondary-color);
  margin: 1rem 0 2rem;
  position: relative;
  font-weight: 300;
  font-style: italic;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(147, 49, 197, 0.1);
  z-index: 1;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  transition: all 0.5s ease;
  position: relative;
}

.author-image.icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 49, 197, 0.1);
  color: var(--primary-color);
  padding: 12px;
  border: 1px solid rgba(147, 49, 197, 0.2);
}

.author-image.icon-placeholder svg {
  width: 100%;
  height: 100%;
}

.testimonial-card:hover .author-image {
  transform: translateY(-3px);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.author-name {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.author-company {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Terms Notice */
.terms-notice {
  text-align: center;
  padding: 2rem;
  background: rgba(147, 49, 197, 0.03);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.terms-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  transform: translateX(-50%);
}

.terms-notice p {
  font-size: 1rem;
  color: var(--secondary-color);
  opacity: 0.8;
  margin: 0;
}

.terms-notice a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  font-weight: 500;
}

.terms-notice a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.terms-notice a:hover {
  color: #a847d9;
}

.terms-notice a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

/* Responsive styles */
@media (max-width: 1200px) {
  .content-wrapper {
    gap: 2rem;
  }

  .logo {
    max-width: 250px;
  }
}

@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-content {
    margin: 0 auto;
  }

  .event-details {
    justify-content: center;
  }

  .countdown-container {
    justify-content: center;
  }

  .logo-container {
    display: none;
  }

  .packages-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* Accessibility: Ensure minimum touch target sizes */
@media (max-width: 768px) {
  /* Minimum 44x44px touch targets */
  .cta-button,
  .price-button,
  .golf-button,
  .contact-button,
  .sponsorship-cta {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
  }

  /* Improve link spacing */
  .package-features li {
    padding: 8px 0;
  }

  /* Better spacing for interactive elements */
  .countdown-item {
    min-height: 88px;
    min-width: 88px;
  }
}

/* Mobile First - Extra Small Devices (phones, 320px to 575px) */
@media (max-width: 575px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .content-wrapper {
    padding: 0 0.5rem;
  }

  .tagline {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }

  .headline {
    margin-bottom: 1.5rem;
  }

  .headline-main {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
  }

  .headline-sub {
    font-size: clamp(1.6rem, 7vw, 2.8rem) !important;
  }

  .event-details {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: center;
  }

  .location,
  .date {
    width: 100%;
    max-width: 300px;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    justify-content: center;
  }

  .countdown-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 360px;
    margin: 0 auto 2rem;
    padding: 0;
  }

  .countdown-item {
    padding: 1.2rem 0.8rem;
    min-width: auto;
    border-radius: 16px;
  }

  .countdown-number {
    font-size: clamp(2.5rem, 8vw, 3rem);
    margin-bottom: 0.5rem;
  }

  .countdown-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 14px 28px;
  }

  /* Ensure all buttons have adequate touch targets */
  .price-button,
  .golf-button,
  .contact-button {
    min-height: 48px;
    padding: 12px 24px;
  }

  /* Tickets Section */
  .tickets-section {
    padding: 3rem 1rem;
  }

  .tickets-header h2 {
    font-size: 2rem;
  }

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

  .package-pricing {
    grid-template-columns: 1fr;
  }

  .golf-card .package-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .golf-info {
    flex-direction: column;
    gap: 0.8rem;
  }

  .golf-button {
    width: 100%;
  }

  /* Location Section */
  .location-section {
    padding: 3rem 1rem;
  }

  .location-info h2 {
    font-size: 2rem;
  }

  .location-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .map-container {
    min-height: 300px;
  }

  /* Sponsors Section */
  .combined-sponsors-section {
    padding: 3rem 1rem;
  }

  .sponsors-header h2 {
    font-size: 2rem;
  }

  .sponsor-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sponsorship-card {
    padding: 1.5rem;
  }

  .sponsorship-header {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    min-height: 200px;
  }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .cta-button,
  .price-button,
  .golf-button,
  .contact-button {
    min-height: 48px;
    padding: 1rem 2rem;
  }

  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Accessibility: Ensure minimum touch target sizes */
@media (max-width: 768px) {
  /* Minimum 44x44px touch targets */
  .cta-button,
  .price-button,
  .golf-button,
  .contact-button,
  .sponsorship-cta {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
  }

  /* Improve link spacing */
  .package-features li {
    padding: 8px 0 8px 2rem;
  }

  .package-features li::before {
    top: 8px;
  }

  /* Better spacing for interactive elements */
  .countdown-item {
    min-height: 88px;
    min-width: 88px;
  }
}

/* Mobile First - Extra Small Devices (phones, 320px to 575px) */
@media (max-width: 575px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .content-wrapper {
    padding: 0 0.5rem;
  }

  .tagline {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .headline-main {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
  }

  .headline-sub {
    font-size: clamp(1.6rem, 7vw, 2.8rem) !important;
  }

  .event-details {
    flex-direction: column;
    gap: 1rem;
  }

  .location, .date {
    width: 100%;
    max-width: 300px;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .countdown-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 380px;
    margin: 0 auto 2rem;
  }

  .countdown-item {
    padding: 1.2rem 0.8rem;
    min-width: auto;
    border-radius: 16px;
  }

  .countdown-number {
    font-size: clamp(2.5rem, 8vw, 3rem);
    margin-bottom: 0.5rem;
  }

  .countdown-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 14px 28px;
  }

  /* Ensure all buttons have adequate touch targets */
  .price-button,
  .golf-button,
  .contact-button {
    min-height: 48px;
    padding: 12px 24px;
  }

  /* Tickets Section */
  .tickets-section {
    padding: 3rem 1rem;
  }

  .tickets-header h2 {
    font-size: 2rem;
  }

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

  .package-card {
    padding: 2rem 1.5rem;
  }

  .package-header {
    margin-bottom: 1.5rem;
  }

  .package-features {
    margin-bottom: 2rem;
  }

  .package-features li {
    font-size: 1rem;
    margin-bottom: 0.85rem;
    padding-left: 2.25rem;
    line-height: 1.7;
  }

  .package-features li::before {
    font-size: 1.1rem;
    line-height: 1.7;
    top: 0.1rem;
  }

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

  .price-option {
    padding: 1.25rem;
    min-height: 160px;
  }

  .price-label {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .price-amount {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }

  .price-button {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }

  .golf-card .package-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .golf-info {
    flex-direction: column;
    gap: 0.8rem;
  }

  .golf-button {
    width: 100%;
  }

  /* Location Section */
  .location-section {
    padding: 3rem 1rem;
  }

  .location-info h2 {
    font-size: 2rem;
  }

  .location-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .map-container {
    min-height: 300px;
  }

  /* Sponsors Section */
  .combined-sponsors-section {
    padding: 3rem 1rem;
  }

  .sponsors-header h2 {
    font-size: 2rem;
  }

  .sponsor-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sponsorship-card {
    padding: 1.5rem;
  }

  .sponsorship-header {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    min-height: 200px;
  }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .cta-button,
  .price-button,
  .golf-button,
  .contact-button {
    min-height: 48px;
    padding: 1rem 2rem;
  }

  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* cisi.css - Theme-matched components */

:root {
  --cisi-primary: #b24fe0;
  --cisi-dark-bg: #1a0f2e;
  --cisi-text: #ffffff;
  --cisi-overlay: rgba(26, 15, 46, 0.9);
  --cisi-border: rgba(147, 49, 197, 0.5);
}

/* ============================================
 BUTTON LOADING STATE
 ============================================ */

.price-button.loading {
  pointer-events: none;
  opacity: 0.8;
  position: relative;
}

.button-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-left-color: currentColor;
  border-radius: 50%;
  animation: buttonSpin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes buttonSpin {
  to {
      transform: rotate(360deg);
  }
}

.button-text {
  vertical-align: middle;
}

/* ============================================
 TOAST NOTIFICATION SYSTEM
 ============================================ */

#cisi-toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 90%;
  width: 500px;
  pointer-events: none;
}

.cisi-toast {
  background: radial-gradient(circle at top right, #2a1548, #1a0f2e);
  border: 1px solid var(--cisi-border);
  border-left: 4px solid #ff4b4b;
  box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(147, 49, 197, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  pointer-events: all;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
      transform: translateY(100px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideDown {
  from {
      transform: translateY(0);
      opacity: 1;
  }
  to {
      transform: translateY(100px);
      opacity: 0;
  }
}

.toast-icon {
  width: 24px;
  height: 24px;
  color: #ff4b4b;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 100%;
  height: 100%;
}

.toast-content {
  flex: 1;
}

.toast-message {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.toast-close {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.toast-close svg {
  width: 18px;
  height: 18px;
}

/* ============================================
 RESPONSIVE ADJUSTMENTS
 ============================================ */

@media (max-width: 768px) {
  #cisi-toast-container {
      width: calc(100% - 40px);
      bottom: 15px;
  }
  
  .cisi-toast {
      padding: 0.875rem 1rem;
  }
  
  .toast-message {
      font-size: 0.9rem;
  }
}
/* add cisi style */
footer#footerWrapper {
  display: none;
}
/* API Call */
.cisiWaiting {
  display: none;
}

.cisiShowWaiting .cisiWaiting {
  display: block;
}

.cisiMessage {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  color: var(--dark-bg);
  background: rgba(178, 79, 224, 0.15);
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(178, 79, 224, 0.3);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(26, 15, 46, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.cisiShowSuccess .cisiMessage {
  display: inline-flex;
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 8px 32px rgba(178, 79, 224, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cisiShowWarning .cisiMessage {
  display: inline-flex;
  background: rgba(205, 170, 90, 0.15);
  border-color: rgba(205, 170, 90, 0.6);
  color: white;
  box-shadow: 0 8px 32px rgba(205, 170, 90, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cisiShowError .cisiMessage {
  display: inline-flex;
  background: rgba(180, 95, 85, 0.15);
  border-color: rgba(180, 95, 85, 0.6);
  color: var(--dark-bg);
  box-shadow: 0 8px 32px rgba(180, 95, 85, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cisiMessage .message {
  padding-right: 1.5rem;
}

.cisiMessage a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 15, 46, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 2px;
}

.cisiMessage a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.cisiMessage a:hover {
  border-bottom-color: transparent;
  color: var(--primary-color);
}

.cisiMessage a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

#fullscreenWaiting {
  #fullscreenContainer {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 15, 46, 0.85);
    backdrop-filter: blur(8px);
    background-image: linear-gradient(
        120deg,
        rgba(178, 79, 224, 0.1) 0%,
        transparent 100%
      ),
      radial-gradient(
        circle at center,
        transparent 0%,
        rgba(26, 15, 46, 0.95) 100%
      );
  }

  .waitingSpinner {
    position: relative;
    width: 120px;
    height: 120px;
  }

  .spinnerCircle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    animation: crystalSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 4px 15px rgba(178, 79, 224, 0.2);

    &::before {
      content: "";
      position: absolute;
      top: -8px;
      left: 50%;
      width: 16px;
      height: 16px;
      background: var(--primary-color);
      border-radius: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 10px rgba(178, 79, 224, 0.4);
    }

    &:nth-child(1) {
      border-top-color: var(--primary-color);
      border-right-color: var(--primary-color);
      opacity: 0.9;
    }

    &:nth-child(2) {
      width: 80%;
      height: 80%;
      top: 10%;
      left: 10%;
      border-top-color: var(--primary-color);
      border-left-color: var(--primary-color);
      animation-duration: 1.8s;
      animation-direction: reverse;
      opacity: 0.7;
    }

    &:nth-child(3) {
      width: 60%;
      height: 60%;
      top: 20%;
      left: 20%;
      border-top-color: var(--primary-color);
      border-bottom-color: var(--primary-color);
      animation-duration: 2.4s;
      opacity: 0.5;
    }
  }

  @keyframes crystalSpin {
    0% {
      transform: rotate(0deg) scale(1);
      filter: brightness(1);
    }
    50% {
      transform: rotate(180deg) scale(1.05);
      filter: brightness(1.2);
    }
    100% {
      transform: rotate(360deg) scale(1);
      filter: brightness(1);
    }
  }
}

#fullscreenWaiting > .waitingSpinner {
  display: block;
  position: fixed;
  z-index: 2001;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  animation: crystalSpin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 0 0 30px rgba(178, 79, 224, 0.3),
    inset 0 0 20px rgba(178, 79, 224, 0.2);
  background: radial-gradient(
    circle at center,
    rgba(178, 79, 224, 0.1),
    transparent
  );
}

#fullscreenWaiting > .waitingSpinner::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--primary-color);
  border-left-color: var(--primary-color);
  animation: crystalSpin 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  opacity: 0.7;
  box-shadow: inset 0 0 15px rgba(178, 79, 224, 0.15);
}

#fullscreenWaiting > .waitingSpinner::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  animation: crystalSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite
    reverse;
  opacity: 0.4;
  box-shadow: inset 0 0 10px rgba(178, 79, 224, 0.1);
}

.waitingSpinner {
  border: 4px solid rgba(178, 79, 224, 0.1);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: crystalSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 0 4px 15px rgba(178, 79, 224, 0.2),
    inset 0 0 10px rgba(178, 79, 224, 0.1);
  background: radial-gradient(
    circle at center,
    rgba(178, 79, 224, 0.05),
    transparent
  );
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#fullscreenMessage {
  position: fixed;
  z-index: 2002;
  bottom: 45px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 90%;
  max-width: 90%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  #fullscreenMessage {
    min-width: 80%;
  }
}

@media (min-width: 992px) {
  #fullscreenMessage {
    min-width: 50%;
  }
}

.cisiPopup.cisiAlert,
.cisiPopup.cisiConfirm {
  z-index: 2002;
}

#fullscreenMessageClose {
  background: var(--dark-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

#fullscreenMessageClose:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(178, 79, 224, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Help Section Styles */
.help {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(178, 79, 224, 0.1) 100%
  );
  overflow: hidden;
  padding: 4rem 0;
  transition: transform 0.3s ease;
  position: relative;
}

.help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(178, 79, 224, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(178, 79, 224, 0.05) 0%,
      transparent 50%
    );
  opacity: 0.8;
  pointer-events: none;
}

.help-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 4rem;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.help-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--dark-bg);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.help-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(178, 79, 224, 0.2),
    0 8px 16px rgba(178, 79, 224, 0.1);
}

.help-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}
