 /* Navbar base */
    .navbar {
      background: transparent !important;
      box-shadow: none;
      transition: background 0.4s ease, box-shadow 0.4s ease;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

    .navbar.scrolled {
      background: #282e3d !important;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .navbar-brand {
      font-weight: bold;
      color: #333;
    }

    /* Nav links */
    .navbar .nav-link {
       color: #fff;
      /* color: #f6da8d; */
      font-weight: 600;
      position: relative;
      padding-bottom: 6px; 
      transition: color 0.3s ease;
    }

    /* underline effect */
    .navbar .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #ea332f;
      transition: width 0.3s ease;
    }

    /* Hover effect */
    .navbar .nav-link:hover {
      color: #ea332f;
    }
    .navbar .nav-link:hover::after {
      width: 100%;
    }

    /* Active state */
    .navbar .nav-item.active .nav-link {
      color: #ea332f;
    }
    .navbar .nav-item.active .nav-link::after {
      width: 100%;
    }

    /* Mobile toggle (hamburger to X) */
    .navbar-toggler {
      border: none;
      background: none;
      font-size: 1.8rem;
      outline: none;
    }
    .navbar-toggler:focus {
      box-shadow: none;
    }
    .navbar-toggler-icon {
      display: inline-block;
      width: 24px;
      height: 2px;
      background: #fff;
      position: relative;
      transition: all 0.3s ease;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 24px;
      height: 2px;
      background: #ea332f;
      transition: all 0.3s ease;
    }
    .navbar-toggler-icon::before {
      top: -8px;
    }
    .navbar-toggler-icon::after {
      top: 8px;
    }
    
    .navbar-toggler.open .navbar-toggler-icon {
      background: transparent;
    }
    .navbar-toggler.open .navbar-toggler-icon::before {
      transform: rotate(45deg);
      top: 0;
    }
    .navbar-toggler.open .navbar-toggler-icon::after {
      transform: rotate(-45deg);
      top: 0;
    }


    /* Mobile dropdown background */
  @media (max-width: 991px) {
    .navbar {
        transition: background 0.3s ease;
      }

      
  }

  .logo-img{
    width: 40px; 
  }


@media (min-width: 768px) {
   .logo-img {
    width: 40px;
    transition: width 0.3s ease; 
    
  }
}

@media (min-width: 1200px) {
  .logo-img{
    width: 60px; 
  }
}



.book-now-btn {
  position: relative;
  border: 2px solid #ffffff;
  background: transparent !important;
  /* background-color: #282e3d; */
  color: #ffffff;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

.book-now-btn:hover {
  border-color: #ea332f;
  background-color: #ea332f !important;
  color: #ffffff;
}

.btn-icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}


@media (max-width: 991px) {
  .book-now-btn {
    width: 100%;
    margin: 10px 0;
    justify-content: center; /* center icon + text horizontally */
    text-align: center;
  }

  .book-now-btn .btn-icon {
    margin-right: 5px; /* smaller or remove margin */
  }
}



