@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montez&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===== variable ==== */
:root {
  --primary-color: #191616;

  --gold-color: #fcda9a;
}
/* ================== Gloabal Classes =========== */
.sec-bg {
  background-color: var(--primary-color);
}
.bg-gold {
  background-color: var(--gold-color);
}
.h-100vh {
  height: 100vh;
}
.fw-400 {
  font-family: "Poppins", serif;
  font-weight: 400;
}
.invert {
  filter: invert(1);
}
.button:focus,
.navbar-toggler {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
.sec-heading {
  font-size: 25px;
}
.banner {
  background-size: cover;
  background-attachment: fixed;
}

.box-shadow-brand-color{
  box-shadow: 10px 10px 9px -3px rgba(46, 37, 37, 1);
}

/* ==== Font ==== */
.Marcellus {
  font-family: "Marcellus", serif;
}
.montez-regular {
  font-family: "Montez", serif;
  font-weight: 400;
  font-style: normal;
}
.poppins {
  font-family: "Poppins", serif;
}
.btn-outline-warning {
  border-color: var(--gold-color) !important ;
}
.btn-outline-warning:hover {
  background-color: var(--gold-color) !important ;
}
/* ==== Color ===== */
.gold-color {
  color: var(--gold-color);
}
/* ===================  Header Styling ========================= */
header #navbar {
  /* height: 80px; */
  /* background-color: var(--primary-color); */
}

.nav-link {
  color: #fff;
  margin: 0 15px;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.nav-link:hover {
  text-shadow: -2px 4px 2px rgb(255, 255, 255, 0.33);
  color: rgba(252, 218, 154, 0.99);
}
.nav-link:hover,
.nav-link:visited {
  color: #fff;
}

.dropdown:hover > .dropdown-menu {
  display: block !important;
  transition: all ease 0.2s;
}
.sticky {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99;
  animation: stickyMenu 0.75s ease-in-out;
}

@keyframes stickyMenu {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0px;
    opacity: 1;
  }
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 99;
}
#navbar.sticky .nav-link {
  color: var(--gold-color);
}

#navbar.sticky {
  padding: 15px 20px;
  background: var(--primary-color);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: stickyMenu 0.75s ease-in-out;
}
/* ======================   slider =================== */

.over-slide {
  display: flex;
  width: 100%;
  height: 75vh;
  /* margin-top: 80px; */
}

.over-slide .slider-img {
  flex: 1;
  transition: flex 0.5s ease-in-out, height 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.slider-img.active {
  flex: 10;
}

.over-slide .slider-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s ease-in-out;
}
.content {
  position: absolute;
  bottom: -50px; /* Start below */
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  font-size: 60px;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 90%;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  line-height: 66px;
}

.content span {
  display: block;
  opacity: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  animation: fadeInUp 1s ease-in-out forwards;
}

.content span:nth-child(1) {
  animation-delay: 0.2s;
}
.content span:nth-child(2) {
  animation-delay: 0.4s;
}
.content span:nth-child(3) {
  animation-delay: 0.6s;
}

/* Keyframes for the sequential text appearance */
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.over-slide .slider-img.active .content {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  bottom: 34%;
}

/* ============================ About Us =================== */
.about-left-first {
  background-color: #f6b255;
}
.about-left-first span:first-child {
  font-size: 16px;
}
.about-left-first span:last-child {
  font-size: 22px;
  line-height: 22px;
}

.about-content h3 {
  margin-top: 30px;
  font-size: 40px;
  color: var(--gold-color);
  font-family: "Marcellus", serif;
}
.about-content p {
  font-size: 18px;
  color: #fcfcfc;
  font-family: "Marcellus", serif;
  margin-top: 20px;
}
.sc_item_title_text {
  font-size: 45px;
  color: #fff;
  z-index: 1;
  position: relative;
}
/* ==================== services-box ================ */
.services-box {
  background-color: #191616;
  height: 280px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.services-box.active {
  transform: translateY(-10px);
  -webkit-box-shadow: 1px 1px 104px -25px rgba(252, 218, 154, 1);
  -moz-box-shadow: 1px 1px 104px -25px rgba(252, 218, 154, 1);
  box-shadow: 1px 1px 60px -25px rgba(252, 218, 154, 1);
}
.service {
  background-color: #0d0c0c;
}
.service::after {
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  background-image: url(../image/lief.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 400px;
  height: 400px;
}
.service-heading {
  font-size: 18px;
}
/* ============== diner-banner============ */
.diner-banner {
  height: 75vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.diner-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0c0c7e;
}

/* ====================== content ================= */
.contact h2 {
  font-size: 60px;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1916166b;
}
.form-label {
  font-size: 18px;
}
.form-control {
  border-bottom: 1px solid var(--gold-color) !important;
  color: #fff !important;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
}

.address {
  background-color: var(--primary-color);
}
.address h4 {
  font-size: 18px;
}
/* ======================== */

.galery .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}
.galery .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}
.galery .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.menu-item {
  transition: transform 0.3s ease-in-out;
  margin: 0 10px 20px 0; /* Adjust the margin as needed */
}

.menu-item img {
  max-width: 100%;
  height: auto;

  object-fit: cover;
  border-radius: 5px;
}

