/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Variables CSS */
:root {
  /* Colors */
  --primary-color: orangered;
  --primary-light-color: #FFD6D7;
  --yellow-color: #FEC65E;
  --white-color: #FFFFFF;
  --black-color: #323232;
  /* Font & Typography */
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 58px;
  --h1-font-size: 45px;
  --normal-font-size: 18px;
  --small-font-size: 16px;
  --smaller-font-size: 14px;
  /* Font Weight */
  --font-semibold: 600;
  --font-medium: 500;
}

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

a,
a:hover {
  text-decoration: none;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-light {
  background-color: var(--primary-light-color) !important;
}

/* Costum Scrollbar */
::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-track {
  background: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 0.5rem;
}

/* Button */
.btn {
  padding: 14px 22px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  filter: drop-shadow(0px 10px 30px rgba(186, 37, 48, 0.15));
  background-color: var(--yellow-color);
  color: var(--black-color);
  border-radius: 50px;
}

.btn-primary-light {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
  border: none;
}
.btn-primary-light:hover, .btn-primary-light:focus {
  color: var(--black-color);
  background-color: var(--yellow-color);
}

.btn-video-play {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  margin-left: 30px;
  height: 50px;
  width: 50px;
  padding: 0;
  font-size: 30px;
}
.btn-video-play i {
  line-height: 3rem;
  color: var(--yellow-color);
}
.btn-video-play:hover i {
  color: var(--primary-color);
}

.btn-cart {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 0.725rem 0.913rem;
  border-radius: 0.5rem;
}


/* Badge */
.badge {
  padding: 0.7rem;
  border-radius: 8px;
}

/* Navbar */
.navbar {
  padding: 12px 0;
  transition: all 0.5s ease;
}
.navbar .navbar-brand span {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}
.navbar .nav-link {
  margin-right: 39px;
  font-weight: var(--font-medium);
  color: var(--black-color);
}
.navbar .nav-link:hover, .navbar .nav-link:focus {
  color: var(--primary-color);
}
.navbar .nav-link .active {
  color: var(--primary-color);
}

/* Sidebar Dropdown Styles */
.nav-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  color: #333;
  transition: background-color 0.3s;
}

.nav-menu .dropdown-toggle:hover {
  background-color: #f0f0f0;
}

.nav-menu .dropdown-toggle i:first-child {
  margin-right: 10px;
}

/*===Review===*/
section.review {
  padding-top: 5rem;
}

/* Home */
section.home {
  padding-top: 5rem;
}
section.home .text-home-bold {
  font-size: var(--biggest-font-size);
  line-height: 87px;
}
section.home .text-home-reguler {
  font-size: var(--normal-font-size);
  line-height: 27px;
}
section.home .home-btn .video-play {
  font-weight: var(--font-medium);
  padding: 1rem;
}

/* Services */
section.services {
  padding-top: 7rem;
}
section.services .content .services-title {
  font-weight: var(--font-semibold);
}

/* About */
section.about {
  padding-top: 7rem;
}

/* Menu */
section.menu {
  padding-top: 7rem;
}
section.menu .card-menu {
  filter: drop-shadow(0px 5.42857px 40.7143px rgba(0, 0, 0, 0.05));
  border-radius: 10px;
  padding: 1.2rem;
}
section.menu .card-menu .item {
  position: relative;
}
section.menu .card-menu .item img {
  width: 100%;
}

section.menu .card-menu .item .menu-title {
  font-weight: var(--font-semibold);
}


.quantity-control {
    display: flex;
    gap: 10px;
    align-items: center;
}

.qty-btn {
    background-color: var(--yellow-color);
    border: none;
    color: var(--black-color);
    font-size: 1rem;
    padding: 2px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qty-number {
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 24px;
    text-align: center;
    display: inline-block;
}

/* Testimonials */
section.testimonials {
  padding-top: 7rem;
}
section.testimonials .content-testimonials .name-testimonials {
  font-weight: var(--font-semibold);
}
section.testimonials .content-testimonials i {
  color: var(--yellow-color);
  font-size: 1.3rem;
}
section.testimonials .carousel-indicators {
  bottom: -3rem;
}
section.testimonials .carousel-indicators button {
  width: 0.7rem;
  height: 0.7rem;
  outline: none;
  border: none;
  margin-right: 0.2rem;
}
/* ===============Testimonials =============*/

/* Promo Box Styling */
.promo-box {
  padding: 100px 0;
  position: relative;
}

.promo-content-box {
  background: orangered;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 12px;
  height: 400px;
}

/* Text Styling */
.promo-title {
  color: white;
  font-size: 2.8rem;
  font-family: var(--body-font);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.promo-subtitle {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
}



/* Image Styling */
.promo-image img {
  height: calc(400px + 200px); /* section height + overflow */
  max-width: 100%;
  object-fit: contain;
}

/* Animation */
.animated-float {
  animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Responsive Design */

/* Laptops and Large Tablets */
@media (max-width: 992px) {

  .promo-content-box {
    height: 400px;
    padding: 10 10px;
    justify-content: center;
    margin-top: 100px;
  }
  /* Text Styling */
  .promo-title {
    font-size: 2.5rem;
  }

  .promo-subtitle {
    font-size: 1.1rem;
  }

}

/* 📱 Mobile (≤576px) */
@media (max-width: 768px) {

  /* Keep section height and layout */
  .promo-content-box {
    height: 280px;
    padding: 10 10px;
    justify-content: center;
    margin-top: 100px;
  }

  /* Hide left text and form on mobile */
   /* Text Styling */
  .promo-title {
    font-size: 1.5rem;
  }

  .promo-subtitle {
    font-size: 0.9rem;
  }

  /* Image centered */
  .promo-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .promo-image img {
    height: calc(400px + 120px);
  }

  .shopping-cart {
  width: 22rem !important;
  }
  .shopping-cart .box img{
    width: 4rem !important;
    border-radius: 10px;
  }
  .shopping-cart .box .bx-trash{
    font-size: 1.5rem !important;
  }
  .shopping-cart .box .content h3{
    font-size: 1.3rem !important;
  }
  .shopping-cart .box .content span{
    font-size: 1rem !important;
  }
  .shopping-cart .box .content .quantity{
    padding-left: 1rem !important;
  }
  .shopping-cart .stotal{
    font-size: 1.1rem !important;
  }
  .shopping-cart .tax{
    font-size: 1.1rem !important;
  }
  .shopping-cart .total{
  font-size: 1.1rem !important;
  }
  .shopping-cart .btn{
  margin: .5rem 0 !important;
  }
    
}

/* 📱 Mobile (≤576px) */
@media (max-width: 576px) {

  /* Keep section height and layout */
  .promo-content-box {
    height: 250px;
    padding: 10 10px;
    justify-content: center;
    margin-top: 100px;
  }

  /* Hide left text and form on mobile */
   /* Text Styling */
  .promo-title {
    display: none;
  }

  .promo-subtitle {
    display: none;
  }

  .shopping-cart {
  width: 20.5rem !important;
  }

  .shopping-cart .box img{
    width: 3.2rem !important;
    border-radius: 10px;
  }
  .shopping-cart .box .bx-trash{
    font-size: 1.2rem !important;
  }
  .shopping-cart .box .content h3{
    font-size: 1rem !important;
  }
  .shopping-cart .box .content span{
    font-size: .8rem !important;
  }
  .shopping-cart .box .content .quantity{
    padding-left: .8rem !important;
  }
  .shopping-cart .stotal{
    font-size: 1rem !important;
  }
  .shopping-cart .tax{
    font-size: 1rem !important;
  }
  .shopping-cart .total{
  font-size: 1rem !important;
  }
  .shopping-cart .btn{
  margin: .2rem 0 !important;
  }

}

/* Extra Small Phones */
@media (max-width: 480px) {
    .promo-content-box {
    height: 200px;
    padding: 10 10px;
    justify-content: center;
    margin-top: 100px;
  }

  /* Hide left text and form on mobile */
   /* Text Styling */
  .promo-title {
    display: none;
  }

  .promo-subtitle {
    display: none;
  }

   #reservation .phone i,
  #reservation .message i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    margin-top: -30px;
  }

  #reservation .phone h4,
  #reservation .message h4 {
    font-size: 16px;
  }

  #reservationForm h4 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 12px;
  }

  .contact-form button {
    font-size: 11px;
  }
}

/* Footer */
footer.footer-section {
  padding-top: 10rem;
}
footer.footer-section .footer-brand span {
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}
footer.footer-section .footer-content span {
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}
footer.footer-section .footer-link li a {
  color: var(--black-color);
}
footer.footer-section .footer-link li a:hover {
  color: var(--primary-color);
}
footer.footer-section .copyright {
  font-size: var(--smaller-font-size);
  padding: 1rem;
}
.social-icons i {
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #fb5849; /* Your desired hover color */
}

@media (min-width: 1399.38px) {
  .container {
    width: 84%;
  }
}
@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
  }
  .navbar a.nav-link {
    padding: 0.6rem 0;
  }
  .navbar a.btn {
    margin-top: 10px;
  }
  section.home .text-home-bold {
    font-size: var(--h1-font-size);
    line-height: 65px;
  }
  section.home img {
    margin-top: 30px;
  }
  section.services {
    padding-top: 5rem;
  }
  section.services p {
    margin-bottom: 0 !important;
  }
  section.about {
    padding-top: 5rem;
  }
  section.about .about-content {
    margin-top: 30px;
  }
  section.menu,
  section.testimonials {
    padding-top: 5rem;
  }
  section.newslatter {
    padding-top: 5rem;
  }
  section.newslatter .newslatter-content {
    padding: 3rem;
  }
  section.newslatter .form-newslatter {
    display: block !important;
  }
  section.newslatter .form-newslatter .form-control {
    margin-bottom: 20px;
  }
  section.newslatter .w-50 {
    width: 100% !important;
  }
  section.gallery {
    padding-top: 6rem;
  }
  section.gallery .gallery-img {
    margin-top: 30px;
  }

  section.review {
    padding-top: 6rem;
  }
  section.review .review-img {
    margin-top: 30px;
  }

  footer.footer-section {
    padding-top: 7rem;
  }

  #reservation {
    padding: 80px 0px;
    margin-top: 80px;
  }

  #reservationForm {
    margin-left: 0;
    margin-top: 30px;
    padding: 30px 20px;
  }

  #reservation .phone,
  #reservation .message {
    margin-bottom: 30px;
  }

  #reservation .section-heading h2 {
    font-size: 28px;
  }

  #reservationForm h4 {
    font-size: 26px;
  }
}
@media (max-width: 414px) {
  footer.footer-section .col-md-7 {
    margin-top: 15px;
  }
  footer.footer-section .col-md-7 .col-md-3 {
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=style.css.map */




/*-----------Category---------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 125%;
  }
}
@media screen and (min-width: 2560px) {
  html {
    font-size: 150%;
  }
}



.category-section {
    margin-top: 50px;
}
.category-section h1{
    text-align: center;
    padding: 20px;
    font-size: 2rem;
}

/* Carousel and animation css starts */
.rc-carousel {
  --box-gap: 1.5rem;
  --tile-size: 8rem;
  width: 100%;
  max-width: calc(
    (var(--tile-size) + var(--box-gap)) * ((var(--tiles) / 2) - 1)
  );
  margin: var(--box-gap) auto;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.rc-carousel::before,
.rc-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5rem;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    from(transparent),
    to(var(--body-bg))
  );
  background-image: -o-linear-gradient(
    var(--direction),
    transparent,
    var(--body-bg)
  );
  background-image: linear-gradient(
    to var(--direction),
    transparent,
    var(--primary-light-color)
  );
  z-index: inherit;
}
.rc-carousel::before {
  left: 0;
  --direction: left;
}

.rc-carousel::after {
  right: 0;
  --direction: right;
}
.rc-carousel-strip {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: slideX 20s linear infinite;
  animation: slideX 20s linear infinite;
}
.rc-carousel-strip.reverse {
  /* reverse animation */
  animation-direction: reverse;
}
.rc-carousel-strip:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-carousel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: var(--box-gap);
}

.rc-carousel-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: var(--tile-size);
  height: var(--tile-size);
  background-color: var(--yellow-color);
  padding: .5rem;
  box-shadow:(0px 5.42857px 40.7143px rgba(0, 0, 0, 0.05));
  border-radius: 10px;
}

.rc-carousel-item-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;

}

@-webkit-keyframes slideX {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  0% {
    -webkit-transform: translateX(
      calc(-1 * (var(--tile-size) + var(--box-gap)) * (var(--tiles) / 2))
    );
    transform: translateX(
      calc(-1 * (var(--tile-size) + var(--box-gap)) * (var(--tiles) / 2))
    );
  }
}

@keyframes slideX {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  0% {
    -webkit-transform: translateX(
      calc(-1 * (var(--tile-size) + var(--box-gap)) * (var(--tiles) / 2))
    );
    transform: translateX(
      calc(-1 * (var(--tile-size) + var(--box-gap)) * (var(--tiles) / 2))
    );
  }
}

/* Animation won't work if you preferes reduced motion */
@media (prefers-reduced-motion) {
  /* styles to apply if a user's device settings are set to reduced motion */
  .rc-carousel::before,
  .rc-carousel::after {
    display: none;
  }
  .rc-carousel-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .rc-carousel-box [aria-hidden="true"] {
    display: none;
  }
  .rc-carousel-strip {
    animation: none;
  }
}
/* reduced motion css ends */
/* Carousel and animation css ends */


/* 
---------------------------------------------
reservation
--------------------------------------------- 
*/

#reservation .section-heading {
  margin-bottom: 30px;
}

#reservation .section-heading h6 {
  color: #fff;
}

#reservation .section-heading h2 {
  color: #fff;
  font-weight: 400;
}

#reservation .section-heading h6:before {
  background-color: #fff;
}

#reservation p {
  color: #fff;
  margin-bottom: 65px;
}

#reservation {
  margin-top: 120px;
  padding: 120px 0px;
  background-image: url(../images/reservation-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#reservation .phone,
#reservation .message {
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 0px 0px 20px 0px;
  margin-bottom: 50px;
}

#reservation .phone i,
#reservation .message i {
  width: 70px;
  height: 70px;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  color: #fff;
  background-color: orangered;
  border-radius: 50%;
  font-size: 24px;
  margin-top: -35px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#reservation .phone h4,
#reservation .message h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}

#reservation .phone span a,
#reservation .message span a {
  font-size: 14px;
  color: #2a2a2a;
  transition: all .3s;
}

#reservation .phone span a:hover,
#reservation .message span a:hover {
  color: orangered;
}

#reservationForm {
  margin-left: 30px;
  padding: 45px 30px;
  background-color: #fff;
  border-radius: 5px;
}

#reservationForm h4 {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  color: #2a2a2a;
  margin-bottom: 30px;
}

.datepicker-days {
  padding: 30px;
  cursor: pointer;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  color: #2a2a2a;
  font-size: 14px;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 100%;
  height: 46px;
  border-radius: 5px;
  outline: none;
  padding-top: 3px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: orangered;
}

.contact-form button {
  margin-top: -10px;
  font-size: 13px;
  color: #fff;
  background-color: orangered;
  padding: 12px 25px;
  width: 100%;
  box-shadow: none;
  border: none;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  transition: all .3s;
}

.contact-form button:hover {
  opacity: .9;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

.contact-form ::-webkit-input-placeholder { /* Edge */
  color: #2a2a2a;
}

.contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #2a2a2a;
}

.contact-form ::placeholder {
  color: #2a2a2a;
}


  /*Reservation Model popup*/
  .modal-content {
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #333;
  }
  #modalMessage {
    font-size: 1.2rem;
  }
/*=========================================================================================================*/

/* Optional: Button polish for mobile */
.cart-mobile-btn,
.user-mobile-btn {
  padding: 0.6rem 0.8rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
}

.cart-mobile-btn i,
.user-mobile-btn i {
  color: var(--white-color);
  font-size: 1.2rem;
}


/*========Cart Page========*/

.shopping-cart {
  border: 1px solid orangered;
  position: fixed; /* Use fixed instead of absolute for consistent positioning */
  right: -25rem; /* Start with the cart off-screen to the right */
  top: 6rem; /* Position the cart at the top */
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 25rem;
  background: #ffffff;
  transition: right 0.4s ease; /* Smooth transition for sliding effect */
  z-index: 1;
}

.shopping-cart.active {
  right: 1rem; /* When active, position the cart 2rem from the right edge */
}
.cart-close {
    text-align: right;
    padding: 5px;
}
.cart-close i {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    background: orangered;
    border-radius: 50%;
    padding: 2px;
}
#cart-count {
    font-size: 0.65rem;
    padding: 4px 6px;
    min-width: 20px;
    text-align: center;
}
.shopping-cart .box{
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin: 1rem 0;
}
.shopping-cart .box img{
  width: 5rem;
  border-radius: 10px;
}
.shopping-cart .box .bx-trash{
  font-size: 2rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  cursor: pointer;
  color: orangered;
  transform: translateY(-50%);
}
.shopping-cart .box .content h3{
  color: var(--black-color);
  font-size: 1.3rem;
  padding-bottom: 1rem;
}
.shopping-cart .box .content span{
  color: var(--black-color);
  font-size: 1.2rem;
}
.shopping-cart .box .content .quantity{
  padding-left: 1rem;
}
.shopping-cart .stotal{
  font-size: 1.2rem;
  padding: 0 .2rem;
  text-align: right;
  font-weight: bold;
  color: var(--black-color);
}
.shopping-cart .tax{
  font-size: 1.1rem;
  padding: 0 .2rem;
  text-align: right;
  font-weight: bold;
  color: var(--black-color);
}
.shopping-cart .total{
  font-size: 1.2rem;
  padding: 0 .2rem;
  text-align: right;
  font-weight: bold;
  color: var(--black-color);
}
.cartbtn{
  border: .1rem solid orangered;
  margin-top: 1rem;
  display: inline-block;
  padding: .8rem 3rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: .5rem;
  color: var(--black-color);
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.cartbtn:hover{
  background: orangered;
  color: #ffffff;
}
.shopping-cart .btn{
  display: block;
  text-align: center;
  margin: 1rem 0;
}
.cart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}

