/* ORIGINAL IMAGE RENDERING (up to 1119px) */
@media (max-width: 900px) {
    .hero {
      background: url('../images/hero-image-new.jpg') top center;
      background-size: cover;
      padding-left: 75px;
    }
  }

  /* ---------- MOBILE STYLES (up to 350px) ---------- */
@media (max-width: 350px) {
    /* Mobile Navbar */
    .mobile-nav {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 15px;
      text-align: right;
      width: calc(100% - 40px);
      z-index: 10;
    }
    
    .mobile-nav-toggle {
      color: #ead7c3;
      background: transparent;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      margin: 10px;
    }
    
    .mobile-nav-menu {
      display: none;
    }
    
    .mobile-nav.active .mobile-nav-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 10px;
      margin-top: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-nav-menu a {
      display: inline-block;
      margin: 5px 0;
      text-decoration: none;
      color: #ead7c3;
      font-size: 0.8rem;
      font-weight: bold;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 4px;
      padding: 8px 12px;
    }
    
    /* Hide Desktop Nav on Mobile */
    .desktop-nav {
      display: none;
    }
    /* Hero Section */
    .hero-content {
      padding-top: 350px;
      text-align: left;
      padding-left: 20px;
      padding-right: 20px;
    }
    .hero-content h1 {
      font-size: 2rem;
      margin: 0 auto;
    }
    .hero-content h2 {
      font-size: 1.2rem;
      margin: 0 auto;
    }
    
    .content-box {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .content-section h2 {
      font-size: 1.8rem;
    }
    .content-section p {
      font-size: 0.8rem;
    }
    /* Stack images below text */
    #about .container,
    #sessions .container {
      display: block;
    }
    .bacp-logo,
    .therapy-room {
      position: static;
      transform: none;
      width: 85%;
      margin-top: 20px;
      margin-left: 30px;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .quote-author {
        font-size: 1.4rem;
    }

    #contact form {
        display: block;
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    #contact button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
  /* ---------- MOBILE STYLES (351px to 500px) ---------- */
  @media (min-width: 351px) and (max-width: 500px) {
    /* Mobile Navbar */
    .mobile-nav {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 15px;
      text-align: right;
      width: calc(100% - 40px);
      z-index: 10;
    }
    
    .mobile-nav-toggle {
      color: #ead7c3;
      background: transparent;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      margin: 10px;
    }
    
    .mobile-nav-menu {
      display: none;
    }
    
    .mobile-nav.active .mobile-nav-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 10px;
      margin-top: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-nav-menu a {
      display: inline-block;
      margin: 5px 0;
      text-decoration: none;
      color: #ead7c3;
      font-size: 1.1rem;
      font-weight: bold;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 4px;
      padding: 8px 12px;
    }
    /* Hide Desktop Nav on Mobile */
    .desktop-nav {
      display: none;
    }
    /* Hero Section */
    .hero-content {
      padding-top: 450px;
      text-align: left;
      padding-left: 0px;
      padding-right: 0px;
    }
    .hero-content h1 {
      font-size: 2.5rem;
      margin: 0 auto;
    }
    .hero-content h2 {
      font-size: 1.3rem;
      margin: 0 0 0 20px;
    }
    
    .content-box {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .content-section h2 {
      font-size: 1.8rem;
    }
    .content-section p {
      font-size: 0.9rem;
    }
    /* Stack images below text */
    #about .container,
    #sessions .container {
      display: block;
    }
    .bacp-logo,
    .therapy-room {
      position: static;
      transform: none;
      width: 70%;
      margin-top: 20px;
      margin-left: 50px;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .quote-author {
        font-size: 1.5rem;
    }

    #contact form {
        display: block;
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    #contact button {
        font-size: 1rem;
        padding: 10px 20px;
    }
  }

   /* ---------- TABLET STYLES (501px to 900px) ---------- */
   @media (min-width: 501px) and (max-width: 900px) {
    
    .mobile-nav {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 15px;
      text-align: right;
      width: calc(100% - 40px);
      z-index: 10;
    }
    
    .mobile-nav-toggle {
      color: #ead7c3;
      background: transparent;
      border: none;
      font-size: 3rem;
      cursor: pointer;
      margin: 10px;
    }
    
    .mobile-nav-menu {
      display: none;
    }
    
    .mobile-nav.active .mobile-nav-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 10px;
      margin-top: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-nav-menu a {
      display: inline-block;
      margin: 5px 0;
      text-decoration: none;
      color: #ead7c3;
      font-size: 1.5rem;
      font-weight: bold;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 4px;
      padding: 8px 12px;
    }
    .desktop-nav {
      display: none;
    }
    
    .hero-content {
      padding-top: 500px;
      text-align: left;
      padding-left: 40px;
      padding-right: 20px;
    }
    .hero-content h1 {
      font-size: 3.5rem;
      margin: 0 auto;
    }
    .hero-content h2 {
      font-size: 2rem;
      margin: 0 auto;
      padding-left: 40px;
    }
    
    .content-box {
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
    }
    .content-section h2 {
      font-size: 2rem;
    }
    .content-section p {
      font-size: 1.1rem;
    }
    
    #about .container,
    #sessions .container {
      display: block;
    }
    
    .therapy-room {
      position: static;
      transform: none;
      width: 50%;
      margin-left: 175px;
      margin-top: 90px;
    }

    .bacp-logo {
      position: static;
      transform: none;
      width: 40%;
      margin-left: 225px;
      margin-top: 90px;
    }
    
    .quote-text {
      font-size: 2rem;
    }

    .quote-author {
        font-size: 2rem;
    }
    
    #contact form {
      display: block;
      width: 80%;
      margin: 20px auto;
      text-align: center;
    }
    #contact button {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }
