/*
[Master Stylesheet] 
Project: Restaurant and Catering Html
-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
 1. Index Page
-------------------------------------------------------------------*/

/********************************************************
    body start
********************************************************/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;family=Manrope:wght@200..800&amp;family=Merienda:wght@300..900&amp;display=swap");
:root {
  --rac-primary-color: #c53030;
  --rac-secondary-color: #9b2c2c;
  --rac-accent-color: #f7fafc;
  --rac-cream-color: #fff8dc;
  --rac-font-color: #e2e8f0;
  --rac-white-color: #ffffff;
  --rac-black-color: #1a202c;
  --rac-border-color: #4a5568;
  --rac-border-radius: 20px;
  --rac-transition: all 0.3s;
  --rac-box-shadow: 0 0 20px 0 rgba(197, 48, 48, 0.2);
  --logo1:#ad1f25;
  --logo2:#fbc6b0;
  --bg1:#fbf6e2;
}


.bg1{
  background-color: var(--bg1);
}

.bg2{
  background-color: var(--logo2);
}

.metamorphous-regular {
  font-family: "Metamorphous", serif;
  font-weight: 400;
  font-style: normal;
}



html {
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* p{
  color: #fff;

} */

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--rac-primary-color);
  min-height: 150px;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  -webkit-transition: var(--rac-transition);
  -moz-transition: var(--rac-transition);
  -ms-transition: var(--rac-transition);
  -o-transition: var(--rac-transition);
  transition: var(--rac-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: var(--rac-transition);
  -moz-transition: var(--rac-transition);
  -ms-transition: var(--rac-transition);
  -o-transition: var(--rac-transition);
  transition: var(--rac-transition);
  margin: 0;
  padding: 0;
  word-break: break-word;
  text-transform: capitalize;
}

h1, .h1 {
  font-family: 'Metamorphous', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--rac-primary-color);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.1;
}
h2, .h2 {
  font-family: 'Metamorphous', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--logo1);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}
h3, .h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--logo1);
  margin-bottom: 1rem;
  line-height: 1.2;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rac-primary-color);
  margin-bottom: 0.8rem;
}
h5, .h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--logo2);
  margin-bottom: 0.7rem;
}
h6, .h6 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--rac-black-color);
  margin-bottom: 0.5rem;
}

/* .rac_section_heading h3 {
  font-size: 2.5rem;
  color: var(--logo1);
  font-family: 'Metamorphous', serif;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.rac_section_heading h5 {
  font-size: 1.2rem;
  color: var(--rac-primary-color);
  margin-bottom: 0.7rem;
  font-family: 'Inter', sans-serif;
} */

/********************************************************
    Common Style
********************************************************/

.rac_main_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  /* background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%); */
}



.rac_section_space, .space {
  padding: 60px 0;
  /* background: #fff8dc; */
}

.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.625);
  padding-left: calc(var(--bs-gutter-x) * 0.625);
}

.row {
  row-gap: 30px;
}

.rac_section_heading {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.rac_section_heading h5 {
  color: var(--rac-primary-color);
  margin-bottom: 10px;
}

.rac_section_heading h3 {
  position: relative;
  color: var(--logo1);
  font-family: "Metamorphous", serif;
}

.rac_section_heading h3::before,
.rac_section_heading h3::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--rac-primary-color);
  top: 50%;
  transform: translateY(-50%);
}

.rac_section_heading h3::before {
  margin-left: -17px;
}

.rac_section_heading h3::after {
  margin-left: 17px;
}

/********************************************************
    Inner Pages Banner Style
********************************************************/

.rac_inr_pages_banner {
  padding: 120px 0 90px;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.rac_page_title {
  text-align: center;
}

.rac_page_title h1 {
  color: #fcce2b;
  font-weight: 700;
  font-size: 40px;
}

.rac_breadcrumbs {
  display: inline-flex;
  gap: 10px;
  color: var(--rac-white-color);
}

.rac_breadcrumbs a {
  color: var(--rac-white-color);
}

.rac_breadcrumbs a:hover {
  color: var(--rac-primary-color);
}

/********************************************************
    Go to Top Style
********************************************************/

.rac_top_icon a {
  display: flex;
  background-color: var(--rac-primary-color);
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: var(--rac-transition) opacity 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
  animation: border-transform 4s linear infinite alternate forwards;
}

@keyframes border-transform {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    transform: translateY(0px);
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    transform: translateY(-20px);
  }
}

.rac_top_icon a:active {
  background-color: var(--rac-black-color);
}

.rac_top_icon a.show {
  opacity: 1;
  visibility: visible;
}

/********************************************************
    Loader Style
********************************************************/

/* .loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #202020;
} */

.loader img {
  width: 100px;
}

/********************************************************
    Button Style
********************************************************/

.rac_btn {
  border-radius: 5px;
  width: fit-content;
  color: var(--rac-white-color);
  padding: 5px 10px;
  transition: var(--rac-transition);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      to left,
      var(--logo1) 50%,
      transparent 50%
    )
    right;
  transition: var(--rac-transition);
  background-size: 200%;
  border: 1px solid var(--rac-primary-color);
}