/* Table Input */
.table-input {
  flex: 1;
  height: 45px;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 15px;
}

/* Animated Offer Button (Balloon Style) */
.offer-btn {
  background: linear-gradient(135deg, orangered, #ff8fa3);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  animation: bounce 1.5s infinite ease-in-out;
  box-shadow: 0px 4px 12px rgba(255, 0, 80, 0.4);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  /* Make input full width */
  .table-input {
    width: 70%;      /* full width */
    box-sizing: border-box; /* include padding in width */
    font-size: 18px;  /* slightly bigger for easier typing */
    height: 45px;
  }

  /* Make button full width and bigger tap area */
  .offer-btn {
    width: 30%;
    padding: 14px 0;
    font-size: 18px;
    border-radius: 12px;
    animation: none; /* optional: stop bouncing on mobile */
    box-shadow: none; /* optional: cleaner look */
  }

   #reservation {
    padding: 60px 15px;
    margin-top: 60px;
  }

  #reservation .section-heading h2 {
    font-size: 24px;
    text-align: center;
  }

  #reservation p {
    text-align: center;
    margin-bottom: 40px;
  }

  #reservation .phone,
  #reservation .message {
    padding: 0 10px 20px;
  }

  #reservation .phone h4,
  #reservation .message h4 {
    font-size: 18px;
  }

  #reservation .phone span a,
  #reservation .message span a {
    font-size: 13px;
  }

  #reservationForm {
    margin-left: 0;
    margin-top: 30px;
    padding: 25px 15px;
  }

  #reservationForm h4 {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 13px;
    height: 42px;
    padding: 8px 15px;
  }

  .contact-form textarea {
    height: 120px;
  }

  .contact-form button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .datepicker-days {
    padding: 20px;
  }
}

/* App Download/Promo Section */
.app-download-section {
  padding-top: 50px;
}

.Acontent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.text-column {
  flex: 1 1 45%;
  padding: 20px;
}

.text-column h6 {
  color: orangered;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
}

.text-column h2 {
  font-size: 36px;
  color: #2a2a2a;
  font-weight: 400;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.download-buttons .btn {
  align-items: center;
  padding: 12px 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  width: 200px;
}
.download-buttons .btn:hover {
  color: var(--black-color);
}

/* Image Column */
.image-column {
  flex: 1 1 50%;
  position: relative;
  padding: 20px;
}

.app-image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.app-image-wrapper .background-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: orangered;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* ==========================
   Responsive Media Queries
========================== */

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .text-column,
  .image-column {
    flex: 1 1 100%;
    padding: 20px 10px;
  }

  .text-column h2 {
    font-size: 30px;
  }

  .text-column p {
    font-size: 15px;
  }

  .download-buttons {
    justify-content: center;
  }

}

/* Small Devices (max-width: 767px) */
@media (max-width: 768px) {

  .text-column h2 {
    font-size: 26px;
  }

  .text-column p {
    font-size: 14px;
  }

  .app-image-wrapper img {
    width: 350px;
  }
  .app-image-wrapper .background-decor {
    width: 300px;
    height: 300px;
  }

}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .text-column h2 {
    font-size: 22px;
  }

  .app-image-wrapper img {
    width: 300px;
  }
  .app-image-wrapper .background-decor {
    width: 280px;
    height: 280px;
  }

}

.bottom-nav {
  position: fixed;
  bottom: 15px; /* little above screen edge */
  left: 15px;
  right: 15px;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  border-radius: 15px;
  padding: 10px 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

.bottom-nav .nav-item {
  text-align: center;
  color: #555;
  font-size: 12px;
  text-decoration: none;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.bottom-nav .nav-item i {
  display: block;
  font-size: 22px;
  margin-bottom: 3px;
}

.bottom-nav .nav-item.active,
.bottom-nav .nav-item:hover {
  color: orangered;
}

.bottom-nav .nav-item.active i,
.bottom-nav .nav-item:hover i {
  transform: scale(1.2);
}