/* Hero base */
  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slideshow 18s infinite;
    z-index: -2;
  }

  /* Dark overlay for readability */
  .hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }

  /* Content */
  .hero-section .content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease;
  }



  /* Keyframes for slideshow + zoom effect */
  @keyframes slideshow {
    0%   { background-image: url("/static/images/hero1.jpg"); transform: scale(1);}
    30%  { background-image: url("/static/images/hero1.jpg"); transform: scale(1.1);}
    35%  { background-image: url("/static/images/hero.jpg"); transform: scale(1);}
    65%  { background-image: url("/static/images/hero.jpg"); transform: scale(1.1);}
    70%  { background-image: url("/static/images/tamannas-img-6.jpg"); transform: scale(1);}
    100% { background-image: url("/static/images/tamannas-img-6.jpg"); transform: scale(1.1);}
  }

  /* Fade-in text animation */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }

 /* Base style */

  .btn-transparent {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
  }

  .btn-transparent:hover {
    background: rgba(255, 255, 255, 0.1); /* light overlay */
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  

  .btn-red {
    background: linear-gradient(45deg, #dc3545, #ff5a5f); /* red gradient */
    border: none;
    border-radius: 5px; /* removed pill shape, small rounding */
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    color: #fff !important;
}

.btn-red:hover {
    background: linear-gradient(45deg, #c82333, #ff3b3f); /* slightly darker on hover */
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* Menu Section Background */
.menu-categories-section {
  background-color: #0f0f0f00 !important; 
}

/* Card Styles */
.menu-card {
  position: relative;
  border: none;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Image Hover Zoom */
.card-img-wrapper {
  overflow: hidden;
}
.card-img-top {
  transition: transform 0.5s ease;
  border-radius: 15px 15px 0 0;
}
.menu-card:hover .card-img-top {
  transform: scale(1.1);
}

/* Title Styling */
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* More Button */
.btn-more {
  background: linear-gradient(45deg, #ff3c3c, #ffbc42);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255,65,108,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-more:hover {
  transform: scale(1.1)  !important;
  color: #fff;
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  box-shadow: 0 8px 25px rgba(255,65,108,0.6);
}


/* Smooth infinite animation */
#animated-buttons a {
    animation: slide 3s ease-in-out infinite;
}


@keyframes slide {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

#animated-buttons a:hover {
    animation-play-state: paused;
}


/* Common animation styles */
[data-animate] {
  opacity: 0; /* Start hidden */
  transition: opacity 1.8s ease, transform 1.8s ease; /* Smooth transition */
}

/* Fade-in animation for .mot-content */
[data-animate="fade-in"] {
  transform: translateY(50px); /* Start slightly below */
}

[data-animate="fade-in"].visible {
  opacity: 1;
  transform: translateY(0); /* Final position */
}

/* Fade-in-left animation for  */
[data-animate="fade-in-left"] {
  opacity: 0; /* Start invisible */
  transform: translateX(-50px); /* Start slightly to the left */
}

[data-animate="fade-in-left"].visible {
  opacity: 1;
  transform: translateX(0); /* Final position */
}

/* Fade-in-up animation  */
[data-animate="fade-in-down"] {
  opacity: 0; 
  transform: translateY(-50px); 
  
}

[data-animate="fade-in-down"].visible { 
  opacity: 1; 
  transform: translateY(0); /* Final position */
}

/* Fade-in-right animation */
[data-animate="fade-in-right"] {
  transform: translateX(50px); /* Start slightly to the right */
  opacity: 0; /* Start invisible */
}

[data-animate="fade-in-right"].visible {
  transform: translateX(0); /* Final position */
  opacity: 1; /* Fully visible */
}

@media (max-width: 576px) {
  [data-animate="fade-in-right"] {
    transform: translateX(15px);
  }
}

/* Fade-in-up animation */
[data-animate="fade-in-up"] {
  transform: translateY(50px); /* Start slightly below */
  opacity: 0; /* Start invisible */
}

[data-animate="fade-in-up"].visible {
  transform: translateY(0); /* Final position */
  opacity: 1; /* Fully visible */
}


/* Zoom-in animation */
[data-animate="zoom-in"] {
  transform: scale(0.8); /* Start smaller */
  opacity: 0; /* Start invisible */
}

[data-animate="zoom-in"].visible {
  transform: scale(1); /* Grow to normal size */
  opacity: 1; /* Fully visible */
}

/* Zoom + fade-in-up */
[data-animate="zoom-in-up"] {
  transform: scale(0.8) translateY(50px);
  opacity: 0;
}

[data-animate="zoom-in-up"].visible {
  transform: scale(1) translateY(0);
  opacity: 1;
}



/* Desktop background */
.about-section {
  position: relative;
  background: linear-gradient(#141e30, #243b55);
  overflow: hidden;
}



/* Italic text */
.about-section p,
.about-section h2 {
  font-style: italic;
  color: #fff;
}


.about-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;    /* responsive height */
  min-height: 240px;      /* fallback for older browsers */
  border-radius: 9999px;  /* keep rounded-pill look */
  overflow: hidden;
}

.services-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;    /* responsive height */
  min-height: 240px;      /* fallback for older browsers */
  border-radius: 10px;
  overflow: hidden;
}

/* stacked images fill the container */
.about-slider-img {
  position: absolute;
  inset: 0;               /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  object-fit: cover;      /* scale and crop nicely */
  display: block;
  opacity: 0;
  transform: scale(1.05) rotate(1deg);
  transition: opacity 900ms ease-in-out, transform 900ms ease-in-out;
  border-radius: inherit; /* keep pill radius */
}

/* visible image */
.about-slider-img.active {
  opacity: 1;
  transform: scale(1) rotate(0);
  z-index: 2;
}

/* keep text readable on your dark tinted background */
.about-section p,
.about-section h2 { font-style: italic; color: #fff; }




.gallery-section .item {
  width: 320px;
  height: 400px;
  margin: 0 15px 60px;
  display: flex;
  align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

@media (max-width: 576px) {
  .gallery-section .item {
    width: 90%;        
    margin: 0 auto 40px;
  }
}


.gallery-section .item.active {
  width: 100%;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}

/* Change dot (indicator) color */
.owl-theme .owl-dots .owl-dot span {
  background: #ccc;   /* default dot color */
  transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ea332f;   /* active/hover dot color */
}


/* testimonial */



.testimonial {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px 30px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
    background: #0F172A;
    border-radius: 10px;
}


        
.testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 25px;
    margin-bottom: 15px;
}
.testimonial .title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ea332f;
    margin: 0;
}
.testimonial .post {
    display: inline-block;
    font-size: 17px;
    color: #ea332f;
    font-style: italic;
}
.owl-theme .owl-controls .owl-page span {
    border: 2px solid #2A3D7D;
    background: #fff !important;
    border-radius: 0 !important;
    opacity: 1;
}
        
@media only screen and (max-width: 767px) {
    .testimonial {
        padding: 20px;
        text-align: center;
    }
}

/* Section base */

.bg-gray {
  background-color: #112d4e;
}

.dark-bg {
  background-color: #0E0D0D;
  color: #fff;
}

.bg-blue {
  background-color: #0F172A;
  color: #fff;
}

/* Heading */
.site-heading h2 {
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.site-heading h2 span {
  color: #ea332f;
}



/* Service Items */
.we-offer-area .item {
  color: #fff;
  overflow: hidden;
  padding: 67px 40px 64px;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}



/* the actual image inside the circle */
.we-offer-area .item .icon-wrap .service-img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}


/* Text */
.we-offer-area .item h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
.we-offer-area .item p {
  margin: 0;
}

/* Hover Effects */
.we-offer-area .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ea332f;
  z-index: -1;
  transition: all 0.35s ease-in-out;
}
.we-offer-area .item:hover::after {
  left: 0;
}

.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
  color: #ffffff;
}

/* Container row for spacing */
.our-offer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* Desktop gap */
  justify-content: center;
}

/* Ensure equal-height cards */
.our-offer-items .equal-height {
  display: flex;
  flex: 1 1 calc(25% - 30px) /* 3 cards per row on desktop */
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .we-offer-area .item {
    padding: 50px 30px 45px;
  }
  .we-offer-area .item i {
    font-size: 50px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .we-offer-area .item i::after {
    width: 80px;
    height: 80px;
    top: -5px;
    left: -5px;
  }

  .our-offer-items .equal-height {
    flex: 1 1 calc(50% - 25px); /* 2 cards per row on tablets */
  }
  .our-offer-items {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .we-offer-area {
    padding: 50px 0;
  }
  .site-heading h2 {
    font-size: 28px;
  }
  .site-heading h4 {
    font-size: 16px;
  }
  .we-offer-area .item {
    padding: 40px 20px 35px;
  }
  .we-offer-area .item i {
    font-size: 45px;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .we-offer-area .item i::after {
    width: 70px;
    height: 70px;
  }

  .our-offer-items .equal-height {
    flex: 1 1 100%; /* 1 card per row on mobile */
  }
  .our-offer-items {
    gap: 20px; /* vertical gap between stacked cards */
  }
}

@media (max-width: 576px) {
  .we-offer-area .item {
    padding: 30px 15px 25px;
  }
  .we-offer-area .item i {
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .we-offer-area .item i::after {
    width: 60px;
    height: 60px;
  }
  .we-offer-area .item h4 {
    font-size: 18px;
  }
  .we-offer-area .item p {
    font-size: 14px;
  }
  .our-offer-items {
    gap: 15px;
  }
}




.parallax-section {
  position: relative;
  background-image: url("/static/images/tamannas-img-08.jpg"); /* replace with your image */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  z-index: 1;
}

.parallax-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
  z-index: 2;
}

.parallax-section .container {
  position: relative;
  z-index: 3;
}


/*  Banner */
.banner {
  position: relative;
  min-height: 40vh;
  background: url('/static/images/Tamannas_Hero_1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner {
  position: relative;
  min-height: 60vh;
  background: url('/static/images/contact-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-banner {
  position: relative;
  min-height: 60vh;
  background: url('/static/images/reservation-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-banner {
  position: relative;
  min-height: 60vh;
  background: url('/static/images/tamannas-img-6.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .overlay ,.contact-banner .overlay,.reservation-banner .overlay,
.feedback-banner .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.701); /* dark overlay */
}

.banner .container, .contact-banner .container,
.reservation-banner .container, .feedback-banner .container {
  margin-top:40px;
  position: relative;
  z-index: 2;
}

.banner .sub-heading, .contact-banner .sub-heading, 
.reservation-banner .sub-heading, .feedback-banner .sub-heading {
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.banner .sub-heading::before, .banner .sub-heading::after, .contact-banner .sub-heading::before, 
.contact-banner .sub-heading::after, .reservation-banner .sub-heading::before, .reservation-banner .sub-heading::after,
 .feedback-banner .sub-heading::before, .feedback-banner .sub-heading::after
 {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #fff;
}

.banner .sub-heading::before, .contact-banner .sub-heading::before,
.reservation-banner .sub-heading::before,.feedback-banner .sub-heading::before
{
  left: -50px;
}

.banner .sub-heading::after, .contact-banner .sub-heading::after,
.reservation-banner .sub-heading::after, .feedback-banner .sub-heading::after {
  right: -50px;
}

.banner h1, .contact-banner h1,
.reservation-banner h1,.feedback-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .banner {
    min-height: 10vh; /* reduce banner height */
    text-align: center;
    padding: 40px 15px;
  }

  .contact-banner,.reservation-banner,.feedback-banner {
    min-height: 50vh; /* reduce banner height */
    text-align: center;
    padding: 40px 15px;
  }

  .banner .container, .contact-banner .container,
   .reservation-banner .container,.feedback-banner .container {
    margin-top:60px;
  
  }

  .banner .sub-heading,.contact-banner .sub-heading,
  .reservation-banner .sub-heading,
  .feedback-banner .sub-heading {
    font-size: 1.2rem;
  }

  .banner h1,.contact-banner h1 ,
  .reservation-banner h1,
  .feedback-banner h1 {
    font-size: 1.8rem;
  }

  .banner .sub-heading::before,.banner .sub-heading::after, 
  .contact-banner .sub-heading::before, .contact-banner .sub-heading::after, 
  .reservation-banner .sub-heading::before, .reservation-banner .sub-heading::after,
  .feedback-banner .sub-heading::before, .feedback-banner .sub-heading::after {
    width: 25px; /* shorter lines */
  }
}



.story-section {
  position: relative;
  background: url("/static/images/story-imgs.png") center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(63, 63, 63, 0.911); 
  z-index: 0;
}

.story-section > * {
  position: relative;
  z-index: 1;
}


.story-img {
  max-width: 100%;
  transition: 0.3s ease-in-out;
}

.story-img:hover {
  transform: scale(1.03);
}

.story-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.story-content p {
  color: #fff;
  margin-bottom: 15px;
}


.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: auto auto;  /* auto height based on content */
  gap: 15px;
  position: relative;
  width: 100%;
}

.grid-item img {
  width: 100%;
  object-fit:contain;
  max-height: 200px; /* limit height for col-6 */
}

/* Top image spans and overlaps slightly */
.grid-item.center {
  grid-column: 1 / span 2; /* span both columns */
  grid-row: 1;
  position: relative;
  z-index: -2;
  margin-bottom: -15%; /* overlap bottom row */
}

.grid-item.left {
  grid-column: 1;
  grid-row: 2;
  z-index: 1;
}

.grid-item.right {
  grid-column: 2;
  grid-row: 2;
  z-index: 1;
}

.team-section {
  position: relative;
  background: url("/static/images/2150976532.jpg") center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.595); 
  z-index: 0;
}

.team-section > * {
  position: relative;
  z-index: 1;
}


.team-card {
  position: relative;
  background: rgba(250, 250, 250, 0.05); /* transparent background */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* light transparent border */
  backdrop-filter: blur(10px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}




.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-img-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  
  
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.team-card:hover .team-img-wrapper {
  transform: scale(1.05);
}

.team-card:hover .team-img {
  transform: scale(1.1);
}



.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}


.bi-search {
  color: #000;  
  font-size: 1.2rem; 
}

.menu-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #e63946 ;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #e63946;
}
/* Sub-item cards */
.menu-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.menu-item:hover {
  transform: translateY(-3px);
}
.menu-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
}
.menu-item h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.menu-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #fff;
}

#download-menu{
  position: fixed;
  bottom: 20px;
  right: 30px;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

/* Tooltip styling */
#download-menu::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 60px;
  right: 100px;
  transform: translateX(50%);
  background-color: #d1371f;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show tooltip on hover */
#download-menu:hover::after {
  opacity: 1;
}



.tamanna-gallery-section{
  position: relative;
  background: url("/static/images/section-bg2.jpg") center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.tamanna-gallery-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.855); 
  z-index: 0;
}

