@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Merienda:wght@300..900&display=swap');


:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #f44749;
  --secondary-color:              #f3af24;
  --section-bg-color:             #F9F9F9;
  --dark-color:                   #000000;
  --title-color:                  #565758;
  --news-title-color:             #292828;
  --p-color:                      #1a1a1a;
  --border-color:                 #eaeaea;
  --border-radius-default:        .25rem;

  --body-font-family:            "Averia Libre", system-ui;;

  --h1-font-size:                 76px;
  --h2-font-size:                 56px;
  --h3-font-size:                 42px;
  --h4-font-size:                 28px;
  --h5-font-size:                 26px;
  --h6-font-size:                 22px;

  --p-font-size:                  18px;
  --menu-font-size:               18px;
  --category-font-size:           14px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

html {
  scroll-behavior: smooth;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
    overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p,
.list .list-item {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  CUSTOM BUTTON              
-----------------------------------------*/
.custom-btn {
  border: 0;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  padding: 10px 35px;
  background: linear-gradient(135deg, #28a745, #1e7e34); 
}
.underline-title {
  display: inline-block;
  position: relative;
  font-family: "Merienda", cursive;
  padding-bottom: 10px;
}

.underline-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #c95f12;
  transition: all 0.3s ease-in-out;
  padding: 1.0rem 0;
}

.navbar.shrink {
  padding: 0.5rem 0;
  background:linear-gradient(rgba(201, 95, 18, 0.95), rgba(201, 95, 18, 0)); 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand-image {
  transition: all 0.3s ease-in-out;
}

.navbar.shrink .navbar-brand-image {
  width: 9rem; 
}
@media (max-width: 768px) {
  .navbar.shrink {
      background:linear-gradient(rgba(201, 95, 18, 0.95), rgba(201, 95, 18, 0.6)); 
    }
  .navbar.shrink .navbar-brand-image {
    width: 8rem;
    height: auto;
    margin-right: 10px;
  }
}

.navbar .container-fluid {
  border-radius: var(--border-radius-medium);
  padding: 0 4.75rem;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
  max-height: 6rem;
}

.navbar .navbar-brand-image {
}

.navbar-brand-image {
  width: 9rem;
  height: auto;
}

.navbar .custom-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #28a745, #1e7e34); 
  border: none;
  color: #fff;
  transition: all 0.3s;
}
.navbar .custom-btn:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color:#ffd3b0;
}
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    margin: 4px 0; /* reduce vertical spacing */
    padding: 8px 12px; /* tighten padding */
  }

  .navbar-nav {
    gap: 0 !important; /* remove flexbox gap if used */
  }
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}
/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 50vh;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .container,
.site-header .row {
  height: 100%;
}

.site-header h1,
.site-header p {
  margin: 0;
  color: #fff;
}

/* Responsive text sizes */
.site-header h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  font-family: "Tangerine", cursive;
}

.site-header p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
}

/* Optional: darker overlay */
.site-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-about-header {
  background-image: url('../images/header/about-header.jpg');
}

.site-menu-header {
  background-image: url('../images/header/menu-header.jpg');
}

.site-reviews-header {
  background-image: url('../images/header/reviews-header.jpg');
}
.site-order-header {
  background-image: url('../images/header/order-header.jpg');
}

.overlay {
  background: linear-gradient(to top, var(--dark-color), transparent 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 20.542rem;
  padding-bottom: 20.542rem;
}

.hero .container {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.heroText h1{
  font-family: "Tangerine", cursive;
}
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  HERO SLIDE               
-----------------------------------------*/
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-thumb {
  position: relative;
}

.carousel-caption {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  text-align: left;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 40px;
}

.hero-carousel .reviews-text,
.hero-text {
  color: var(--white-color);
}
.heroText h1 {
  font-size: clamp(2.85rem, 5vw, 4rem); 
  line-height: 1.2;
  font-weight: 700;
}

.heroText h6 {
  font-size: clamp(1rem, 2vw, 1.25rem); 
  font-weight: 500;
  line-height: 1.5;
}

.heroText p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem); 
  line-height: 1.6;
}

.carousel-caption h4.hero-text {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
}

.carousel-caption span {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.5;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  position: absolute;
  top: auto;
  bottom: 0;
  opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  border: 1px solid #c95f12;
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius:50%;
}

.hero-carousel .carousel-control-prev {
  left: auto;
  right: 60px;
}

.hero-carousel .carousel-control-next {
 
}

.hero-carousel .carousel-control-prev:hover, 
.hero-carousel .carousel-control-next:hover {
  border:1px solid #28a745;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-image: none;
  width: inherit;
  height: inherit;
  line-height: 60px;
}

