@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --font-primary: "Inter", sans-serif;
  font-size: 16px;
  --base-color: #1a0b2e;
  --primary-color: #230e3d;
  --secondary-color: #2a0f4d;
  --color-01: #9100f8;
  --color-02: #fb09b4;
  --color-03: #f7e93f;
  --font-color-01: #FAFAFA;
  --color-green: #00ff88;
}

body {
  font-family: var(--font-primary);
}

.hamburger-icon{
  display: none;
}

@media (max-width: 576px) {
  .tech-wave-menu,
  .subscribe {
    display: none !important;
  }

  .hamburger-icon{
    display: block !important;
  }

  h1 {
    font-size: 40px !important;
  }

  h2 {
    font-size: 35px !important;
  }

  h3 {
    font-size: 30px !important;
  }

  h4 {
    font-size: 25px !important;
  }

  h5 {
    font-size: 20px !important;
  }

  body, .text-base {
    font-size: 10px !important;
  }

  .hamburger-icon{
    display: block !important;
  }

  .new-btn {
    top: 0;
    right: 10%;
    padding: 4px 10px !important;
  }

  .hero-container {
    height: 450px !important;
  }

  .hero-wrapper {
    padding: 50px 0 !important;
  }

  .wrapper {
    max-width: 100% !important;
  }

  .podcast-content,
  .footer-web-app {
    max-width: 100% !important;
  }

  .podcast-detail,
  .why-choose,
  .featured,
  .meet-the-host,
  .footer-container-wrapper{
    padding-top: 50px !important;
  }

  .podcast-detail,
  .footer-web-app {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .podcast-detail,
  .host {
    flex-direction: column !important;
  }

  .about-podcast,
  .podcast-content,
  .meet-the-host,
  .footer-container-wrapper{
    padding-bottom: 50px !important;
  }

  .about-podcast {
    padding-top: 0 !important;
  }

  .why-choose-grid,
  .feature-card-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    grid-template-rows: repeat(1, 1fr) !important;
    gap: 15px !important;
  }

  .why-choose div{
    grid-row: span 1 !important;
    grid-column: span 1 !important;
    text-align: center !important;
  }

  .host .host-image {
    width: 150px !important;
    height: 150px !important;
  }

  .host {
    padding-top: 40px;
  }

  .why-choose img,
  .meet-the-host img {
    margin: 0 auto !important;
  }

  .meet-the-host {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .web-app-card a {
    justify-content: center;
  }
}

/* Medium screens 576px – 992px */
@media (min-width: 575.9px) and (max-width: 992px) {
  .hero-container  {
    height: 540px !important;
  }

  .podcast-content,
  .footer-web-app {
    max-width: 100%;
  }

  .podcast-content,
  .about-podcast,
  .why-choose,
  .hero-wrapper,
  .meet-the-host,
  .footer-container-wrapper {
    padding-bottom: 50px !important;
  }

  .podcast-detail,
  .why-choose,
  .hero-wrapper,
  .featured,
  .footer-container-wrapper {
    padding-top: 50px !important;
  }

  .podcast-detail,
  .footer-web-app{
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .feature-card-container,
  .why-choose-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    grid-template-rows: repeat(1, 1fr) !important;
    gap: 15px !important;
  }

  .host {
    flex-direction: column;
    text-align: center;
  }

  .host .host-image {
    height: 300px;
    width: 300px;
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-container {
    height: 310px !important;
  }

  .new-btn {
    font-size: 10px;
    padding: 6px 10px !important;
  }
}