.tamanna-gallery-section > *{
  position: relative;
  z-index: 1;
}


.shadow-cm {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 8px 5px rgba(0, 0, 0, 0.15); 
  border-radius: 10px;
  overflow: hidden;
}


.mission-section {
  position: relative;
  background: url("/static/images/mission-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay */
.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.41);
  z-index: 0;
}

/* Smoke overlay */
.mission-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/images/smoke.png") center/cover repeat;
  opacity: 0.25;
  animation: smokeMove 60s linear infinite;
  z-index: 0;
}

.mission-section > * {
  position: relative;
  z-index: 1;
}

/* Smoke animation */
@keyframes smokeMove {
  from { background-position: 0 0; }
  to { background-position: 1000px -1000px; }
}

/* Card Style */
.value-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}



  

  /* Catering Section */
.Journey-section {
  position: relative;
  color: #fff;
  background: url("/static/images/newbg.jpg") center/cover no-repeat;
}

.Journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
  z-index: 0;
}

.Journey-section .container {
  position: relative;
  z-index: 1; /* keep text above overlay */
}

.catering-section ul li span {
  color: #218838; 
  margin-right: 8px;
  font-size: 1.2rem;
} 

/* Slideshow Container */
.catering-slideshow {
  position: relative;
  width: 100%;
  height: 400px; 
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.catering-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.catering-slideshow img.active {
  opacity: 1;
  z-index: 2;
}



.call-to-action {
  position: relative;
  color: #fff;
  background: url("/static/images/call-to-action.png") center/cover no-repeat;
}

.call-to-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* dark overlay for readability */
  z-index: 0;
}

