
/* =====================================
   CITRUS & SAGE — MAIN STYLESHEET
   ===================================== */

/* --------------------------
   1. CSS Variables (Color Palette)
   -------------------------- */
   :root {
    --orange: #f3a413;
    --cream: #fff7f0;
    --light-cream: #ffefe2;
    --green: #7ebfa1;
    --light-green: #d1e8dd;
    --medium-blue: #3D5866;
    --light-blue: #8B9BA3;
    --dark-blue: #152026;
    --lightest-orange: #FDEDD0;
    --lighter-orange:#FADBA1;




  }

/* Menu Toggle Styling */
/* Remove default icon */
.custom-toggler .navbar-toggler-icon {
  display: none;
}

/* Custom hamburger bars */
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Animate to X */
.custom-toggler.open .top {
  transform: translateY(7px) rotate(45deg);
}

.custom-toggler.open .middle {
  opacity: 0;
}

.custom-toggler.open .bottom {
  transform: translateY(-7px) rotate(-45deg);
}

/* Modal Typography */
.modal-content {
  font-family: 'Inter', sans-serif;
  background-color: #fff7f0; /* Match your site’s light background */
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-title {
  font-family: 'Marcellus', serif;
  font-size: 1.75rem;
  color: var(--dark-blue);
}

.modal-body label {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.modal-body input,
.modal-body textarea {
  background-color: #FADBA1;
  border: solid var(--orange) 1px;
  border-radius: 0;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--dark-blue);
  padding: 0.75rem 1rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
}

.modal-body input::placeholder,
.modal-body textarea::placeholder {
  color: var(--dark-blue);
}

/* Button Match */
.modal-body .btn-orange {
  background-color: var(--orange);
  color: var(--dark-blue);
  border: solid var(--orange) 2px;
  padding: 1.2rem 3rem;
  border-radius: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.modal-body .btn-orange:hover {
  background-color: white;
  color: var(--orange);
}

.modal-backdrop.show {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1050;
}

.modal-backdrop {
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}
  
.modal-content {
  background: rgba(255, 255, 255, 0.65); /* Semi-transparent white */
  backdrop-filter: blur(16px);           /* The frosted blur effect */
  -webkit-backdrop-filter: blur(16px);   /* Safari support */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-body {
  padding-top: 0.5rem;
}
/* --------------------------
   2. Base Styles & Typography
   -------------------------- */
   body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-blue);
  }
  
  h1, h2, h3 {
    font-family: 'Marcellus', serif;
  }
  
  .navbar-brand,
  .nav-link {
    font-family: 'Marcellus', serif;
  }

  .section-btn {
    background-color: transparent;
    padding: 1.4rem 4rem;
    color: var(--orange);
    font-size: 1.2rem;
    border: solid var(--orange) 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-block;
    min-width: 250px; /* Optional: consistent button width */
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .section-btn:hover {
    background-color: var(--orange);
    border: solid var(--orange) 2px;
    color: white;
    font-weight: 300;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
   
  }

  .section-btndk {
    background-color: transparent;
    padding: 1.4rem 4rem;
    color: var(--dark-blue);
    font-size: 1.2rem;
    border: solid var(--dark-blue) 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
    border-radius: 0px;
    display: inline-block;
    min-width: 250px; /* Optional: consistent button width */
    text-align: center;
    backdrop-filter: blur(5px);
    
  }
  
  .section-btndk:hover {
    background-color: var(--dark-blue);
    border: solid var(--dark-blue) 2px;
    color: white;
    font-weight: 300;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  
   
  }


  /* --------------------------
   3. Top Header & Navigation
   -------------------------- */
.bg-warning {
  position: relative;
  z-index: 10;
}

.topheadertext {
  color: var(--dark-blue);
}

#topbar {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1050;
  will-change: transform, opacity;
}

#topbar.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

/* Initial transparent style */
.sticky-blur-header {
  background-color: #162025;
  backdrop-filter: none;
  transition: background-color 0.4s ease, backdrop-filter 0.3s ease;
  box-shadow: none;
  z-index: 1030;
  top:40px;
  position:sticky;
  border-bottom:solid var(--orange);
  border-width:2px;
}

/* Style after scroll */
.sticky-blur-header.scrolled {
  background-color: rgba(22, 32, 37, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1030;
}

.sticky-blur-header.at-top {
  top: 0; /* moves navbar to top of page */
}

.nav-item a {
  color: white;
}

.nav-item a:hover {
  color: var(--orange);
}

/* --------------------------
   4. Hero Section
   -------------------------- */
   .hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
  }
  
  .hero-logo {
    max-width: 40%;
    height: auto;
  }
  
  .hero-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image: url('images/homebgnologo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }
  
  @supports (-webkit-clip-path: polygon(0 0, 0 10%, 10% 10%)) or (clip-path: polygon(0 0, 0 10%, 10% 10%)) {
    .hero-section {
      -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
      clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    }
  }
  
  
  /* --------------------------
     5. About Preview Section
     -------------------------- */
  .aboutpreview {
    background-color:var(--dark-blue);
    color: #fff;
    height: 75vh;
    padding: 10% 0;
  }
  
  .about-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  
  .about-img {
    max-width: 95%;
    width: 95%;
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  
  .heading-orange {
    color: var(--orange);
    font-size: 3rem;
    font-weight: 500;
  }

  .btnabout {
    background-color: var(--orange);
    padding: 1.4rem 3rem;
    color: white;
    font-size: 1.2rem;
    border: solid var(--orange) 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .btnabout:hover {
    background-color: transparent;
    border: solid var(--orange) 2px;
    color: var(--orange);
    font-weight: 300;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
  }
  .aboutbutton {
    padding-top:1.2rem;
  }
  
  
  /* --------------------------
     6. Menu Section
     -------------------------- */
  .menu-section {
    position: relative;
    min-height: auto;
    padding-top:10rem;
    padding-bottom:10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
  }
  
  .menu-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image: url('images/fruitbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    pointer-events: none;
  }
  
  @supports (-webkit-clip-path: polygon(0 0, 0 10%, 10% 10%)) or (clip-path: polygon(0 0, 0 10%, 10% 10%)) {
    .menu-section {
      -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
      clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    }
  }
  
  .menu-heading {
    color: var(--dark-blue);
    font-size: 3rem;
    font-weight: 500;
  }
  
  .btnmenu {
    background-color: var(--dark-blue);
    padding: 1.6rem 7rem;
    color: white;
    font-size: 1.5rem;
    border: solid var(--dark-blue) 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .btnmenu:hover {
    background-color: none;
    border: solid var(--dark-blue) 2px;
    color: var(--dark-blue);
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
  }
  
  
/*====================
  RESERVATION SECTION
====================*/
.reservation-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2% 10%;
  z-index: 1;
  overflow: hidden;
}

.reservation-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: url('images/fruitbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}



@supports (-webkit-clip-path: polygon(0 0, 0 10%, 10% 10%)) or (clip-path: polygon(0 0, 0 10%, 10% 10%)) {
  .reservation-section {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
}

.reservation-title {
  font-size: 3rem;
  color: var(--dark-blue);
}

.formsection {
  background-color: var(--dark-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 4%;
  margin-top: 1.6rem;
}

.form-label,
.form-control,
.form-select {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

.form-label {
  color: white;
  text-transform: uppercase;
}

.form-control,
.form-select {
  background-color: #fadba1;
  color: var(--dark-blue);
  border: 1px solid var(--orange);
  border-radius: 0;
  padding: 1rem 3rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.form-control:focus,
.form-select:focus {
  background-color: #ffefd1;
  color: var(--dark-blue);
}

.form-control::placeholder,
.form-control:focus::placeholder {
  color: var(--dark-blue);
}

/* Hide icons by default (on desktop) */
.icon-overlay {
  display: none;
}

.btn-form {
  background-color: var(--orange);
  color: var(--dark-blue);
  font-size: 1rem;
  font-weight: 300;
  padding: 1.6rem 7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--orange);
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.btn-form:hover {
  background-color: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}



/*====================
  FOOD GALLERY SECTION
====================*/
.food-gallery-section {
  background-color: #F8E0B4;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.foodSwiper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {color:var(--dark-blue);transition: color 0.3s ease;}

.swiper-button-prev:hover {color:var(--orange);}

.swiper-button-next:hover {color:var(--orange);}

.swiper-pagination-bullet {
  background-color: #f3a413;
  opacity: 1; /* Make them fully visible */
}
.swiper-pagination-bullet-active {
  background-color: var(--dark-blue) /* Optional: darker for active state */
}



.gallerytitle {
  font-size: 3rem;
  color: var(--dark-blue);
}

/*====================
  HOURS SECTION
====================*/
.hours-section {
  background-color:var(--dark-blue);
    width:100%;
    height:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    padding-top: 4rem;
    padding-bottom: 4rem;

}

.hours-section .row > div {
  margin-bottom: 2rem;
}

.hourtitles {
  color:white;
  font-size:2rem;
  text-transform:uppercase;
}

.hours-title {
  font-size:3rem;
  color:var(--orange);
  
}

.hourtext {
  font-size:1.2rem;
  color:var(--orange);
  font-weight:300;
  font-family: 'Inter', sans-serif;
}

.locationtext {
  font-size:1.2rem;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  line-height:1.6;
}

.locationtext a {
  color: white;
  text-decoration: underline;
}

.phonetext {
  font-size:1.2rem;
  color:#c3cdd2;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  line-height:1.6;
}


.hourmontues {
  font-size:2rem;
  text-transform:uppercase;
  color:var(--orange);

}


/*====================
  FOOTER
====================*/
.main-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerinfo {
  background-color: var(--light-green);
  width: 100%;
  padding: 5% 4%;
  display: flex;
  justify-content: space-around; /* Changed from space-between */
  align-items: center;
  flex-wrap: wrap;
  height: 20vh;
  gap: 1rem; /* Add some breathing room between elements */
}

.footer-logo {
  width: 120px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-menu {
  display: flex;
  gap: 1.5rem;
}

.footer-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--medium-blue);
}

.scroll-to-top img.arrow-icon {
  width: 65px; 
  height: auto;
  transition: transform 0.3s ease;
}
.scroll-to-top:hover img.arrow-icon {
  transform: translateY(-5px);
}

.scroll-container {
  flex-shrink: 0;
}

html {
  scroll-behavior: smooth;
}


.footer-bottom {
  background-color: var(--green);
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}


/*====================
  ABOUT Page
====================*/
/* ============
   HERO SECTION
   ============ */

   .about-hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    text-align: center;
    z-index: 3;
    padding: 8rem 4rem;
  }

  .about-text-container {
    max-width: 75%;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
  }

  .about-logo {
    max-width: 35%;
    height: auto;
  }
  
  
  .fancy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.5rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 500px;
  }
  
  .fancy-divider::before,
  .fancy-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--orange);
    margin: 0 1rem;
  }
  
  .about-hero::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image: url('images/citrusindoors.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  
  
  @supports (-webkit-clip-path: polygon(0 0, 0 10%, 10% 10%)) or (clip-path: polygon(0 0, 0 10%, 10% 10%)) {
    .about-hero {
      -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
      clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    }
  }


/* ============
  Our Story SECTION
   ============ */

  .ourstory {
    background-color:var(--dark-blue);
    color: #fff;
    height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    text-align: center;
    padding: 4rem 2rem;
  }
  
  
  .story-text-container {
    max-width: 75%;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
  }
   
  .heading-orange {
    color: var(--orange);
    font-size: 3rem;
    font-weight: 500;
  }

/* ============
  Outdoor Charm Section
   ============ */

   
   .outdoor {

    background-color:var(--lighter-orange);
    overflow: hidden;
    padding:5rem 0;
    min-height:75vh;

   }

   .heading-outdoor {
    font-size:2.5rem;
    color:var(--dark-blue);
   }

   .outdoorcontainer {
    padding: 0 2rem;
   }

   .citrusoutdoor {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* ensure vertical alignment */
  text-align: center;
   }


   .outdoortext {
    color:var(--dark-blue);
    font-size: 1.3rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-top: 1rem;

   }

   .outdoor-img {
    width: 80%;
    height:auto;
    display:block;
    margin: 0 auto;
  
   }

   .odtbox {
    padding-right: 5rem;
   }
 

/*====================
  Fade in Animation
====================*/


.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.fade-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.fade-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.5s;
}
.delay-4 {
  transition-delay: 0.7s;
}
  

/*====================
 Responsive Design
====================*/
/* ============
   Base Mobile Reset
   ============ */
   @media (max-width: 767px) {
    html {
      font-size: 15px;
    }
  
    h1, h2, h3 {
      text-align: center;
    }
  

    body {
      overflow-x: hidden;
    }


    .sticky-blur-header {
      top:36px;
     
    }

    .topheadertext a {
      color:white;
      text-decoration: underline;
      font-weight:600;
    }

    .hero-section {
      padding:0rem 1rem;
      min-height:85vh;

    }


    .hero-logo {
      max-width: 95%;

    }
  
    .aboutpreview {
      padding: 4rem 0.5rem 10rem 0.5;
      height:95vh;
      text-align: center;
      
    }
    .about-text {
      font-size: 1.1rem;
      line-height: 1.5;
    }
  
    .about-img {
      margin-bottom: 2rem;
      margin-top:0;
      
    }
  
    .menu-section {
      padding: 6rem 1rem;
      min-height: auto;
    }
  
    .btnmenu {
      padding: 1rem;
      font-size: 1.5rem;
      width: 100%;
    }
   
  
    .hours-section {
      padding: 5rem 1rem;
      min-height:90vh;
    }

    .hourtitles {
      font-size:1.6rem;
    }

     .hourmontues {
      font-size:1.8rem;
      margin-top:1.5rem;
      margin-bottom:1.5rem;
     }

     .locationtext {
      font-size: 1.2rem;
      text-align: center;
    }
  
    .locationtext a {
      color: var(--orange);
      text-decoration: underline;
    }
  
    .phonetext {
      font-size: 1.2rem;
      text-align: center;
    }
    .phonetext a{
      color: white;
      text-decoration:underline;
    }
  
  
    .reservation-section {
      padding: 5rem 1rem;
      min-height: 80vh;
    }

    .reservation-title {
      font-size:2rem;
      margin-top:1rem;
    }

    .icon-overlay {
      display: block;
    }

    .input-with-icon {
      position: relative;
    }
    
    .input-with-icon .icon-overlay {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--dark-blue);
      pointer-events: none;
      font-size: 1.2rem;
    }
  
    .formsection {
      padding: 1rem 1rem 3rem 1rem;
      margin-bottom:1rem;
    }
  
    .form-control, .form-select {
      padding: 1rem 1rem;
      font-size:16px;
    }
  
    .footerinfo {
      display: flex;
      flex-direction:column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
      padding: 2rem 1rem;
      width: 100%;
      box-sizing: border-box;
      min-height: 35vh;
    }
    
    .footer-logo-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    
    .footer-logo {
      width: 100px;
    }
    
    .footer-menu {
      display: flex;
      flex-wrap:wrap;
      gap: 0.75rem;
    }
    
    .scroll-container {
      margin-top: 1rem;
    }
    
    .arrow-icon {
      width: 50px;
    }

      /* Food Gallery */

      .gallerytitle{
        font-size:2rem;}
  
          .fgallery{
            padding:8% 2%;
          }


    /* About Hero */
  .about-hero {
   
    padding: 6rem 0.2rem;
    text-align: center;
  }

  .about-text-container {
    max-width:100%;
  }

  .about-logo {
    max-width: 60%;
    margin-bottom: 1rem;
  }

  .about-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Our Story Section */
  .ourstory {
    height: auto;
    padding: 3rem 1rem;
    text-align: center;
  }

  .story-text-container {
    max-width:100%;
    padding: 0 0.3rem;
  }

  .heading-orange {
    font-size: 2rem;
  }

  .storylbutton.section-btn {
    width: 100%;
    padding: 1.2rem 1.4rem;
  }

  /* Outdoor Section */
  .outdoor {
    height: auto;
    padding: 3rem 0.5rem;
  }

  .outdoor-img {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .outdoortext {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .odtbox {
    
    text-align: center;
    padding:0 0 0 0;
  }

  .outdoorcontainer {
    display: flex;
    flex-direction: column;

  }

  .menulbutton.section-btn {
    width: 100%;
    padding: 1.2rem 0;
  }
}


  


/* ============
 Tablet and Larger Phones
   ============ */



  @media (min-width: 768px) and (max-width: 1024px) {
    html {
      font-size: 16px;
    }
  
    .hero-section {
      min-height:80vh;
    }

    .hero-logo {
      max-width: 60%;
    }
  
    .aboutpreview {
      padding: 4rem 0;  /* Reduce top and bottom padding */
      height: 50vh;     /* Optional: let content define height instead of 75vh */
    }
  
    .btnmenu {
      padding: 1.2rem 3rem;
      font-size: 1.2rem;
    }

    .menu-section {
      min-height: auto;
      padding-top:8rem;
      padding-bottom:8rem;
    }

     .py-2, .hours-section, .container-fluid { 
      height:auto;

    }
  
   

   .col-md-4 {
    width:100%;
   }
  
    .hourtitles {
      font-size:1.4rem;
    }

    .reservation-section {
      padding: 3rem 2rem;
    }

    .icon-overlay {
      display: block;
    }

    .input-with-icon {
      position: relative;
    }
    
    .input-with-icon .icon-overlay {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--dark-blue);
      pointer-events: none;
      font-size: 1.2rem;
    }
  
    .formsection {
      padding: 1rem 1rem 3rem 1rem;
      margin-bottom:1rem;
    }
  
    .form-control,
    .form-select {
      padding: 1rem 2rem;
    }
  
    .footer-logo {
      width: 90px;
    }
  
    .footer-menu {
      flex-direction: row;
      gap: 2rem;
    }
  
    .scroll-container {
      margin-top: 0;
    }
  
    .main-footer {
      padding-bottom: 2rem;
    }

     /* About Hero */
  .about-hero {
    padding: 6rem 2rem;
    text-align: center;
  }

 

  .about-logo {
    max-width: 40%;
    margin-bottom: 1rem;
  }

  .about-text {
    font-size: 1.25rem;
  }

  /* Our Story Section */
  .ourstory {
    padding: 4rem 0.5rem;
    height: auto;
    text-align: center;
   
  }

  .story-text-container {
    max-width: 90%;
    margin: 0 auto;
  }

  

  .heading-orange {
    font-size: 2.5rem;
  }

  /* Outdoor Section */
  .outdoor .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .outdoor .col-md-6 {
    width: 90%;
    padding:2rem 1rem;
    margin-bottom: 2rem;
  }

  .outdoor-img {
   width: 75%;
    margin-bottom: 1.5rem;
  }

  .odtbox {
    padding: 0 1rem;
    max-width:100%;
  }

  .section-btndk {
    width: auto;
    margin: 0 auto;
  }

  .outdoorcontainer {

    padding:0;
  }

  }



  /* iPads (Portrait and Landscape) */
@media (min-device-width: 768px) and (max-device-width: 1024px) {
  .hero-logo {
    max-width: 60%;
  }

  .menu-section,
  .food-gallery-section,
  .reservation-section,
  .hours-section {
    padding: 3rem 3rem;
  }

  .btnmenu {
    font-size: 1.1rem;
    padding: 1.2rem 3.5rem;
  }


  .aboutpreview {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .aboutp {
    padding-left: 1rem;
    padding-right: 1rem;
  }


  .icon-overlay {
    display: block;
  }

  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon .icon-overlay {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-blue);
    pointer-events: none;
    font-size: 1.2rem;
  }

  .formsection {
    padding: 1rem 1rem 3rem 1rem;
    margin-bottom:1rem;
  }

  .menu-section {
    min-height: auto;
    padding-top:10rem;
    padding-bottom:10rem;
  }
  .py-2, .hours-section, .container-fluid { 
    height:auto;

  }

  .about-hero {
    padding-top: 12rem;
    padding-bottom:8rem;
    text-align: center;
  }

 
}

/* Galaxy Tabs & Larger Android Phones */
@media (min-width: 601px) and (max-width: 900px) {
  .hero-logo {
    max-width: 65%;
  }


  .aboutpreview {
    display:flex;
    flex-direction:column;
    height:50vh;
    text-align: center;
    
  }

  .food-gallery-section .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .scroll-container {
    margin-top: 1.5rem;
  }


  .hourtitles {
    font-size:2.5em;
  }

  .icon-overlay {
    display: block;
  }

  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon .icon-overlay {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-blue);
    pointer-events: none;
    font-size: 1.2rem;
  }

  .formsection {
    padding: 1rem 1rem 3rem 1rem;
    margin-bottom:1rem;
  }

  .ourstory {
    padding: 4rem 0.5rem;
    height: auto;
    text-align: center;
  }

  .py-2, .hours-section, .container-fluid { 
      height:auto;

    }

    .about-hero {
      padding: 8rem 2rem;
      text-align: center;
    }

    .about-logo {
      max-width: 40%;
      margin-bottom: 1rem;
    }
    
  
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .about-logo {
    max-width: 40%;
    margin-bottom: 1rem;
  }
  
  .ourstory {
    padding: 5rem 0.5rem;
    height: auto;
    text-align: center;
  }

  .outdoorcontainer {

    padding:0;
  }

  .outdoortext {
    font-size:1.2rem;
  }

  .odtbox {
    padding:0 4rem 0 0;
  }    
  .py-2, .hours-section, .container-fluid { 
    height:auto;

  }




}

  