.rac_btn:hover {
  background-position: left;
  color: var(--rac-primary-color);
}

/********************************************************
    Banner Section Style
********************************************************/

.rac_banner_wrapper {
  position: relative;
  /* background-image: url(../images/banner_bg.webp); */
  background-size: cover;
  padding: 50px 0 20px;
  background-repeat: no-repeat;
  background-position: top left;
  overflow: hidden;
  background-color: var(--logo1);
}

.rac_banner_wrapper::before {
  content: " ";
  background-image: url(../images/banner_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 45px;
  background-repeat: no-repeat;
  opacity: 0.7;
}

@keyframes circlular {
  from {
    -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
    -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
    -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
    -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
    transform: rotate(0deg) translate(-12px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    transform: rotate(360deg) translate(-12px) rotate(-360deg);
  }
}

.rac_banner_content {
  position: relative;
  padding-left: 190px;
  z-index: 1;
}

.rac_banner_text h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--rac-white-color);
  line-height: 1.25;
}

.rac_banner_text h1 span {
  color: var(--logo2);
}

.rac_banner_text p {
  margin: 10px 0;
  max-width: 720px;
  color: #fff;
}

/* .rac_banner_img {
  position: relative;
  text-align: right;
  padding: 50px;
} */

.rac_banner_btn {
  display: flex;
  gap: 20px;
}

.rac_banner_btn .bnr_btn {
  background: transparent;
  color: var(--rac-white-color);
  border: 1px solid var(--rac-white-color);
}

/********************************************************
    Header Section Style
********************************************************/

.rac_header_wrapper {
  padding: 0px 0;
  position: relative;
  transition: var(--rac-transition);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #000000;
  background-color: var(--logo2);
}

.rac_header_wrapper.fixed {
  position: fixed;
  padding: 0px 0;
  background-color: rgb(32 32 32 / 80%);
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  backdrop-filter: blur(3px);
  background-color: #fff;
  border-bottom: 2px solid #fbc5b0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.rac_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

}

.rac_nav_item {
  display: flex;
  align-items: center;
  gap: 25px;
  /* left: 10%; */
  position: relative;
}

.rac_nav_item > ul {
  display: flex;
  gap: 12px;
}

.rac_nav_item > ul li a {
  font-weight: 600;
  color: #000000;
  padding: 10px 0;
  position: relative;
  font-size: 16px;
  /* font-family: cursive; */
}

.rac_nav_item > ul li a:hover,
.rac_nav_item > ul li a.active {
  color: var(--rac-primary-color);
}

.rac_nav_item > ul li a::before,
.rac_nav_item > ul li a::after {
  content: "";
  background-image: url(../images/nav-hover.png);
  width: 18px;
  height: 5px;
  position: absolute;
  bottom: 0;
  transition: var(--rac-transition);
  opacity: 0;
  visibility: hidden;
}

.rac_nav_item > ul li a::before {
  transform: translateX(-50%);
  left: 0;
}

.rac_nav_item > ul li a::after {
  transform: translateX(50%);
  right: 0;
}

.rac_nav_item > ul li a:hover::before,
.rac_nav_item > ul li a.active::before,
.rac_nav_item > ul li a:hover::after,
.rac_nav_item > ul li a.active::after {
  opacity: 1;
  visibility: visible;
}

.rac_nav_item > ul li a:hover::before,
.rac_nav_item > ul li a.active::before {
  left: 50%;
}

.rac_nav_item > ul li a:hover::after,
.rac_nav_item > ul li a.active::after {
  right: 50%;
}

.rac_nav_item > ul li a:hover::before,
.rac_nav_item > ul li a.active::before {
  left: 50%;
}

.rac_nav_item > ul li a:hover::after,
.rac_nav_item > ul li a.active::after {
  right: 50%;
}

.rac_nav_item > ul li a:hover::before,
.rac_nav_item > ul li a.active::before {
  left: 50%;
}

.rac_nav_item > ul li a:hover::after,
.rac_nav_item > ul li a.active::after {
  right: 50%;
}

.rac_nav_btn {
  display: flex;
  gap: 5px;
  align-items: center;
}

.rac_nav_btn > ul {
  display: flex;
  align-items: center;
  gap: 55px;
}

.rac_toggle_btn,
.rac_res_logo {
  display: none;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50px;
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--logo1);
  stroke-width: 4.5;
  stroke-linecap: round;
}

.ham7 .top {
  stroke-dasharray: 40 172;
}

.ham7 .middle {
  stroke-dasharray: 40 111;
}

.ham7 .bottom {
  stroke-dasharray: 40 172;
}

.menu-open .ham7 .top {
  stroke-dashoffset: -132px;
}

.menu-open .ham7 .middle {
  stroke-dashoffset: -71px;
}

.menu-open .ham7 .bottom {
  stroke-dashoffset: -132px;
}

/********************************************************
    About Section Style
********************************************************/