.hero-carousel .carousel-control-prev-icon::before,
.hero-carousel .carousel-control-next-icon::before {
  font-family: bootstrap-icons;
  display: block;
  margin: auto;
  font-size: var(--h5-font-size);
  color: var(--white-color);
}

.hero-carousel .carousel-control-prev-icon::before {
  content: "\f13f";
}

.hero-carousel .carousel-control-next-icon::before {
  content: "\f144";
}

.reviews-icon {
  color: var(--secondary-color);
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
  background-image: url('../images/section-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}
.services .section-title {
  margin-bottom: 60px;
}

.services .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}
.services i {
  color: #c95f12;
}

.services .content .img-overlap {
  aspect-ratio: 1/1;
}

/* Spinning animation */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Apply spin only when this class is added  */
.spin-active {
  animation: spinSlow 60s linear infinite;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .spin-active {
    animation: none !important;
  }
}

.services p {
  color: var(--contrast-color);
}

.services .content-title {
  color:#c95f12;
  font-weight: 300;
}

.services .content-title strong {
  font-weight: 700;
}

.services .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}


/*---------------------------------------
  MENU               
-----------------------------------------*/
.menu,
.about,
.news,
.related-news,
.newsletter,
.comments {
  background: var(--section-bg-color);
}

.menu-thumb {
  position: relative;
  overflow: hidden;
}

.menu-image {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 10px;
}

.menu-image-wrap {
  position: relative;
}

.menu-tag {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  background-color: #218838;
  color: #fff;
  border-radius: 10%;
  font-size: clamp(0.75rem, 1.5vw, 1rem); /* responsive */
}

.menu-info {
  padding: 20px 20px 30px 20px;
}

.menu-info h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem); /* responsive heading */
  font-weight: bold;
}

.title-price-wrap {
  display: block;
}

.price-tag {
  color: #218838 !important;
  font-size: clamp(1rem, 2vw, 1.25rem); /* responsive price */
  font-weight: var(--font-weight-semibold);
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  line-height: 1.4;
  text-align: center;
  border-radius: 6px;
}

.reviews-text {
  font-size: clamp(0.85rem, 1.5vw, 1rem); /* responsive review text */
}

.reviews-stars i {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem); /* responsive star size */
}

.newsletter-image {
  border-radius: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-width: 450px;
  max-height: 450px;
}
/*---------------------------------------
              MENU   gALLERY
-----------------------------------------*/
.gallery-item .card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item .card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-img-container {
  background-color: #f9f9f9;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  z-index: 2;
  transition: transform 0.3s ease;
}

.card-img-container:hover img {
  transform: scale(1.05);
}

.card-img-loading {
  font-size: 2rem;
  z-index: 1;
}

.card-body {
  padding: 1rem;
  text-align: center;
}

.card-body .h6 {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card-body .h6:hover {
  color: #c95f12;
  text-decoration: none;
}

.price-tag {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  color: #c95f12;
}

.card-body p {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  font-style: italic;
  margin-top: 0.75rem;
}

#load-more-btn{
  color: #c95f12;
  border-color: #c95f12;
  background-color: #c95f12;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  color: #c95f12;
  border-color: #c95f12;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #c95f12;
  color: #fff;
}

.filter-btn.active {
  background-color: #c95f12;
  color: #fff;
  border-color: #c95f12;
}
/* Container holding filters and search */
.gallery .filter-search-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
/* Search panel styling */
.gallery .panel-search {
  flex-shrink: 0;
}

.gallery .panel-search input {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  min-width: 200px;
  transition: border 0.3s;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery .filter-search-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery .filter-buttons {
    justify-content: center;
  }

  .gallery .panel-search {
    width: 100%;
  }

  .gallery .panel-search input {
    width: 100%;
  }
}
.gallery .panel-search input {
  border-radius: 30px;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  box-shadow: none;
  width: 220px;
  border-radius:10px !important;
  transition: border 0.3s;
}

.gallery .panel-search input:focus {
  border-color: #d8573c;
  outline: none;
}
.gallery .panel-search {
  position: relative;
  max-width: 240px;
  width: 100%;
}

.gallery .panel-search input {
  border-radius: 30px;
  padding: 0.5rem 1rem 0.5rem 2.2rem; /* space for icon */
  border: 1px solid #ccc;
  width: 100%;
  transition: border 0.3s;
}

.gallery .panel-search input:focus {
  border-color: #d8573c;
  outline: none;
}

