* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --pink-color: #ff2d8c;
  --text-dark: #333;
}
@font-face {
  font-family: "DmSans", sans-serif;
  src: url("../fonts/DM_Sans/static/DMSans-Medium.ttf");
  font-weight: 100 700;
}
@font-face {
  font-family: "Playfair", serif;
  src: url("../fonts/Playfair_Display/static/PlayfairDisplay-SemiBold.ttf");
  font-weight: 100 700;
}
body {
  color: #333;
  line-height: 1.5;
}
.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 80rem;
}
/* nav{
    position: fixed;
    top: 0;
} */
@media (max-width: 768px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
/* Navigation */
.navbar-custom {
  background-color: #fcfaf8;
  /* padding: 15px 13px; */
  border-bottom: 1px solid #eee;
  position: fixed;
  padding: 15px 0px;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  width: 100px;
}

.nav-link-custom {
  color: #5f527a !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500 !important;
  font-family: "DmSans", sans-serif;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.nav-link-custom:hover {
  color: #ff1492 !important;
}
.navbar-nav .nav-link.active {
  color: #ff1492 !important;
  font-weight: 600;
  position: relative;
}

.btn-apply-nav {
  background-color: #ff1492e6;
  color: white;
  border: none;
  padding: 8px 25px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 15px -3px hsl(328 100% 54% / 0.25),
    0 4px 6px -4px hsl(328 100% 54% / 0.25);
  border: 1px solid white;
}
.btn-apply-nav {
  text-decoration: none !important;
}
.text-pink {
  color: var(--pink-color);
}

.btn-pink {
  background-color: var(--pink-color);
  color: #fff;
  border: none;
  transition: 0.3s;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 10px 15px -3px hsl(328 100% 54% / 0.25),
    0 4px 6px -4px hsl(328 100% 54% / 0.25);
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.btn-pink:hover {
  background-color: #e0257a;
  color: white;
  transform: translateY(-2px);
}

.active-link {
  color: var(--pink-color) !important;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom, #24242499, #f0f0f099),
    url(../images/home_hero.avif);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40dvh;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 80px;
}
.apply-section {
  background: linear-gradient(to bottom, #65379499, #976fd499),
    url(../images/home_hero.avif);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40dvh;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 80px;
}
.episode-section {
  background: linear-gradient(to bottom, #65379499, #976fd499),
    url(../images/flowers.avif);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40dvh;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 80px;
}

.season-badge {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.05);
  /* border-radius: 16px; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(2.6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: 1px;
  /* margin-bottom: 30px; */
}
.season-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ff3ea5; /* pink */
  border-radius: 50%;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-title span {
  color: #ff1492;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  background-color: #ff1492;
  color: white;
  border: none;
  padding: 10.4px 34px;
  /* border-radius: 20px; */
  font-size: 18px;
  font-weight: 600;
  border: 1px solid white;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: #fcfaf8;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair", serif;
  margin-bottom: 20px;
  color: #1f0f3d;
}

.about-text {
  font-size: 18px;
  color: #5f527a;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 740px;
  margin: auto auto;
}
.transition-pink {
  background-color: #fee5f1;
  height: 50px;
  width: 50px;
}
.transition-pink svg {
  color: hsl(328 100% 54%);
}
.transition-black {
  background-color: #e4e9ea;
  height: 50px;
  width: 50px;
}
.icon-text {
  font-size: 24px;
  line-height: 32px;
  font-family: "Playfair", serif;
  font-weight: 700;
}
.feature-box {
  padding: 25px;
  border-radius: 8px;
  background-color: #fefdfc;
  height: 100%;
  border: 1px solid #ff1492;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d3557;
}

.feature-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

/* How It Works */
.steps-section {
  background-color: #f8f5f8;
  padding-top: 80px;
}

.steps-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d3557;
}

.steps-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.step-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #ff1492;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  font-family: "Playfair", serif;
  border: 2px solid #fee5f1;
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f0f3d;
  font-family: "Playfair", serif;
}

.step-text {
  color: #5f527a;
  font-size: 16px;
  font-weight: 400;
  font-family: "DmSans", sans-serif;
}

.hero-wrap {
  background: linear-gradient(180deg, #2b144e, #1a0d33);
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-family: "Playfair", serif;
  font-size: 48px;
  font-weight: 700;
}

.hero-text {
  font-size: 20px;
  color: #fcfaf8cc;
  max-width: 660px;
  font-family: "DmSans", sans-serif;
}

.hero-btn {
  background: #ffffff;
  color: #2b144e;
  padding: 12px 48px;
  font-size: 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-curve {
  height: 380px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-color: #1d3557;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

/* Footer */
footer h5 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
footer h6 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(31, 15, 61);
}
.footer-links li {
  margin-bottom: 8px;
}
footer p.text-muted {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: rgb(95, 82, 122);
}

.footer-links a {
  text-decoration: none;
  color: #6c757d;
  font-size: 14px;
  line-height: 20px;
  transition: 0.2s;
  font-family: "DM Sans", sans-serif;
}
footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-links a:hover {
  color: var(--pink-color);
}

.social-icons a {
  color: #6c757d;
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: var(--pink-color);
}
.next_tv {
  font-size: 14;
  line-height: 20px;
}
/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title,
  .steps-title {
    font-size: 28px;
  }

  .hero-section {
    padding: 150px 0 80px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 27px;
  }
  .about-text {
    width: 100%;
  }
  .hero-text {
    font-size: 16px;
  }

  nav .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  nav .nav-link-custom {
    color: #5f527a !important;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500 !important;
  }
  li.appy_btn,
  li.appy_btn button {
    width: 100%;
    box-shadow: none;
  }
  .navbar-toggler {
    box-shadow: none !important;
    border: none !important;
  }

  .hero-subtitle,
  .about-text,
  .cta-text {
    font-size: 16px;
  }
}
