/* Landing Page Layout Styles */

.landing-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Background Pattern wrapper: centered on the right side of the screen on desktop */
.pattern-bg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.pattern-bg-wrapper .pattern-bg {
  position: absolute;
  width: 125%;
  max-width: 950px;
  height: auto;
  right: -15%;
  bottom: -15%;
  object-fit: contain;
  opacity: 1;
}

/* Main Container: Flexbox row aligning details to the left on desktop */
.landing-page .container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 100px;
  min-height: 100vh;
  align-items: center;
  justify-content: flex-start;
}

/* Screen reader only utility class for SEO headings */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Left details section: width matches original 458px layout, centered text alignment */
.details-section {
  width: 100%;
  max-width: 458px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 3;
}

.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.branding .live-logo {
  width: 100%;
  max-width: 407px;
  height: auto;
  display: block;
}

.branding .mega-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin-top: 18px;
}

/* CTA buttons and links */
.action-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.btn {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  width: 160px;
  background-color: var(--color-bg-dark);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn .btn-text {
  font-family: var(--font-anek-bold);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1;
  margin-top: 4px;
  transition: color 0.3s ease;
}

/* GET TICKETS (Purple Theme) */
.get-tickets-btn {
  border: 1.5px solid #9700FF;
  box-shadow: 0 0 15px rgba(151, 0, 255, 0.1);
}

.get-tickets-btn .btn-text {
  color: #9700FF;
  text-shadow: 0 0 4px rgba(151, 0, 255, 0.15);
}

.get-tickets-btn:hover {
  background-color: #9700FF;
  box-shadow: 0 0 25px rgba(151, 0, 255, 0.5);
  transform: translateY(-2px);
}

.get-tickets-btn:hover .btn-text {
  color: var(--color-text-white);
  text-shadow: none;
}

.get-tickets-btn:active {
  transform: translateY(1px);
  box-shadow: 0 0 15px rgba(151, 0, 255, 0.3);
}

/* ARTISTS (Green Theme) */
.artists-btn {
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 0 15px rgba(175, 247, 17, 0.1);
}

.artists-btn .btn-text {
  color: var(--color-primary);
  text-shadow: 0 0 4px rgba(175, 247, 17, 0.15);
}

.artists-btn:hover {
  background-color: var(--color-primary);
  box-shadow: 0 0 25px rgba(175, 247, 17, 0.5);
  transform: translateY(-2px);
}

.artists-btn:hover .btn-text {
  color: var(--color-bg-dark);
  text-shadow: none;
}

.artists-btn:active {
  transform: translateY(1px);
  box-shadow: 0 0 15px rgba(175, 247, 17, 0.3);
}

.terms-link {
  font-family: var(--font-anek-medium);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text-white);
  text-align: center;
  text-decoration: underline;
  opacity: 0.8;
  letter-spacing: 0.5px;
  display: block;
  width: 100%;
}

.terms-link:hover {
  color: var(--color-primary);
  opacity: 1;
  text-shadow: 0 0 8px rgba(175, 247, 17, 0.4);
}

/* Event Info */
.schedule-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;
  text-align: center;
}

.schedule-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.schedule-text .date {
  font-family: var(--font-anek-medium);
  font-weight: 500;
  font-size: 39px;
  color: var(--color-accent-orange);
  letter-spacing: 0px;
  line-height: 1.1;
}

.schedule-text .venue {
  font-family: var(--font-anek-medium);
  font-weight: 500;
  font-size: 39px;
  color: var(--color-text-white);
  letter-spacing: 0px;
  line-height: 1.2;
  margin-top: 2px;
}

.mic-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.mic-wrapper .mic {
  width: 32.68px;
  height: 32.68px;
  object-fit: contain;
  animation: pulse-slow 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes float-slow {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -8px);
  }
  100% {
    transform: translate(0, 0px);
  }
}

@keyframes pulse-slow {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255, 89, 0, 0.5));
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* Background Patterns */
.top-pattern {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 444px;
  height: 381px;
  max-width: 30vw;
  background-image: url("../img/pattern-bg1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
  z-index: 1;
}

.bottom-pattern {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 247px;
  max-height: 20vh;
  background-image: url("../img/pattern-bg2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  pointer-events: none;
  z-index: 1;
}

/* Media Queries */

/* Tablet & Mobile Layouts */
@media (max-width: 1024px) {
  .landing-page .container {
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 40px;
    min-height: auto;
  }

  .pattern-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.12; /* Acts as a dim, elegant watermark background */
    z-index: 1;
  }
  
  .pattern-bg-wrapper .pattern-bg {
    position: static;
    width: 100%;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  .details-section {
    align-items: center;
    max-width: 520px;
    gap: 35px;
  }

  .branding {
    align-items: center;
  }

  .branding .live-logo {
    max-width: 340px;
  }

  .branding .mega-logo {
    max-width: 400px;
  }

  .schedule-text .date,
  .schedule-text .venue {
    font-size: 32px;
  }
}

/* Mobile Breakpoint */
@media (max-width: 600px) {
  .landing-page .container {
    padding: 40px 20px;
    gap: 30px;
  }

  .details-section {
    gap: 25px;
  }

  .branding .live-logo {
    max-width: 260px;
  }

  .branding .mega-logo {
    max-width: 320px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .btn {
    height: 42px;
    width: 140px;
  }

  .btn .btn-text {
    font-size: 18px;
    margin-top: 3px;
  }

  .terms-link {
    font-size: 16px;
  }

  @media (max-width: 440px) {
    .cta-buttons {
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }
    .btn {
      width: 100%;
      max-width: 240px;
    }
  }

  .schedule-text .date,
  .schedule-text .venue {
    font-size: 26px;
  }

  .top-pattern,
  .bottom-pattern {
    display: block;
  }

  .top-pattern {
    max-width: 45vw;
  }
}