.call-to-action .container {
  position: relative;
  z-index: 1; /* keep text above overlay */
}


  /* Footer Quick Links */

footer {
  background-color: #282e3d;
}

footer h5{
  color: #ea332f;
}

.footer-link {
  color: #fff; /* muted gray */
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ea332f;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ea332f;
}

.footer-link:hover::after {
  width: 100%;
}


/* Star Rating Styling */
.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: transform 0.2s, color 0.3s;
}

.stars label:hover,
.stars label:hover ~ label {
  color: #ffcc00;
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

.stars input:checked ~ label {
  color: #ffbb33;
  text-shadow: 0 0 12px rgba(255, 170, 0, 0.8);
}




.stars label:hover {
  animation: glow 0.4s ease-in-out alternate infinite;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffcc00, 0 0 20px #ffaa00;
  }
  to {
    text-shadow: 0 0 10px #fff06b, 0 0 20px #ffe082, 0 0 40px #ffd54f;
  }
}


/* Disable red border and icons for invalid fields */
.is-invalid {
  border-color: #ced4da !important; /* default Bootstrap border */
  background-image: none !important; /* remove error icon */
  box-shadow: none !important;
}

/* Keep normal focus style */
.form-control:focus {
  border-color: #dc3545 !important; 
  box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.1);
}


