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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 0, 106, 0.18), transparent 30%),
    #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  margin-top: 16px;
  padding: 14px 22px;
  border: 1px solid #292929;
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
}

.logo-text span {
  color: #ff0b72;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
}

nav a.active {
  border-bottom: 3px solid #ff0b72;
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.hero h1 span {
  color: #ff0b72;
}

.hero-description {
  margin-top: 22px;
  color: #e6e6e6;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.35;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.button {
  display: inline-block;
  padding: 15px 26px;
  border: 2px solid #ff0b72;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

.button-primary {
  background: linear-gradient(135deg, #ff0b72, #e8005e);
}

.hero-image {
  width: 100%;
  min-height: 430px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 0, 106, 0.12), rgba(0, 0, 0, 0.28)),
    url("hero.PNG") center/cover no-repeat;
  border: 1px solid #2b2b2b;
  box-shadow: 0 0 50px rgba(255, 0, 106, 0.18);
}
/* จุดเด่นของบริการ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -55px;
  margin-bottom: 55px;
  position: relative;
  z-index: 2;
}

.feature-card {
  min-height: 128px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(7, 7, 7, 0.96);
  border: 1px solid #383838;
  border-radius: 17px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.38);
}

.feature-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff0b72;
  border-radius: 50%;
  color: #ff70b0;
  font-size: 19px;
}

.user-icon,
.replay-icon {
  font-size: 40px;
  font-weight: 300;
}

.feature-content h2 {
  margin-bottom: 4px;
  font-size: 25px;
  font-weight: 500;
}

.feature-content p {
  color: #d2d2d2;
  font-size: 15px;
  line-height: 1.5;
}
/* =========================
   คอนเสิร์ตแนะนำ
========================= */

.recommended {
  margin-top: 10px;
  margin-bottom: 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-title h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 500;
}

.section-title h2 span {
  color: #ff0b72;
  font-size: 30px;
}

.view-all {
  padding: 10px 18px;
  border: 1px solid #ff0b72;
  border-radius: 10px;
  color: #ff4c9a;
  text-decoration: none;
  font-size: 16px;
}

.concert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.concert-card {
  overflow: hidden;
  background: #080808;
  border: 1px solid #383838;
  border-radius: 15px;
  transition: 0.25s ease;
}

.concert-card:hover {
  transform: translateY(-4px);
  border-color: #ff0b72;
  box-shadow: 0 12px 35px rgba(255, 11, 114, 0.16);
}

.concert-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 11, 114, 0.35),
      rgba(20, 0, 10, 0.8) 50%,
      #050505 100%
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.concert-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 11px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

.live-badge {
  background: #ff1744;
}

.hot-badge {
  background: #ff1744;
}

.replay-badge {
  background: #6b00ff;
}

.concert-details {
  padding: 18px;
}

.concert-details h3 {
  color: #ff2d83;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 800;
}

.concert-type {
  margin-top: 5px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.concert-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #282828;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #e5e5e5;
  font-size: 14px;
}

.replay-meta {
  justify-content: flex-start;
}
/* รูปปกคอนเสิร์ต */

.concert-one {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.15)
    ),
    url("concert1.PNG");
}

.concert-two {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.15)
    ),
    url("concert2.PNG");
}

.concert-three {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.15)
    ),
    url("concert3.PNG");
}
/* =========================
   แพ็กเกจ
========================= */

.packages {
  margin-top: 20px;
  margin-bottom: 60px;
}

.package-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.package-heading span {
  color: #ff0b72;
  font-size: 28px;
}

.package-heading h2 {
  font-size: 30px;
  font-weight: 500;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.package-card {
  min-height: 420px;
  padding: 24px 18px 18px;
  border: 2px solid #ff0b72;
  border-radius: 18px;
  background: #080808;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.package-card h3 {
  font-size: 24px;
  font-weight: 500;
}

.package-subtitle {
  min-height: 48px;
  margin-top: 4px;
  color: #e5e5e5;
  font-size: 14px;
}

.package-subtitle span {
  color: #ff2d83;
}

.package-price {
  margin-top: 18px;
  color: #ff0b72;
  line-height: 1;
}

.package-price strong {
  font-size: 58px;
  font-weight: 800;
}

.package-price span {
  margin-left: 6px;
  font-size: 21px;
}

.package-days {
  margin-top: 8px;
  color: #ff0b72;
  font-size: 17px;
}

.package-card ul {
  margin-top: 22px;
  margin-bottom: 24px;
  list-style: none;
  text-align: left;
}

.package-card li {
  margin-bottom: 9px;
  color: #f0f0f0;
  font-size: 14px;
  line-height: 1.4;
}

.package-button {
  width: 100%;
  margin-top: auto;
  padding: 13px 12px;
  border: 1px solid #ff0b72;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
}

.featured-package {
  box-shadow: 0 0 30px rgba(255, 11, 114, 0.2);
}

.featured-package .package-button {
  border-color: #ff0b72;
  background: linear-gradient(135deg, #ff0b72, #e8005e);
}
/* =========================
   แถบข้อมูล
========================= */

.service-strip {
  margin: 10px auto 18px;
  padding: 14px 24px;
  border: 2px dashed #ff0b72;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: #070707;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffd5e8;
  font-size: 22px;
}

.strip-icon {
  color: #ff0b72;
  font-size: 28px;
}

.strip-divider {
  width: 1px;
  height: 34px;
  background: #ff0b72;
}

/* =========================
   Footer
========================= */

.footer {
  padding: 26px;
  border: 1px solid #292929;
  border-radius: 18px;
  background: #080808;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  font-size: 30px;
  font-weight: 900;
}

.footer-logo span {
  color: #ff0b72;
}

.footer-tagline {
  margin-top: 2px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-description {
  margin-top: 12px;
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border-left: 1px solid #353535;
  border-right: 1px solid #353535;
}

.qr-placeholder {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.contact-text p {
  color: #dddddd;
  font-size: 16px;
}

.contact-text strong {
  display: block;
  margin-top: 6px;
  color: #ff0b72;
  font-size: 22px;
}

.footer-social {
  text-align: center;
}

.footer-social > p {
  color: #dddddd;
  font-size: 16px;
}

.social-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  padding: 11px 13px;
  border: 1px solid #ff0b72;
  border-radius: 10px;
  color: #ff4c9a;
  text-decoration: none;
  font-size: 14px;
}

.copyright {
  padding: 14px 0 28px;
  color: #aaaaaa;
  text-align: center;
  font-size: 13px;
}
@media (max-width: 800px) {
  .service-strip {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .strip-divider {
    width: 80%;
    height: 1px;
  }

  .strip-item {
    font-size: 18px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    padding: 20px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #353535;
    border-bottom: 1px solid #353535;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .package-card {
    min-height: 390px;
  }

  .package-heading h2 {
    font-size: 27px;
  }

  header {
    padding: 13px 16px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 0;
    min-height: auto;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
    margin-top: 5px;
    margin-bottom: 40px;
  }

  .feature-card {
    min-height: 115px;
  }

  .recommended {
    margin-top: 35px;
  }

  .section-title h2 {
    font-size: 27px;
  }

  .view-all {
    padding: 8px 13px;
    font-size: 14px;
  }

  .concert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .concert-image {
    aspect-ratio: 16 / 9;
  }

  .concert-details h3 {
    font-size: 25px;
  }
}
