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

body {
  font-family: "Kanit", sans-serif;
  /* background-color: #000; */
  color: #fff;
  line-height: 1.6;
}

.page-container {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
.font-orbitron {
  font-family: "Orbitron", sans-serif;
}

.font-kanit {
  font-family: "Kanit", sans-serif;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.gradient-text {
  background: linear-gradient(to right, #ff3d00, #ffc300);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-reverse {
  background: linear-gradient(to right, #ffc300, #ff3d00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons */
.btn {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 3rem;
  border: 2px solid;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #181818;
  margin: 5% auto;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}

@keyframes modalIn {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close {
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
.close:hover {
  color: #ff3d00;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #ffc300;
}
.form-group input {
  padding: 0.75rem 1rem;
  border: 1px solid #333;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #232323;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: #ff3d00;
}

#formStatus {
  min-height: 1.5em;
  font-size: 1rem;
  color: #ffc300;
  text-align: center;
}

@media (max-width: 600px) {
  .modal-content {
    max-width: 95vw;
    padding: 1.2rem 0.5rem;
  }
}

.btn-outline {
  border-color: #ff3d00;
  color: #fff;
}

.btn-outline:hover {
  background-color: #ff3d00;
  color: #fff;
}

.btn-white {
  border-color: #fff;
  color: #fff;
}

.btn-white:hover {
  background-color: #fff;
  color: #ff3d00;
}

/* Hero Section */
.hero-section {
  position: relative;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-logo-area {
  height: 80vh;
  background-color: blue;
  background: url(./images/Hero-bg-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem 1rem 5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0), #000);

  border: none;
  /* height: 20vh; */
}
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  text-transform: uppercase;
  line-height: 0.8;
  margin-bottom: 1.5rem;
}
.logo-container {
  position: relative;
  z-index: 10;
  padding: 3rem 0 0 4rem;
}
.logo {
  height: 10rem;
  width: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, transparent, #ff3d00);
  opacity: 0.8;
}
.bottom-black-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 1) 70%);
  opacity: 1;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60rem;
  margin: 0 auto 2rem;
}
*/ .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* About Section */
.about-section {
  position: relative;

  padding-bottom: 2rem;
}

.about-background {
  position: absolute;
  inset: 0;
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(241, 245, 249, 0.7);
  backdrop-filter: blur(16px);
}

.about-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  margin-top: 4rem;
}

.about-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  margin-bottom: 2rem;
}

.about-lead {
  font-family: "Kanit", sans-serif;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 2rem;
}

.about-description {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.6;
}

.about-image-container {
  display: flex;
  justify-content: flex-end;
}

.about-image {
  width: 100%;
  max-width: 32rem;
  border-radius: 1.5rem;
  transform: translateY(15%);
  height: 200%;
}

/* Host Section */
.host-section {
  background: linear-gradient(to right, #ff3d00, #000);
  overflow: hidden;
}

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.host-image-container {
  justify-self: end;
}

.host-image {
  width: 100%;
  max-width: 32rem;
  transform: translateY(10px);
}

/* .host-content {
  space-y: 2rem;
} */

.host-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2rem;
}

.host-subtitle {
  font-family: "Kanit", sans-serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}

.host-description {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.6;
}

/* Guest Section */
.guest-section {
  background: #ff3d00;
  padding: 6rem 0;
}

.guest-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}

.guest-description {
  font-family: "Kanit", sans-serif;
  font-size: 1.25rem;
  color: #fff;
  max-width: 64rem;
  margin: 0 auto 3rem;
}

/* Listen Section */
.listen-section {
  position: relative;
  padding: 6rem 0;
}

.listen-background {
  position: absolute;
  inset: 0;
}

.listen-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(255, 61, 0, 0.8)
  );
  backdrop-filter: blur(4px);
}

.listen-title {
  position: relative;
  z-index: 10;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3rem;
}

.platform-links {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.platform-link {
  transition: transform 0.3s ease;
}

.platform-link:hover {
  transform: scale(1.05);
}

.platform-icon {
  height: 4rem;
  width: auto;
}

/* Subscribe Section */
.subscribe-section {
  background: #ff3d00;
  padding: 6rem 0;
}

.subscribe-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}

.subscribe-description {
  font-family: "Kanit", sans-serif;
  font-size: 1.25rem;
  color: #fff;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

/* Footer */
.footer {
  background: #000;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo svg {
  width: 117px;
  height: 28px;
}

.footer-copyright {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
  }
  .about-grid,
  .host-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .host-section {
    background: linear-gradient(to bottom, #000, #ff3d00);
  }
  .host-content {
    grid-row: 1;
    margin-top: 8rem;
  }
  .host-image-container {
    justify-self: center;
  }
  .about-image-container {
    justify-content: center;
    align-items: center;
  }
  .about-title,
  .host-title {
    font-size: 2.5rem;
  }

  .logo-container {
    padding: 3rem 0 0 3rem;
  }

  .logo {
    height: 5rem;
  }
}
@media (max-width: 760px) {
  .bottom-black-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 30%,
      rgba(0, 0, 0, 1) 60%
    );
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-title,
  .host-title,
  .guest-title,
  .listen-title,
  .subscribe-title {
    font-size: 2rem;
  }

  .about-lead,
  .host-subtitle,
  .guest-description,
  .subscribe-description {
    font-size: 1rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .logo-container {
    padding: 2rem 0 0 1rem;
  }

  .logo {
    height: 5rem;
  }

  .platform-links {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (max-width: 31.25em) {
  .guest-section {
    padding-top: 3rem;
  }
  .hero-title,
  .guest-title,
  .listen-title,
  .subscribe-title,
  .host-title,
  .about-title {
    font-size: 2.3rem;
  }
  .host-content {
    margin-top: 5rem;
  }
  .subscribe-title {
    line-height: 1;
  }

  .hero-gradient-overlay {
    background: linear-gradient(to top, transparent, transparent, #ff3d00);
    opacity: 0.8;
    height: 28rem;
  }
  .bottom-black-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(0, 0, 0, 1) 60%
    );
    opacity: 1;
  }
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media only screen and (max-width: 320px) {
    .bottom-black-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0, 0, 0, 1) 50%
      );
      opacity: 1;
    }
  }
}