.galery {
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.76234243697479) 0%,
      rgba(0 0 0 / 47%) 100%
    ),
    url("../image/evetn.avif");

  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ================== Footer ============= */
.float.call {
  bottom: 120px;
  background-color: #179761;
}
.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #25d3667d;
  }
  80% {
    box-shadow: 0 0 0 10px #25d36696;
  }
}

/* =============== Popup ============= */
.form-popup {
  display: none;
  width: 400px;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  /* Black background with opacity */
  justify-content: center;
  /* Centered */
  align-items: center;
  color: white;
}

.form-close {
  position: absolute;
  top: -17px;
  right: 0px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 999;
}

#scrollBtn {
  background-color: #191a1a;
  bottom: 0;
}

/* ===================== contact us design ================ */

.contact-form {
  background-color: #191616;
  padding: 40px;

  padding-bottom: 20px;
  padding-top: 20px;
  box-shadow: 1px 1px 60px -25px rgba(252, 218, 154, 1);
}

.contact-form h2 {
  font-size: 4rem;
  color: var(--gold-color);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 60px;
  align-items: center;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  border: 5px solid var(--gold-color);
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: var(--gold-color);
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #fff;
  font-size: 1em;
  margin-bottom: 0;
}

/* ======================= Catering page Section ===================== */
.hero-banner {
  height: 780px;
  width: 1000px;
  background-size: cover;
  background-position: center;
}
.welcome-section {
  /* margin-left: 250px; */
  width: 1000px;
  position: relative;
  -webkit-box-shadow: 10px 10px 9px -3px rgba(46, 37, 37, 1);
  -moz-box-shadow: 10px 10px 9px -3px rgba(46, 37, 37, 1);
  box-shadow: 10px 10px 9px -3px rgba(46, 37, 37, 1);
}
.sec_pad {
  padding: 4rem 0px;
}

.service_heading {
  font-size: 55px;
}
/* .service-content {
  font-size: 14px;
} */
.sec-heading-heading {
  font-size: 22px;
}
.sec-sub-heading {
  font-size: 22px;
  margin-bottom: 25px;
}
.content-container {
  padding: 20px 25px;
  height: 520px;
   width: 75%;
  /* background-color: #191616; */

  /* box-shadow: 1px 1px 60px -25px rgba(252, 218, 154, 1); */
}
.scroll-content {
  transition: transform 0.5s ease;
}
#scrollable {
  scroll-behavior: smooth;
  transition: transform 0.5s ease-in-out;
}
.remove-scroll-bar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.scroll-content:hover {
  animation-play-state: paused;
}
.center-img{
  height: 670px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.container-text {
  background-color: #191616d9;
  height: 480px;
  left: 0px;
  width: 320px;
  box-shadow: 10px 10px 9px -3px rgba(46, 37, 37, 1);
}
.container-img {
  height: 520px;
  width: 75%;
}
.content-container img {
  height: 100%;
  object-fit: cover;
}
.items-stiky {
  position: -webkit-sticky;
  position: sticky;
  top: 17rem;
}
.vh-100 {
  height: 100vh;
}
/* ===================== Accordian ==================== */
.accordion-item .accordion-header .accordion-button h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  font-family: "Poppins", serif;  
}
.faq_list .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(../image/plus.webp) !important;
  transform: rotate(-139deg);
}
.faq_list .accordion-button::after {
  background-image: url(../image/plus.webp) !important;
}
.faq_list .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  border: none;
}
/* ========================== responsive  */

@media (max-width: 768px) {
  .over-slide {
    height: 250px;
  }
}
@media (max-width: 620px) {
  #navbar{
    padding: 0px;
  }
  .over-slide .slider-img.active .content {
    bottom: 37%;
    font-size: 21px;
    line-height: 21px;
  }
  .slider-img.active {
    flex: 15;
  }

  /* ========== */
  .about-content h3 {
    font-size: 21px;
  }
  .about-content p {
    font-size: 15px;
  }
  .h-100vh,
  .diner-banner,
  .swiper-container {
    height: auto;
  }
  .sc_item_title_text,
  .contact h2 {
    font-size: 21px;
  }
  .contact .w-75 {
    width: 100% !important;
  }
  .about-left-first span:last-child {
    font-size: 16px;
    line-height: 18px;
  }
  .squishy {
    font-size: 14px;
    padding: 0.6rem;
  }
  .service-content.w-50,
  .service-content.w-75,
  .container-img,
  .content-container{
    width: 100% !important;
  }
  /* =========== catering page ========= */
  .catering-page {
    height: auto;
  }
  .hero-banner {
    height: 256px;
    width: 100%;
  }
  .welcome-section {
    width: auto;
    margin-top: 74px;
  }
  .service_heading {
    font-size: 25px;
  }
  .center-img.rounded-top-pill {
    border-radius: 0 !important;
  }
  /* ================= Contact Page  */
  .contact-form { 
    padding: 16px;
  }
  .contact-form h2 {
    font-size: 2rem;
  }
  .contact-info-content p {    
    font-size: 0.9em;
  }
  .contact-info-icon {
    height: 53px;
    width: 53px;
  }
  .contact-info-icon img {
    width: 30px;
  }
  .contact-info-content h4 { 
    font-size: 1.2em;
  }

}