.rac_about_wrapper {
  position: relative;
  /* background-image: url(../images/about_bg.webp); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  background-color: var(--logo2);
}
/* 
.rac_about_wrapper::before {
  content: " ";
  background-image: url(../images/about_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 45px;
  left: 95px;
  background-repeat: no-repeat;
} */

.rac_about_content {
  position: relative;
  max-width: fit-content;
  margin: auto;
}

.rac_about_content::before,
.rac_about_content::after {
  position: absolute;
  content: " ";
  background-repeat: no-repeat;
  background-size: 100%;
}

.rac_about_content::before {
  /* background-image: url(../images/about_leaf1.webp); */
  width: 314px;
  height: 250px;
  left: -130px;
  top: 0;
}

/* .rac_about_content::after {
  background-image: url(../images/about_leaf2.webp);
  width: 356px;
  height: 431px;
  right: -200px;
  bottom: 5px;
} */

.rac_about_box {
  /* border: 1px solid var(--rac-border-color); */
  /* background: var(--rac-black-color); */
  border-radius: var(--rac-border-radius);
  /* padding: 40px 10px; */
  position: relative;
  z-index: 1;
}

.rac_about_img {
  position: relative;
  border-radius: var(--rac-border-radius);
  overflow: hidden;
}

.rac_about_img img {
  width: 100%;
  object-fit: cover;
}

.rac_about_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rac_about_play a {
  background-color: var(--rac-primary-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.rac_about_play::before,
.rac_about_play::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.rac_about_play:before,
.rac_about_play:after {
  background-color: var(--rac-white-color);
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

.rac_about_play:after {
  animation-delay: 2s;
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

.rac_about_text {
  padding-right: 15px;
}

.rac_about_text h4 {
  color: var(--rac-primary-color);
}

.rac_about_text h3 {
  /* font-family: "Manrope", sans-serif; */
  color: var(--logo1);
  font-size: 32px;
  margin-top: 5px;
  font-family: "Metamorphous", serif;
}

.rac_about_text p {
  margin-top: 20px;
  color: #000000;

}

.rac_about_bottom {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.rac_about_name {
  position: relative;
  z-index: 1;
}

.rac_about_name h4 {
  color: var(--rac-white-color);
  margin: 10px 0 5px;
}

.rac_about_bottom_img {
  margin-bottom: -25px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/********************************************************
    Offer Section Style
********************************************************/

.rac_offer_wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--bg1);
  background-image: url(../images/offer_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_offer_wrapper::before {
  content: " ";
  background-image: url(../images/offer_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 70px;
  left: 55px;
  background-repeat: no-repeat;
}

.rac_offer_box {
  display: flex;
  align-items: center;
  height: 100%;
}

.rac_offer_img {
  min-width: 190px;
  z-index: 1;
}

.rac_offer_img img {
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rac_offer_content {
  border: 1px solid var(--rac-border-color);
  background: var(--rac-black-color);
  border-radius: var(--rac-border-radius);
  padding: 30px;
  position: relative;
  margin-left: -95px;
  padding-left: 125px;
}

.rac_offer_text {
  margin-bottom: 15px;
}

.rac_offer_text p{
  color: #fff;
}

.rac_offer_text h4 > span {
  color: var(--rac-white-color);
  margin-bottom: 12px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rac-border-color);
  font-family: Metamorphous, serif;
}

.rac_offer_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rac-border-color);
  padding-top: 12px;
}

.rac_offer_rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rac_offer_price {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rac_offer_price h4 {
  font-size: 24px;
}

.rac_offer_price h4 del {
  color: #747474;
}

.rac_offer_price h4:last-child {
  color: var(--rac-primary-color);
}

/********************************************************
    Services Section Style
********************************************************/

.rac_service_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/service_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--logo2);

}

.rac_service_box {
  border: 1px solid var(--rac-border-color);
  background: var(--rac-black-color);
  border-radius: var(--rac-border-radius);
  padding: 0 15px 15px;
  position: relative;
  text-align: center;
  margin: 50px auto 0;
  height: 90%;
}

.rac_service_icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 0;
  outline: 10px solid #202020;
}

.rac_service_icon:hover {
  outline: 10px solid #202020;
}

.rac_service_icon.icon1 {
  background: linear-gradient(180deg, #ff4343 0%, #ff7676 100%);
}

.rac_service_icon.icon2 {
  background: linear-gradient(180deg, #f89b11 0%, #ffc876 100%);
}

.rac_service_icon.icon3 {
  background: linear-gradient(180deg, #65b500 0.01%, #9beb36 100%);
}

.rac_service_icon.icon4 {
  background: linear-gradient(180deg, #2895fa 0.01%, #8cc8ff 100%);
}

.rac_service_icon.icon5 {
  background: linear-gradient(180deg, #9643ff 0%, #bb85ff 100%);
}

.rac_service_icon.icon6 {
  background: linear-gradient(180deg, #fb3cd1 0%, #ff74e0 100%);
}

.rac_service_icon.icon7 {
  background: linear-gradient(180deg, #3963f5 0%, #7c9aff 100%);
}

.rac_service_icon.icon8 {
  background: linear-gradient(180deg, #0abcd5 0%, #4fe6fb 100%);
}

.rac_service_text {
  margin-top: 20px;
}

.rac_service_text h4 {
  color: var(--logo2) !important;
  font-family: Metamorphous, serif;
}

.rac_service_text p {
  margin: 10px 0 5px;
}f

.rac_service_text a {
  font-size: 14px;
  font-weight: 600;
  color: var(--rac-primary-color);
}

.rac_service_text a:hover img {
  animation: rac_lr 1s infinite alternate;
}

@keyframes rac_lr {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(10px);
  }
}

/********************************************************
    Book Us Section Style
********************************************************/

.rac_booking_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/booking_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
 
}

.rac_booking_wrapper::before {
  content: " ";
  background-image: url(../images/booking_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 70px;
  left: 55px;
  background-repeat: no-repeat;
}

.rac_booking_content {
  position: relative;
}

.rac_booking_box {
  border: 3px solid #fbc6af;
  /* background-color: rgb(41 41 41 / 60%); */
  border-radius: var(--rac-border-radius);
  padding: 30px 30px 35px;
  position: relative;
  backdrop-filter: blur(8px);
}

.rac_form_input label {
  width: 100%;
  margin-bottom: 5px;
  color: var(--logo1);
}

li{
  list-style-type: none;
}

.rac_form_input {
  position: relative;
}

.rac_form_input select,
.rac_form_input input {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--rac-border-color);
  min-height: 40px;
  padding: 0 15px;
  border-radius: 5px;
  color: #000000;
  font-size: 14px;
  appearance: none;
}

.rac_form_input select,
.rac_form_input select option {
  cursor: pointer;
}

.rac_form_input textarea {
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--rac-border-color);
  min-height: 70px;
  padding: 10px 15px;
  border-radius: 5px;
  color: #000000;
  font-size: 14px;
  resize: none;
}


.cars {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 1px 1px 3px 3px #00000017;
  height: 100%;
  padding: 30px 30px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.rac_form_input span {
  position: relative;
}

.rac_form_input span::before {
  content: "";
  position: absolute;
  background-image: url(../images/dropdown.svg);
  width: 10px;
  height: 5px;
  background-repeat: no-repeat;
  top: 10px;
  right: 15px;
  background-size: contain;
  z-index: 1;
}

.rac_form_input input[type="date"] {
  text-transform: uppercase;
}

.rac_form_input input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.4;
}

.rac_booking_box .response {
  margin-top: 15px;
  margin-bottom: -15px;
  color: var(--rac-primary-color);
}

.rac_form_btn {
  margin-top: 5px;
}

.rac_form_btn .rac_btn {
  min-width: 155px;
}

.rac_booking_img {
  margin-top: -25px;
}

/********************************************************
    Menu Section Style
********************************************************/

.rac_menu_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/service_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_menu_tab {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: var(--rac-black-color);
  border: 1px solid var(--rac-border-color);
  max-width: fit-content;
  margin: auto;
  gap: 15px 20px;
  padding: 10px;
  flex-wrap: wrap;
}

.rac_menu_tab li .rac_btn {
  background: #202020;
  border: 1px solid transparent;
}

.rac_menu_tab li .rac_btn:hover,
.rac_menu_tab li .rac_btn.active {
  background: var(--rac-primary-color);
  border: 1px solid var(--rac-primary-color);
  color: var(--rac-white-color);
}

.rac_tab_pane {
  display: none;
}

.rac_menu_box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.rac_menu_img {
  min-width: 100px;
  height: 100px;
  border-radius: var(--rac-border-radius);
  overflow: hidden;
}

.rac_menu_img img {
  object-fit: cover;
}

.rac_menu_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rac_menu_title h4 {
  color: var(--rac-white-color);
}

.rac_menu_title h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--rac-primary-color);
  position: relative;
}

.rac_menu_title h2::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 1px;
  background-color: var(--rac-border-color);
  top: 50%;
  right: 60px;
}

/********************************************************
    Chefs Section Style
********************************************************/

.rac_chefs_wrapper {
  position: relative;
  overflow: hidden;
  background-color: #1d1e1e;
  background-image: url(../images/chefs_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_chefs_wrapper::before {
  content: " ";
  background-image: url(../images/chefs_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 45px;
  left: 85px;
  background-repeat: no-repeat;
}

.rac_chefs_box {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.rac_chefs_text {
  border: 1px solid var(--rac-border-color);
  background: var(--rac-black-color);
  border-radius: 20px 0 20px 0;
  max-width: calc(100% - 25px);
  padding: 30px 20px;
  width: 100%;
}

.rac_chefs_text h6 {
  color: var(--rac-white-color);
}

.rac_chefs_text p {
  font-size: 14px;
}

.rac_chefs_img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.rac_chefs_social {
  display: flex;
  align-items: center;
  background: var(--rac-black-color);
  border: 1px solid var(--rac-border-color);
  width: 100%;
  border-radius: 0 0 20px 20px;
  justify-content: space-around;
  padding: 8px 0;
  border-top: none;
  transition: var(--rac-transition);
}

.rac_chefs_social:hover {
  background: var(--rac-primary-color);
}

.rac_chefs_social li a svg {
  transition: var(--rac-transition);
}

.rac_chefs_social li a:hover svg {
  transform: rotate(360deg);
}

.rac_chefs_slider .swiper-pagination,
.rac_testimonial_slider .swiper-pagination {
  bottom: 40px;
}

.rac_chefs_slider .swiper-pagination-bullet,
.rac_testimonial_slider .swiper-pagination-bullet {
  width: 10px;
  height: 3px;
  border-radius: 10px;
  background: #2e2e2e;
  opacity: 1;
}

.rac_chefs_slider .swiper-pagination-bullet-active,
.rac_testimonial_slider .swiper-pagination-bullet-active {
  background: var(--rac-primary-color);
  width: 25px;
}

/********************************************************
    Testimonials Section Style
********************************************************/

.rac_testimonial_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/service_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_testimonial_slider .swiper::before,
.rac_testimonial_slider .swiper::after {
  content: " ";
  width: 292px;
  height: 129px;
  background-image: url(../images/testi_bg.webp);
  background-repeat: no-repeat;
  position: absolute;
}

.rac_testimonial_slider .swiper::before {
  bottom: 0;
  left: 0;
}

.rac_testimonial_slider .swiper::after {
  bottom: 0;
  left: 50%;
  transform: translateX(15px);
}

.rac_testimonial_slide {
  padding: 0 0 30px 30px;
}

.rac_testimonial_box {
  border: 1px solid var(--rac-border-color);
  background: #fff;
  border-radius: var(--rac-border-radius);
  padding: 30px;
  position: relative;
  height: 100%;
}


.rac_testimonial_box 

p {
    
    color: #000;
}
.rac_testi_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.rac_testi_btm::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/quote.webp);
  width: 43px;
  height: 31px;
  transform: translate(50%, -50%);
}

.rac_testi_user {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.rac_testi_user img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.rac_testi_user h6 {
  color: #000;
  font-weight: 600;
}

.rac_testi_user p {
  font-size: 14px;
}

/********************************************************
    Events Section Style
********************************************************/

.rac_events_wrapper {
  position: relative;
  overflow: hidden;
  background-color: #1d1e1e;
}

.rac_events_gallery {
  margin-top: 30px;
}

.grid-item {
  width: calc(100% / 4);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.grid-item img {
  width: 100%;
  transition: all 0.5s linear;
  object-fit: cover;
  position: relative;
  padding: 20px;
}

.grid-item:hover img {
  transform: rotate(2deg) scale(1.1);
}

.grid-item::after {
  background: var(--rac-white-color);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 0.3;
  transition: all 0.5s linear;
}

.grid-item:hover::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s linear;
}

/********************************************************
    News And Blog Section Style
********************************************************/

.rac_blog_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/service_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_blog_box {
  background: var(--rac-black-color);
  border-radius: var(--rac-border-radius);
  overflow: hidden;
}

.rac_blog_img {
  max-height: 242px;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
}

.rac_blog_img::after {
  background: var(--rac-white-color);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 0.3;
  transition: all 0.5s linear;
}

.rac_blog_box:hover .rac_blog_img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s linear;
}

.rac_blog_img img {
  width: 100%;
  object-fit: cover;
  min-height: 242px;
  transition: all 0.5s linear;
}

.rac_blog_box:hover .rac_blog_img img {
  transform: rotate(2deg) scale(1.1);
}

.rac_blog_info {
  padding: 20px;
  border: 1px solid var(--rac-border-color);
  border-radius: 0 0 20px 20px;
}

.rac_blog_date {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: normal;
}

.rac_blog_date p {
  font-size: 14px;
  color: var(--rac-font-color);
}

.rac_blog_text {
  margin-top: 15px;
}

.rac_blog_text h4 {
  color: var(--rac-white-color);
  margin-bottom: 10px;
  transition: var(--rac-transition);
}

.rac_blog_box:hover .rac_blog_text h4 {
  color: var(--rac-primary-color);
}

.rac_blog_text p {
  color: var(--rac-font-color);
}

/********************************************************
    Footer Section Style
********************************************************/

.rac_footer_wrapper {
  position: relative;
  overflow: hidden;
  background-color: #1d1e1e;
  background-image: url(../images/footer_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}

.rac_footer_wrapper::before {
  content: " ";
  background-image: url(../images/footer_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 25px;
  left: 75px;
  background-repeat: no-repeat;
}

.rac_app_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--rac-primary-color);
  border-radius: var(--rac-border-radius);
  padding: 0 20px 0 60px;
  gap: 20px 30px;
}

.rac_app_text {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.rac_app_text h3 {
  font-size: 50px;
  color: var(--rac-white-color);
  font-weight: 700;
}

.rac_app_stores {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.rac_app_img {
  margin: -35px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.rac_app_img img:first-child {
  z-index: 1;
}

.rac_footer_content {
  position: relative;
  /* margin-top: 55px; */
}

.rac_footer_heading {
  margin-bottom: 15px;
}

.rac_footer_heading h6 {
  color: var(--rac-white-color);
}

.rac_footer_about p {
  max-width: 270px;
}

.rac_footer_social {
  display: flex;
  gap: 35px;
  margin-top: 15px;
}

.rac_footer_social li a i {
  transition: var(--rac-transition);
  color: #fff;

}

.rac_footer_social li :hover i {
  fill: var(--rac-primary-color);
  transform: rotate(360deg);
}

.rac_footer_links li {
  margin-bottom: 15px;
  position: relative;
  margin-left: 15px;
  transition: var(--rac-transition);
}

.rac_footer_links li:hover {
  margin-left: 0;
}

.rac_footer_links li::before {
  content: " ";
  top: 50%;
  left: 0;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--rac-font-color);
  border-radius: 50%;
  transform: translateY(-50%);
  margin-left: -15px;
  opacity: 1;
  visibility: visible;
  transition: var(--rac-transition);
}

.rac_footer_links li:hover::before {
  opacity: 0;
  visibility: hidden;
  margin-left: 0;
  background-color: var(--rac-primary-color);
}

.rac_footer_links li:last-child {
  margin-bottom: auto;
}

.rac_footer_links li a {
  color: #fff;
}

.rac_footer_links li a:hover {
  color: var(--logo2);
}

.rac_footer_address li {
  margin-bottom: 15px;
}

.rac_footer_address li a {
  color: var(--rac-font-color);
  display: flex;
  gap: 10px;
}

.rac_footer_address li a:hover {
  color: var(--logo2);
}

.rac_footer_address li a svg {
  transition: var(--rac-transition);
}

.rac_footer_address li a:hover svg {
  fill: var(--rac-primary-color);
}

.rac_footer_form p {
  margin-bottom: 20px;
  max-width: 255px;
}

.rac_footer_form .rac_form_input input {
  padding-right: 75px;
}

.rac_form_input button {
  position: absolute;
  right: 0;
  top: 0;
  width: 59px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--rac-primary-color);
  border-radius: 5px;
}

/********************************************************
    Copyright Section Style
********************************************************/

.rac_copyright_wrapper {
  position: relative;
  padding: 5px;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
}

.rac_copyright_text {
  position: relative;
  text-align: center;
  z-index: 10;
}

.rac_copyright_text p > a {
  color: var(--rac-accent-color);
  cursor: pointer;
}

.rac_copyright_text p > a:hover {
  color: #c53030;
}
/*-------------------------------------------------------------------
 2. Menus Page
-------------------------------------------------------------------*/

.rac_menu_banner {
  background-image: url(../images/menu_banner.webp);
}

/*-------------------------------------------------------------------
 3. Events Page
-------------------------------------------------------------------*/

.rac_event_banner {
  background-image: url(../images/event_banner.webp);
}

/********************************************************
    Planning Section Style
********************************************************/

.rac_planning_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/service_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_planning_wrapper::before {
  content: " ";
  background-image: url(../images/booking_shapes.webp);
  width: 100%;
  height: 100%;
  animation: 10s circlular linear infinite;
  position: absolute;
  top: 70px;
  left: 55px;
  background-repeat: no-repeat;
}

.rac_plan_box {
  position: relative;
  margin-bottom: 40px;
}

.rac_plan_box.left:last-child,
.rac_plan_box.right:last-child {
  margin-bottom: 0;
}

.rac_plan_box.left:nth-child(2) {
  padding-right: 40px;
}

.rac_plan_box.right:nth-child(2) {
  padding-left: 40px;
}

.rac_plan_box.left {
  text-align: right;
}

.rac_plan_box .rac_plan_title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rac_plan_box.left .rac_plan_title {
  justify-content: flex-end;
}

.rac_plan_title h4 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rac-font-color);
  color: var(--rac-font-color);
}

.rac_plan_title h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--rac-border-color);
}

.rac_plan_text {
  max-width: 280px;
  margin-top: 15px;
}

.rac_plan_box.left .rac_plan_text {
  margin-left: auto;
}

.rac_planning_img {
  position: relative;
  text-align: center;
}

.rac_planning_img img {
  border-radius: 50%;
  object-fit: cover;
}

/*-------------------------------------------------------------------
 4. About Page
-------------------------------------------------------------------*/

.rac_about_banner {
  background-image: url(../images/about_banner.webp);
}

/********************************************************
    History Section Style
********************************************************/

.rac_history_wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/service_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rac_history_slider {
  position: relative;
}

.rac_history_slider .swiper {
  overflow: hidden;
  max-height: 400px;
}

.rac_history_img {
  border-radius: 20px;
  max-height: 400px;
  overflow: hidden;
}

.rac_history_img img {
  width: 100%;
  object-fit: cover;
}

.rac_history_slider .swiper-pagination {
  position: relative;
  right: unset;
  left: unset;
  top: unset;
  bottom: unset;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}

.rac_history_slider .swiper-pagination-bullet {
  position: relative;
  width: 45px;
  height: fit-content;
  background: transparent;
  opacity: 1;
  color: var(--rac-white-color);
  font-size: 18px;
  font-weight: 600;
}

.rac_history_slider .swiper-pagination-bullet-active {
  color: var(--rac-primary-color);
}

.rac_history_slider .swiper-pagination-bullet::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--rac-font-color);
  border-radius: 99px;
  position: absolute;
  right: -20px;
  top: 10px;
  outline: 5px solid transparent;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.rac_history_slider .swiper-pagination-bullet-active::after {
  background-color: var(--rac-primary-color);
  outline-color: rgb(238 46 46 / 20%);
}

.rac_history_slider .swiper-pagination-bullet::before {
  content: "";
  width: 2px;
  height: 91px;
  background-color: var(--rac-font-color);
  border-radius: 99px;
  position: absolute;
  right: -17px;
  top: 10px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.rac_history_slider .swiper-pagination-bullet-active::before {
  background-color: var(--rac-primary-color);
}

.rac_history_slider .swiper-pagination-bullet:last-child::before {
  display: none;
}

.rac_history_date {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: normal;
  margin-bottom: 20px;
}

.rac_history_date p {
  font-size: 14px;
  color: var(--rac-font-color);
}

.rac_history_text p {
  margin-bottom: 10px;
}

.rac_history_text h4 {
  color: var(--rac-white-color);
  margin-bottom: 10px;
}

.rac_history_text a {
  font-size: 14px;
  font-weight: 600;
  color: var(--rac-primary-color);
}

.rac_history_text a:hover img {
  animation: rac_lr 1s infinite alternate;
}

/*-------------------------------------------------------------------
 5. Contact Page
-------------------------------------------------------------------*/

.rac_contact_banner {
  background-image: url(../images/contact_banner.webp);
}

/********************************************************
    Map Section Style
********************************************************/

.rac_map_content iframe {
  width: 100%;
 
  border: none;
}
/* Basic menu styling */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* horizontal menu */
  background: #eee;
}

.menu-item {
  position: relative; /* needed for dropdown positioning */
  margin-right: 20px;
}

.menu-item > a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

/* Dropdown menu (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* right below the parent */
  left: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
}

/* Show dropdown on hover of parent menu-item */
.custom-dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown item styling */
.dropdown-content li a {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* Dropdown hover effect */
.dropdown-content li a:hover {
  background-color: #f0f0f0;
}

.rac_nav_menu li {
  position: relative;
  padding: 5px 10px;
  list-style-type: none;
}

.rac_nav_menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  display: block;
}

.rac_nav_menu a:hover,
.rac_nav_menu a.active {
  color: red;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 210px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.dropdown-menu li a {
  color: white;
  padding: 8px 16px;
  display: block;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.rac_footer_wrapper {
  background-color: var(--logo1);
  /* background: linear-gradient(135deg, #ad1f25 0%, #eaa191 100%) !important; */
}
.rac_footer_heading h6 {
  color: var(--rac-white-color);
  font-size: 20px;
  font-weight: 600;
  font-family: Metamorphous, serif;
}


.why-home-made-section {
  background-color: #fff;
  overflow: hidden;
  position: relative;
}


.why-home-made-section h5{
  color: var(--logo1);
  padding: 10px 0px;
  font-family: "Metamorphous", serif;
}

.why-home-made-section 

p{

    color: #000;

}

.shape-top svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg);
  fill: #f8f9fa; /* Light background */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.animated-headline {
  font-size: 2rem;
  font-weight: 600;
}

.highlighted-text {
  color: #d72d2d;
  font-weight: bold;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  box-shadow: rgb(212, 216, 228) 0px 11px 21px;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.img-thumbnail {
  border: none;
  border-radius: 50%;
  max-width: 100px;
  background-color: #fbc6b0;
  padding: 10px;
}

.fadeIn {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}


.bg_black .rac_section_heading h3 {
  position: relative;
  color: var(--logo2);
  font-family: "Metamorphous", serif;
}

.cntct_add li{
  padding: 10px 0px;
}

.cntct_add li a{
  color: #fff;
}



.rac_map_content {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.rac_map_content {
  color: #000;}

/* Wedding Catering Page Styles */
.wedding-catering-section {
  background: linear-gradient(135deg, #fff8dc 0%, #fbc6b0 100%);
  padding: 60px 0 40px 0;
}
.wedding-catering-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(197, 48, 48, 0.10);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #fbc6b0;
}
.wedding-catering-card:hover {
  box-shadow: 0 16px 48px rgba(197, 48, 48, 0.18);
  transform: translateY(-6px) scale(1.01);
  border-color: var(--rac-primary-color);
}
.wedding-catering-card .thumb img {
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(197, 48, 48, 0.08);
}
.wedding-catering-card .info h3 {
  color: var(--rac-primary-color);
  font-family: 'Merienda', cursive;
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.wedding-catering-card .info p {
  color: #4a5568;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.wedding-catering-sidebar {
  background: #fff8dc;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(197, 48, 48, 0.07);
  padding: 28px 20px 20px 20px;
  margin-bottom: 32px;
}
.wedding-catering-sidebar .title h4 {
  color: var(--rac-primary-color);
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-family: 'Merienda', cursive;
}
.wedding-catering-sidebar ul {
  padding-left: 0;
}
.wedding-catering-sidebar ul li {
  margin-bottom: 12px;
}
.wedding-catering-sidebar ul li a {
  color: #9b2c2c;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 8px 16px;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.wedding-catering-sidebar ul li.active a,
.wedding-catering-sidebar ul li a:hover {
  background: linear-gradient(90deg, #fbc6b0 0%, #fff8dc 100%);
  color: var(--rac-primary-color);
}
.wedding-packages-section {
  background: linear-gradient(135deg, #fbc6b0 0%, #fff8dc 100%);
  padding: 60px 0 40px 0;
}
.wedding-menu-masonry {
  margin-top: 32px;
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wedding-menu-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(197, 48, 48, 0.10);
  padding: 28px 18px 20px 18px;
  margin: 0 12px 24px 12px;
  border: 1px solid #fbc6b0;
  /* min-width: 260px;
  max-width: 320px; */
  flex: 1 1 300px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.wedding-menu-card:hover {
  box-shadow: 0 8px 32px rgba(197, 48, 48, 0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--rac-primary-color);
}
.wedding-menu-card h3 {
  color: var(--rac-primary-color);
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-family: 'Merienda', cursive;
}
.wedding-menu-card .info p {
  color: #4a5568;
  font-size: 1.01rem;
}
.wedding-brochure-section {
  background: #fff8dc;
  padding: 60px 0 40px 0;
}
.wedding-brochure-section .cards {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(197, 48, 48, 0.08);
  padding: 18px 10px 10px 10px;
  margin-bottom: 18px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.wedding-brochure-section .cards:hover {
  box-shadow: 0 8px 24px rgba(197, 48, 48, 0.15);
  transform: translateY(-2px) scale(1.01);
}
.wedding-brochure-section .btn-danger {
  background: linear-gradient(90deg, #c53030 0%, #fbc6b0 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  margin-top: 8px;
  transition: background 0.2s;
}
.wedding-brochure-section .btn-danger:hover {
  background: linear-gradient(90deg, #9b2c2c 0%, #c53030 100%);
  color: #fff;
}
@media (max-width: 991px) {
  .wedding-catering-card, .wedding-catering-sidebar, .wedding-menu-card, .wedding-brochure-section .cards {
    padding: 18px 10px 14px 10px;
  }
  .wedding-menu-masonry {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .wedding-catering-section, .wedding-packages-section, .wedding-brochure-section {
    padding: 32px 0 20px 0;
  }
  .wedding-catering-card, .wedding-menu-card {
    margin-bottom: 18px;
  }
  .wedding-menu-card {
    min-width: 90vw;
    max-width: 98vw;
  }

  .rac_nav_item   .dropdown-menu li a {

    color: #000 !important;
}


.rac_page_title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
}

.vis_mis img{
  width: 57px;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fbc6b0;
  border-radius: 10px;
  box-shadow: 1px 1px 5px 1px #00000052;
}

.cta_num a{
  font-size: 30px;
  color: var(--logo1);
  font-weight: bold;
}


.menu_cards {
  padding: 20px;
  box-shadow: 1px 1px 20px 7px #00000033;
  border-radius: 5px;
  background-color: #fff;
  padding: 1rem 1rem 1rem 2.5rem;
  position: relative;
  border-radius: 0.75rem;
  border-left: 5px solid #ad1f25;
  box-shadow: 0 4px 8px rgba(173, 31, 37, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.menu_cards  h5{
  color: var(--logo1);
  /* padding: 20px 0px; */
  border-bottom: 2px solid;
  margin: 25px 0px;
  padding-bottom: 5px;
  display: inline-flex;
}

.p-mb {
  margin-bottom: 14px;
  padding-bottom: 5px;
  font-weight: 500;
  list-style-type: auto;
  border-bottom: 1px dashed #ad1f25;
  font-family: 'Segoe UI', sans-serif;
}

.fixed
.header-logo {
  position: relative;
  left: 0px;
  width: 140px;
  height: auto;
}
.fixed
.rac_nav_item > ul li a {
  font-weight: 500;
  /* color: #000000; */
  padding: 5px 0;
  position: relative;
  font-size: 16px;
  /* font-family: cursive; */
}

.rac_banner_wrapper {
  height: 80vh;
}

.rac_banner_img {
  position: relative;
  text-align: right;
  /* padding: 170px; */
  width: 100%;
  max-width: 68%;
  margin: auto;
  position: relative;
  top: -10%;
  left: -10%;
}

.cntct_add {
  margin-top: 0;
  margin-bottom: 1rem;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 1px 1px 3px 0px #000;
}

.cntct_add {
  margin-top: 0;
  margin-bottom: 1rem;
  background-color: #c53030;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 1px 1px 3px 0px #000;
}

.fixed_btn {

  min-width: 220px;
  min-height: 40px;
  font-size: 23px;
  background-color: #ad1f25 !important;
  border: 2px solid #ffffff;
  font-family: Metamorphous, serif;
  font-weight: 800;
  margin-left: 10px;
  padding-left: 10px;
  position: fixed;
  bottom: 80px;
  z-index: 999;
}