/* =========================
   Ghaanta Restaurant Styles
   ========================= */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Navbar Styling */
.navbar {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.navbar-brand img {
    height: 47px;
    width: 125px;
}

.navbar-nav .nav-link {
  color: #050505 !important;
  font-weight: 500;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #269d27 !important;
  font-weight: 700 !important;
}

.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.dropdown-item {
  color: #000000 !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #269d27 !important;
  color: #ffffff !important;
}

.book-now-btn {
  background-color: #269d27;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
  box-shadow: 0 4px 10px rgba(38, 157, 39, 0.3);
}

.book-now-btn:hover {
  background-color: #fcec4d;
  color: #d82c2c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(228, 202, 70, 0.5);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23269d27' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,157,39,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =========================
   Owl Carousel Hero Slider Full Width
   ========================= */
#hero-carousel .item {
  height: 85vh;
  background-size: cover;
  background-position: center top; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; 
  margin: 0; 
}

#hero-carousel .carousel-content {
  color: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
}

#hero-carousel h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 0 40px; 
  margin: 0 auto;
}

#hero-carousel h1::before {
  content: "||";
  position: absolute;
  left: -50px; 
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
}

#hero-carousel h1::after {
  content: "||";
  position: absolute;
  right: -50px; 
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
}

#hero-carousel p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(38,157,39,0.7) !important;
  color: #ffffff !important;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #1e7f20;
}

.owl-nav .owl-prev {
  left: 20px;
}

.owl-nav .owl-next {
  right: 20px;
}

.owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: #269d27;
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s;
}

.owl-dot.active span {
  background: #1e7f20;
}

#hero-carousel .owl-dots {
  position: absolute;
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: #ffffff; 
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s;
  opacity: 0.7;
}

.owl-dot.active span {
  background: #269d27; 
  opacity: 1;
}


/* ===== About Section ===== */
#about {
  background: #fffaf5;
  overflow: hidden;
}

.about-images {
  position: relative;
  display: inline-block;
}

.about-images .main-img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.about-images:hover .main-img {
  transform: scale(1.03);
}

.circle-img-wrap {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 155px;
  height: 155px;
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.circle-img-wrap:hover {
  transform: scale(1.05);
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  text-align: center;
}

.leaf-icon {
  width: 60px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.4s ease;
}


.about-line {
  display: inline-block;
  width: 35px;
  height: 3px;
  background: #e45120;
  vertical-align: middle;
}


#about p {
  line-height: 1.8;
}

#about ul {
  padding-left: 0;
  list-style: none;
}

#about ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#about ul li::before {
  content: "\f06c"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #27ae60;
  font-size: 16px;
}


/* ===== Why Choose Us Section ===== */
#why-choose {
  background: #fffaf5;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #2c3e50;
}

.feature-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-wrap {
  font-size: 40px;
  color: #27ae60; 
}

#why-choose p {
  font-size: 15px;
  line-height: 1.6;
}

.leaf-icon {
  width: 60px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.4s ease;
}

.left-leaf {
  transform: rotate(-15deg);
  margin-right: 8px;
}

.right-leaf {
  transform: rotate(15deg);
  margin-left: 8px;
}
.left-leaf {
  transform: rotate(-25deg) translateY(-3px);
}
.right-leaf {
  transform: rotate(25deg) translateY(-3px);
}

/* Menu List section  */
.menu-list-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #2c3e50;
}
.menu-list-title .leaf-icon {
  width: 50px;
  vertical-align: middle;
}
.menu-list-title .left-leaf { transform: rotate(-15deg); margin-right: 8px; }
.menu-list-title .right-leaf { transform: rotate(15deg); margin-left: 8px; }
.menu-list-title .about-line {
  display: inline-block;
  width: 35px;
  height: 3px;
  background: #e45120;
  vertical-align: middle;
}

.food-item {
  transition: all 0.3s ease;
}
.food-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.menu-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.nav-pills .nav-link.active{
  background-color: #1e7f20 !important;
  color: #fff !important;
}
.nav-link{
  color: #1e7f20 !important;
}

/* banner section  */

#banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url('../images/banner.jpg') no-repeat center center/cover;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-title {
  font-size: 3rem;
  margin-top: 3rem !important;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.banner-title .leaf-decoration {
  font-size: 1.8rem;
  margin: 0 10px;
}

.banner-subtitle {
  font-size: 1.2rem;
  margin-top: 15px;
  z-index: 2;
  position: relative;
}

.banner-img {
  max-height: 400px;
  z-index: 2;
  position: relative;
}

.btn-primary {
  background-color: #ff5722;
  border: none;
}

.btn-primary:hover {
  background-color: #e64a19;
}

/* team section  */
#our-team{
  background-color: #fffaf5 !important;
}

.team-card {
  position: relative;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-img {
  position: relative;
  overflow: hidden;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #27ae60;
  transition: all 0.3s ease;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 255, 234, 0.8);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 50%;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-links a {
  color: #0f0f0f;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #222;
}

/* Reservation Section */
#reservation {
  overflow: hidden;
}

#reservation img {
  height: 467px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #48af04;
  color: #424638;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.play-btn:hover {
  background: #269d27;
  color: #000;
}
#reservation .bg-dark {
  background-color: #0b0d17 !important;
}

#reservation h2 {
  font-size: 2rem;
}

#reservation .form-control,
#reservation .form-select,
#reservation textarea {
  background-color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  padding: 10px 15px;
}

#reservation .form-control:focus,
#reservation .form-select:focus,
#reservation textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #269d27;
}

#reservation .btn-warning {
  background-color: #269d27;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
}
.reservation-content h6{
  color: #dc3545 !important;
}

#reservation .btn-warning:hover {
  background-color: #269d27;
  color: #000;
}

.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-body video {
  border-radius: 10px;
  height: 620px;
}

/* Blog Section  */

.food-blog-section {
  background-color: #fff;
}

.food-blog-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.food-blog-card .blog-img img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.food-blog-card:hover .blog-img img {
  transform: scale(1.03);
}

.food-blog-card .blog-content {
  background: #fff;
  position: relative;
  margin: -70px 20px 0;
  padding: 25px;
  border-radius: 15px;
  z-index: 2;
}

.food-blog-card .blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.food-blog-card .blog-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 10px;
  padding: 0;
  font-size: 14px;
  color: #777;
}

.food-blog-card .blog-meta i {
  color: #88b44e;
  margin-right: 5px;
}

.food-blog-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.food-blog-card .read-more {
  color: #88b44e;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.food-blog-card .read-more:hover {
  color: #000;
}



/* Footer Banner section  */
.footer-banner {
  background: url('../images/footer-banner.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.footer-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6); 
  z-index: 0;
}

.footer-banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.footer-banner h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-banner p {
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-banner-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-banner-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 250px;
  font-size: 16px;
}

.footer-banner-form button {
  padding: 12px 25px;
  border: none;
  background-color: #ff0000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  transition: background 0.3s ease;
}

.footer-banner-form button:hover {
  background-color: #ff4c4c;
}

/* Footer section  */

.footer {
  font-family: 'Poppins', sans-serif;
   background: url('../images/footer-bg.jpg') no-repeat center center/cover;
}

.footer-title {
  font-weight: 600;
  color: #269d27;
  position: relative;
  display: flex;
  align-items: center;
}
.footer-title i{
  color: #269d27 !important;
}



.footer-text {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #269d27;
  padding-left: 5px;
}

.footer-contact li,
.footer-hours li {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-contact i,
.footer-hours i {
  font-size: 16px;
}

.social-icons a {
  color: #269d27;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}



/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #269d27;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(18, 145, 9, 0.8), 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: bounce 2.5s infinite;
}

.scroll-top:hover {
  background-color: #fff;
  color: #269d27;
  box-shadow: 0 0 20px rgb(12, 248, 0), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}


/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #28a745;
  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(40, 167, 69, 0.8), 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: pulseCall 2s infinite;
  transition: all 0.3s ease;
}

.call-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);
}

/* Pulse Animation */
@keyframes pulseCall {
  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);
  }
}

