body{
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: black;
}

/* ================= NAVBAR ================= */
.main-navbar{
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo{
  width: 115px;
}

.nav-link{
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover{
  color: #FF6B8B !important;
}

.btn-book{
  background: linear-gradient(135deg, #FF6B8B 0%, #FF8E53 100%);
  color: #ffffff !important;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
  display: inline-block; 
  width: 100%; 
  text-align: center;
}

.btn-book:hover{
  background: linear-gradient(135deg, #FF8E53 0%, #FF6B8B 100%);
  color: #fff !important;
}
.btn-danger{
  background: linear-gradient(135deg, #FF6B8B 0%, #FF8E53 100%);
}

@media (max-width: 768px){
  .logo{
    width: 110px;
  }

  .nav-link{
    margin: 5px 0;
  }

  .btn-book{
    width: auto !important;
    display: inline-block !important;
    text-align: center;
  }
}

/* Hero section  */

.hero-section{
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  color: #fff;
}

.float-img{
  position: absolute;
  width: 96px;
  opacity: 0.7;
  animation: floatAnim 6s ease-in-out infinite;
}

.img1{ top: 10%; left: 5%; animation-delay: 0s; }
.img2{ top: 40%; left: 10%; animation-delay: 1s; }
.img3{ top: 70%; left: 20%; animation-delay: 2s; }
.img4{ top: 20%; right: 10%; animation-delay: 3s; }

@keyframes floatAnim{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-20px); }
  100%{ transform: translateY(0px); }
}

.hero-text h1{
  font-size: 68px;
  font-weight: 700;
}

.hero-text span{
  color: #FF6B8B;
}

.hero-text p{
  margin: 20px 0;
  font-size: 20px;
  color: #ccc;
}

.hero-buttons .btn{
  border-radius: 30px;
  padding: 10px 25px;
}

@media(max-width:768px){
  .float-img{ width: 35px; }

  .hero-text{
    text-align: center;
  }

  .hero-text h1{
    font-size: 30px;
    margin-top: 25px;
  }

  .hero-img{
    margin-top: 30px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section{
  position: relative;
  padding: 100px 0;
  background: #111;
  overflow: hidden;
  color: #fff;
}

.about-box{
  background: #1c1c1c;
  border-radius: 20px;
  padding: 30px;
}

.about-img{
  border-radius: 20px;
}

.btn{
  border-radius: 30px;
  padding: 10px 25px;
}
.about-subtitle{
  color: #FF6B8B;
  text-transform: uppercase;
  font-weight: 600;
}

.about-content h2{
  font-size: 36px;
  margin: 10px 0 20px;
}

.about-content p{
  color: #ccc;
  line-height: 1.7;
}

.about-signature{
  margin-top: 30px;
}

.corner-img{
  position: absolute;
  width: 70px;
  opacity: 0.8;
  animation: floatAnim 6s ease-in-out infinite;
}

.top-left{
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.top-right{
  top: 5%;
  right: 5%;
  animation-delay: 1s;
}

.bottom-left{
  bottom: 5%;
  left: 5%;
  animation-delay: 2s;
}

.bottom-right{
  bottom: 5%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes floatAnim{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-20px); }
  100%{ transform: translateY(0px); }
}

@media(max-width:768px){
  .about-content h2{
    font-size: 26px;
  }

  .about-content{
    text-align: center;
  }

  .corner-img{
    width: 40px;
  }
}

/* ================= OFFER ZONE ================= */
.offer-section{
  position: relative;
  padding: 100px 0;
  background: #030303;
  overflow: hidden;
}

.section-title{
  position: relative;
  display: inline-block;
  color: #FF6B8B;
  font-weight: 600;
  padding: 0 15px;
}

.section-title::before{
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #FF6B8B;
  transform: translateY(-50%);
}

.section-title::after{
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #FF6B8B;
  transform: translateY(-50%);
}
.rating i{
  color: #f9a825;   
  margin-right: 2px;
  font-size: 14px;
}

.offer-card:hover .rating i{
  color: #ff9800;
}


.section-subtitle{
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.offer-card{
  background: #292929;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.offer-card:hover{
  transform: translateY(-5px);
}

.offer-card img{
  border-radius: 15px 15px 0 0;
  height: 260px;
  width: 100%;
}

.offer-body{
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.offer-body h5{
  margin: 0;
  color: #ffffff;
}

.price{
  color: red;
  font-weight: 700;
}

.rating{
  padding: 0 15px 15px;
  color: orange;
}

.corner-img{
  position: absolute;
  width: 80px;
  opacity: 0.8;
  animation: floatAnim 6s ease-in-out infinite;
}

.top-left{ top: 5%; left: 5%; animation-delay: 0s; }
.top-right{ top: 5%; right: 5%; animation-delay: 1s; }
.bottom-left{ bottom: 5%; left: 5%; animation-delay: 2s; }
.bottom-right{ bottom: 5%; right: 5%; animation-delay: 3s; }

@keyframes floatAnim{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-20px); }
  100%{ transform: translateY(0); }
}

@media(max-width:768px){
  .offer-title{
    font-size: 26px;
  }

  .corner-img{
    width: 40px;
  }
}

/* services section  */

.services-section{
  background: radial-gradient(circle at top, #2b2b2b, #111);
  color:#fff;
}


.service-card{
  background:#2a2a2a;
  border-radius:20px;
  padding:70px 25px 30px;
  text-align:center;
  position:relative;
  transition:.4s;
  height:100%;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(255,0,0,.3);
}

.icon-circle{
  width:90px;
  height:90px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:-45px;
  left:50%;
  transform:translateX(-50%);
  font-size:40px;
  color:#fff;
}

.service-card h4{
  margin-top:20px;
  font-weight:600;
}

.service-card p{
  color:#bbb;
  font-size:15px;
}

.service-card a{
  color:red;
  text-decoration:none;
  font-weight:600;
}

@media(max-width:576px){
  .section-title{
    font-size:28px;
  }
}
.purple{background:#9b59ff;}
.pink{background:#ff4fd8;}
.blue{background:#4a6cff;}
.cyan{background:#2fdfff;}

/* Booking section  */

.booking-section{
  background:#242424;
}

.booking-form{
  background:rgba(148, 148, 148, 0.05);
  border-radius:20px;
  padding:30px;
  backdrop-filter:blur(8px);
}

.booking-form label{
  color:#ccc;
  font-size:14px;
}

.booking-form .form-control{
  background:#222;
  border:1px solid #444;
  color:#999;
}

.booking-form .form-control:focus{
  border-color:red;
  box-shadow:none;
}
.form-control::placeholder{
  color:#999;
  opacity:1;
}

.chef-img{
  max-height:496px;
  border-radius: 20px;
}

.corner-png{
  position:absolute;
  width:60px;
  animation: float 6s ease-in-out infinite;
}

.top-left{top:20px;left:20px;}
.top-right{top:20px;right:20px;}
.bottom-left{bottom:20px;left:20px;}
.bottom-right{bottom:20px;right:20px;}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-15px);}
}

@media(max-width:768px){
  .chef-img-wrap{margin-top:30px;}
}

/* Event Section  */

.events-section{
  background:#0f0f0f;
  color:#fff;
}

.section-tag{
  color:#ff3b3b;
  font-weight:600;
  letter-spacing:2px;
}

.event-card{
  background:#1c1c1c;
  border-radius:16px;
  overflow:hidden;
  transition:0.4s;
  height:100%;
}

.event-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.event-content{
  padding:20px;
}

.event-content h5{
  font-size:20px;
  font-weight:600;
}

.event-content p{
  font-size:14px;
  color:#ccc;
}

.event-btn{
  display:inline-block;
  margin-top:10px;
  color:#ff3b3b;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.event-btn:hover{
  color:#fff;
}

.event-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 20px rgba(255,0,0,0.3);
}

/* Counter section  */

.counter-section{
  background: #1a1a1a;
  overflow:hidden;
}

.video-box{
  position:relative;
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:80px;
  height:80px;
  background:#ff2c2c;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:30px;
  cursor:pointer;
  box-shadow:0 0 20px rgba(255,0,0,0.6);
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,0,0,.7);}
  70%{box-shadow:0 0 0 20px rgba(255,0,0,0);}
  100%{box-shadow:0 0 0 0 rgba(255,0,0,0);}
}

.counter-card{
  background:#fff;
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.counter-card img{
  width:50px;
  margin-bottom:10px;
}

.counter-card h2{
  font-weight:700;
}

.counter-card p{
  color:#555;
}

.float-img{
  position:absolute;
  width:70px;
  animation:float 6s infinite ease-in-out;
}

.top-left{top:20px;left:20px;}
.top-right{top:20px;right:20px;}
.bottom-left{bottom:20px;left:20px;}
.bottom-right{bottom:20px;right:20px;}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-20px);}
}

@media(max-width:768px){
  .play-btn{
    width:60px;
    height:60px;
    font-size:22px;
  }
}

.footer-banner{
  background:url(../images/banner.jpg);
  color:#fff;
  padding:70px 0;
  border-radius:30px 30px 0 0;
}

.footer-banner h2{
  font-weight:700;
  font-size:42px;
}

.footer-banner p{
  font-size:18px;
  opacity:.95;
}

.banner-img{
  max-width:100%;
  animation: floatLR 4s ease-in-out infinite;
}

@keyframes floatLR {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}


.footer-banner .btn{
  border-radius:30px;
  font-weight:600;
}

.shape{
  position:absolute;
  border-radius:50%;
  opacity:0.25;
}

.shape1{
  width:120px;
  height:120px;
  background:#fff;
  top:10%;
  left:5%;
  animation:move 6s infinite alternate;
}

.shape2{
  width:180px;
  height:180px;
  background:#000;
  bottom:15%;
  right:10%;
  animation:move 8s infinite alternate;
}

.shape3{
  width:90px;
  height:90px;
  background:#fff;
  bottom:30%;
  left:50%;
  animation:move 7s infinite alternate;
}

@keyframes move{
  from{transform:translateY(0);}
  to{transform:translateY(-30px);}
}
@media(max-width:768px){
  .footer-banner{
    padding:50px 20px;
    border-radius:20px 20px 0 0;
  }

  .footer-banner h2{
    font-size:28px;
  }

  .footer-banner p{
    font-size:16px;
  }
}

/* Contact Section  */

.contact-section{
  padding: 40px 0;
  background: #111111;
}

.section-tag{
  color: #e63946;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.contact-info-box{
  background: #111;
  color: #fff;
  padding: 35px;
  border-radius: 15px;
}

.contact-info-box h4{
  margin-bottom: 20px;
}

.contact-info-box p{
  margin-bottom: 12px;
}

.contact-info i{
  color: #FF6B8B;
}

.contact-form-box{
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.contact-form-box .form-control{
  height: 45px;
}

.contact-form-box textarea{
  height: auto;
}

.contact-btn{
  background: #e63946;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}

.contact-btn:hover{
  background: #000;
  color: #fff;
}

/* Gallery Sction  */

.gallery-box{
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-box img{
  transition: 0.5s;
  width:100%;
  height:280px;
}

.gallery-box:hover img{
  transform: scale(1.1);
}

@media(max-width:768px){
  .gallery-box img{
    height:200px;
  }
}

/* video section  */

.video-card{
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-card img{
  width:100%;
  height:230px;
  transition:0.4s;
}

.video-card:hover img{
  transform: scale(1.1);
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:60px;
  height:60px;
  background:#dc3545;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  text-decoration:none;
  opacity:0.9;
  transition:0.3s;
}

.play-btn:hover{
  background:#000;
}

@media(max-width:768px){
  .video-card img{
    height:200px;
  }
}


/* Footer Section  */

.footer-section{
  background:#0d0d0d;
  padding:70px 0 0;
  position:relative;
}

.footer-title{
  color:#FF6B8B;
  font-weight:700;
  margin-bottom:20px;
  border-bottom:2px solid #FF6B8B;
  display:inline-block;
  padding-bottom:5px;
}

.footer-section p{
  color:#efefef;
  line-height:26px;
}

.footer-social a{
  width:40px;
  height:40px;
  background:#FF6B8B;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:10px;
  transition:.3s;
}

.footer-social a:hover{
  background:#ececec;
}

.footer-list{
  list-style:none;
  padding:0;
}

.footer-list li a{
  color:#ffffff;
  text-decoration:none;
  transition:0.3s;
}

.footer-list li a:hover{
  color:#FF6B8B;
  padding-left:5px;
}

.footer-list li i{
  color:#FF6B8B;
  margin-right:8px;
}

.footer-contact{
  list-style:none;
  padding:0;
}
.footer-social a {
  text-decoration: none;
}
.footer-contact li{
  margin-bottom:12px;
  color:#f8f8f8;
}

.footer-contact i{
  color:#FF6B8B;
  margin-right:10px;
}

.footer-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

.footer-gallery img{
  width:100%;
  height: 82px;
  border-radius:8px;
  transition:.3s;
}

.footer-gallery img:hover{
  transform:scale(1.05);
}

.footer-bottom{
  background: linear-gradient(135deg, #FF6B8B 0%, #FF8E53 100%);
  text-align:center;
  padding:18px;
  margin-top:50px;
  color:#fff;
  position:relative;
}

@media(max-width:768px){
  .footer-title{
    font-size:20px;
  }
  .footer-section{
    padding:50px 20px 0;
  }
}


/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B8B 0%, #FF8E53 100%);
  color: #fff;
  border: none;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 0, 0.7);
  transition: all 0.3s ease-in-out;
  animation: floatUp 2.5s infinite ease-in-out;
}

.scroll-top:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: #ffb400;
  box-shadow: 0 0 25px rgba(255, 180, 0, 1);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; 
  right: 25px;
  background-color: #37c572 !important;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
  transition: all 0.3s ease;
  animation: pulseCalls 2s infinite;
}

.whatsapp-float:hover {
  background-color: #fff;
  color: #28a745;
  box-shadow: 0 0 20px rgba(40, 167, 69, 1), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

@keyframes pulseCalls {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}



/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #007bff !important;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(58, 68, 184, 0.8), 0 4px 15px rgba(45, 62, 190, 0.4);
  animation: pulseCall 2s infinite;
  transition: all 0.3s ease;
}

.call-float:hover {
  background-color: #fff;
  color: #2a28a7;
  box-shadow: 0 0 20px rgb(40, 49, 167), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

@keyframes pulseCall {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 82, 202, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* breadcrumb section css  */

.breadcrumb-banner{
  position: relative;
  background: url('../images/breadcrumb.jpg') center/cover no-repeat;
  padding: 100px 0 120px;
  color: #fff;
  overflow: hidden;
}

.breadcrumb-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.breadcrumb-banner .container{
  position: relative;
  z-index: 2;
}

.breadcrumb-title{
  font-size: 48px;
  font-weight: 700;
  color: #FF6B8B;
  margin-bottom: 5px;
}

.breadcrumb-path{
  font-size: 16px;
  color: #fff;
}

.breadcrumb-path a{
  color: #fff;
  text-decoration: none;
}

.breadcrumb-path a:hover{
  color: #FF6B8B;
}

.breadcrumb-shape{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #111111;
  border-radius: 100% 100% 0 0;
}

@media(max-width:768px){
  .breadcrumb-title{
    font-size: 30px;
  }
  .breadcrumb-banner{
    padding: 70px 0 90px;
  }
}

/* Loader  */

/* Loader Wrapper */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Rotating Image */
.rotate-loader {
  width: 120px;
  animation: rotateImg 2s linear infinite;
}

@keyframes rotateImg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