.gallery .panel-search .search-icon {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s;
  opacity: 0.6;
}
/* Optional: hide icon when typing */
.gallery .panel-search input:not(:placeholder-shown) + .search-icon {
  opacity: 0;
}
/*---------------------------------------
  TEAM       
-----------------------------------------*/
.about.section-padding {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
}

.team-thumb {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.team-thumb:hover {
}

.team-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
}

.team-thumb h4 {
  font-size: clamp(1.2rem, 1vw + 0.8rem, 1.6rem);
  font-weight: 600;
  color: #222;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.team-thumb p {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
  color: #777;
  margin-bottom: 0;
}

/*---------------------------------------
  reviewS               
-----------------------------------------*/
.reviews .review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.reviews .review-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.reviews .card-text {
  font-size: 1rem;
  color: #333;
}

.reviews .review-stars {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.underline-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color, #fcba03);
  margin: 0.5rem auto 0;
  border-radius: 10px;
}


/*---------------------------------------
  CUSTOM FORM – ENHANCED & RESPONSIVE           
-----------------------------------------*/
/* Base form control styles */
.custom-form .form-control {
  margin-bottom: 20px;
  padding: 14px 10px;
  transition: all 0.3s;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Label styling */
.custom-form label {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 500;
  margin-bottom: 6px;
  display: inline-block;
}

/* Submit button */
.custom-form button[type="submit"] {
  background: linear-gradient(135deg, #28a745, #1e7e34); 
  border: 0;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.custom-form button[type="submit"]:hover {
  border: 1px solid #c95f12;
}

/* Responsive textarea */
.custom-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/*---------------------------------------
  SELECT2 STYLING TO MATCH FORM          
-----------------------------------------*/

.select2-container--default .select2-selection--single {
  height: 48px !important;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 10px;
}

/* Ensure full width inside form */
.select2-container {
  width: 100% !important;
}


.BgImage {
  background-image: url('../images/section-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.BgImage2 {
  background-image: url('../images/sectioner.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  filter: saturate(1.3);
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .BgImage2 {
    height: 50vh;
  }
}
.BgImage h2 {
  font-size: 3rem;
  font-weight: bold;
  color:#c95f12;
  margin-bottom: 0.5rem;
}

.BgImage p {
  font-size: 1.2rem;
  margin: 0;
  color:#fff;
}

.BgImage > .container {
  position: relative;
}


/*---------------------------------------
  FOOTER              
-----------------------------------------*/
.site-footer {
  background-image: url('../images/footer.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

.site-footer::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 150%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.site-footer .container {
  position: relative;
}

.copyright-text {
  font-size: var(--menu-font-size);
}

.tel-link {
  color: var(--p-color);
}

.site-footer h5 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem); 
}

.site-footer h6 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem); 
}


.site-footer p,
.site-footer a,
.site-footer .copyright-text {
  font-size: clamp(1rem, 1vw + 0.4rem, 1.1rem);
  line-height: 1.6;
  color:#fff;
}

.site-footer .fs-5 {
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.5rem); 
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.btn-social {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid;
  border-radius: 50%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: none;
}

/* Facebook */
.btn-facebook {
  background-color: #1877f2;
  border-color: #c95f12;
  color: white;
}
.btn-facebook:hover {
  background-color: transparent;
  border-color: #1877f2;
  color: white;
}

.btn-instagram {
  background-color: #e4405f;
  border-color: #c95f12;
  color: white;
}
.btn-instagram:hover {
  background-color: transparent;
  border-color: #e4405f;
  color: white;
}

.btn-youtube {
  background-color: #ff0000;
  border-color: #c95f12;
  color: white;
}
.btn-youtube:hover {
  background-color: transparent;
  border-color: #ff0000;
  color: white;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1180px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 1170px) {
  h1 {
    font-size: 56px;
  }
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .site-header,
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link {
    padding-top: 5px;
    padding-bottom: 10px;
  }

  #BookingModal .modal-content {
    padding-bottom: 200px;
  }

  #BookingModal .modal-content::before {
    background-image: url('../images/sincerely-media-HoEYgBL_Gcs-unsplash-mobile.jpg');
    background-position: bottom;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    transform: rotate(180deg);
  }

  #BookingModal .modal-body {
    padding-top: 18px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 480px) {
  .newsletter-image {
    max-width: 310px;
    max-height: 310px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }
}
/*--------preloader-------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c95f12; 
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.logo-loader {
  width: clamp(140px, 15vw, 200px);
  height: auto;
  animation: pulse 1s infinite ease-in-out;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 3rem;
  height: 3rem;
  font-size: 1.875rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
.text_icon {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.8125rem;
}