    html {
      scroll-behavior: smooth;
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      background-color: #D2B48C;
      margin: 0;
      font-family: "Public sans", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
      max-width: 100%;
      overflow-x: hidden;
    }

    .gallery-img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      border-radius: 10px;
      cursor: zoom-in;
    }

    .gallery-wrapper {
      border: 4px solid #000;
      border-radius: 15px;
      padding: 1rem;
      background-color: #F26900;
      max-width: 1000px;
      margin: 0 auto;
    }
    .video-section {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .video-section video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    .video-overlay {
      position: relative;
      z-index: 1;
      width: 100%;
      padding: 2rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }
    .intro-title {
      font-size: 6rem;
      color: #FFC090;
      font-weight: bold;
    }
    .intro-subtitle {
      margin-top: 2rem;
      font-size: 3rem;
      color: #f8f8f8;
    }
    .intro-description {
      font-size: 2rem;
      color: #f0f0f0;
    }
    .logo-top-left {
      position: absolute;
      top: 15px;
      left: 20px;
      z-index: 2;
      height: auto;
      width: 140px;
    }
    .intro-buttons {
      margin-top: auto;
      margin-bottom: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    .intro-buttons .btn {
      font-size: 1.5rem;
      padding: 1rem 2rem;
      border-radius: 10px;
    }
    .btn-orange {
      background-color: #F26900;
      border-color: #F26900;
      color: white;
    }
    .btn-orange:hover {
      background-color: #A03F00;
      border-color: #A03F00;
    }
    .btn-past {
      background-color: #414DE7;
      border-color: #414DE7;
      color: white;
    }
    .btn-past:hover {
      background-color: #a4befd;
      border-color: #a4befd;
    }
    .mobile-header {
      display: block;
      background-color: #F26900;
      color: white;
      text-align: center;
      padding: 1rem;
      font-size: 1.5rem;
      font-weight: bold;
      width: 100vw;
      max-width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1050;
    }
    .light-brown-bg {
      background-color: #F26900 !important;
    }
    .soft-peach-bg{
        background-color: #fcdcc5;
    } 
    .info-images img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .info-images p {
      font-size: 1.5rem;
    }
    .contact-box {
      background-color: #fff;
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      min-height: 600px;
    }
    .quote-section {
      position: relative;
      min-height: 400px;
      background-image: url('images/textbackground.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      color: white;
      z-index: 1;
    }

    .quote-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.45); /* dark overlay */
      z-index: 2;
    }

    .quote-content {
      position: relative;
      z-index: 3; 
      text-align: center;
    }


    .quote-parallax {
      position: relative;
      min-height: 400px;
      background-image: url('images/textbackground.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    .quote-overlay {
      position: relative;
      background: rgba(0, 0, 0, 0.55); 
      color: white;
      padding: 3rem 1rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .orange-underline {
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
      font-weight: 700;
    }
    .orange-underline::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 8px; /* thickness of the underline */
      width: 100%;
      background-color: #F26900; 
  }
    .orange-light-underline {
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
      font-weight: 700;
    }
    .orange-light-underline::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 6px; 
      width: 100%;
      background-color: #F26900; 
  }


    @media (max-width: 767px) {
      body {
        padding-top: 55px; /* Match the header height */
      }
      .intro-title {
        font-size: 3rem;
      }
      .intro-subtitle {
        font-size: 1.75rem;
      }
      .intro-description {
        font-size: 1.2rem;
      }
      .intro-buttons .btn {
        width: 100%;
        font-size: 1.25rem;
      }
      .logo-top-left {
        display: none;
      }
      .mobile-header {
        display: block;
      }
      .quote-section{
        background-attachment: scroll;
      }
    }

    @media (max-width: 1000px) {
      .hide-below-1000 {
        display: none !important;
      }
}