/* Forms that share the same style */
#reservationForm .form-control,
#reservationForm .form-select,
#feedbackForm .form-control,
#feedbackForm .form-select,
#contactForm .form-control,
#contactForm .form-select {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  padding-left: 0.5rem; /* space from icon */
  transition: all 0.3s ease;
}

/* Placeholder color white */
#reservationForm .form-control::placeholder,
#reservationForm .form-select::placeholder,
#feedbackForm .form-control::placeholder,
#feedbackForm .form-select::placeholder,
#contactForm .form-control::placeholder,
#contactForm .form-select::placeholder {
  color: #fff;
  opacity: 1;
}

/* Input-group container underline */
#reservationForm .input-group,
#feedbackForm .input-group,
#contactForm .input-group {
  border-bottom: 2px solid #ccc;
  transition: border-color 0.3s ease;
}

/* Input-group icon */
#reservationForm .input-group-text,
#feedbackForm .input-group-text,
#contactForm .input-group-text {
  background: transparent;
  border: none;
  color: #dc3545;
  padding: 0 0.5rem;
}

/* Focus effect on the whole input group */
#reservationForm .input-group:focus-within,
#feedbackForm .input-group:focus-within,
#contactForm .input-group:focus-within {
  border-bottom-color: #dc3545;
}

#reservationForm .form-select option,
#feedbackForm .form-select option,
#contactForm .form-select option {
  color: #000;       /* option text black */
  background-color: #fff; /* option background white */
}



input[type="password"]::-ms-reveal, 
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-clear-button, 
input[type="password"]::-webkit-inner-spin-button {
    display: none; /* Hides the default icon */
}