:root {
  --primary-color: #0d3b45;
  --secondary-color: #F7D8A0;
  --tertiary-color: #C7A254;
  --dark-color: #0a2930;
  --dark-blue: #003B51;
  --deep-blue: #031b24;
  --light-color: #f8f9fa;
  --font-primary: 'Cinema Sunday', serif;
  --font-secondary: 'Rubik', sans-serif;
  --font-tertiary: 'Gotam', sans-serif;
  --dark-color-rgb: 10, 41, 48; /* RGB version of --dark-color */
}

body {
  font-family: var(--font-secondary);
  background-color: var(--primary-color);
  color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  text-transform: none;
}

.navbar {
  background-color: rgba(5, 39, 51, 0);
  padding: 10px 0 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: var(--light-color);
  margin: 0 10px;
  font-size: 16px;
  text-transform: none;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  left: 0;
  bottom: -25px;
  transition: width 0.3s;
}

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

.nav-link.active:after {
  width: 100%;
}

.navbar .fa-search {
  transition: color 0.3s ease;
}

.navbar .fa-search:hover {
  color: var(--secondary-color);
}

.heading-gold {
  color: var(--secondary-color);
}

.btn-gold {
  background-color: var(--light-color);
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 25px;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--secondary-color);
  color: var(--dark-blue);
}

.btn-outline-gold {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  text-decoration: none;
  border-radius: 0;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
}

.carousel-item {
  height: 100vh;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

h1 {
  font-size: 6rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

/* Menu Modal Styles */
.menu-modal .modal-content {
  background-color: #0a2c38 !important;
  color: white;
  border: none;
  border-radius: 0;
}

.menu-modal .modal-header {
  border-bottom: 1px solid var(--secondary-color);
  padding: 5px;
}

.menu-modal .modal-title {
  color: var(--light-color);
  font-size: 2.5rem;
  text-align: center;
  width: 100%;
  font-family: 'Georgia', serif;
}

.menu-modal .modal-body {
  padding: 20px;
}

.menu-modal .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  z-index: 1;
}

.menu-section {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding-top: 30px;
  position: relative;
}

.menu-section:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
}

.menu-section-title {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  font-family: 'Cinema Sunday', serif;
}

.menu-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.menu-item {
  margin-bottom: 30px;
  padding: 20px 15px;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.menu-item-name {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.menu-item-price {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.menu-item-description {
  color: #ccc;
  font-style: italic;
  font-size: 0.9rem;
}

.menu-badge {
  background-color: var(--tertiary-color);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.menu2-item {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu2-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  background-color: var(--dark-color);
}

.menu2-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.menu2-item-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.men2-item-price {
  color: #F7D8A0;
  font-weight: 700;
}

.menu2-item-description {
  color: #899BA2;
  font-size: 0.95rem;
}

.modal-backdrop {
  background-color: #000;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.fade-scale {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.fade-scale.show {
  transform: scale(1);
  opacity: 1;
}

.modal-dialog {
  max-width: 800px;
}

.menu-icon {
  margin-right: 5px;
  color: var(--secondary-color);
}

.divider {
  text-align: center;
  margin: 0;
  background-color: transparent;
  position: relative;
}

.divider img {
  height: 40px;
}

.butterfly-icon {
  position: absolute; 
  top: -20px; 
  z-index: 999;
}

.gallery-section {
  background-color: var(--dark-blue);
}

.gallery-filters {
  background-color: var(--dark-blue);
  padding: 50px 0 30px 0;
}

.filter-btn {
  color: #ffffff8c;
  margin: 0 10px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.3s;
}

.filter-btn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.filter-btn.active {
  color: var(--light-color);
}

.filter-btn:hover:after,
.filter-btn.active:after {
  width: 100%;
}

.filter-btn:hover {
  color: var(--light-color);
}

.feature-item {
  position: relative;
  overflow: hidden;
  border: solid .2px #eefffb00;
}

.feature-item image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.feature-item:hover image {
  transform: scale(1.05);
}

/* Restaurant Menu Section */
.restaurant-menu-section {
  background-color: var(--primary-color);
  padding: 50px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.menu-content {
  border-radius: 10px;
}

.menu-header {
  text-align: center;
  margin-bottom: 30px;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Menu Sections */
.breakfast-menu-section,
.lunch-menu-section,
.dinner-menu-section,
.tandoor-menu-section,
.Sizzlers-menu-section,
.desserts-menu-section,
.asian-menu-section,
.Biriyani-menu-section,
.curry-menu-section,
.mutton-menu-section,
.burger-menu-section,
.continental-menu-section,
.drinks-menu-section,
.Howkah-menu-section {
  background-size: cover;
  height: 70vh;
  padding: 100px 0;
}

.breakfast-menu-section {
  background: url('/assets/coffee2.webp') no-repeat center center;
}

.lunch-menu-section {
  background: url('/assets/soup.webp') no-repeat center center;
}

.dinner-menu-section {
  background: url('/assets/dinner.webp') no-repeat center center;
}

.desserts-menu-section {
  background: url('/assets/desert.webp') no-repeat center center;
}

.drinks-menu-section {
  background: url('/assets/drinks.webp') no-repeat center center;
}

.Howkah-menu-section {
  background: url('/assets/webbannercopy.webp') no-repeat center center;
}
.tandoor-menu-section {
  background: url('/assets/tandoor3.jpg') no-repeat center center;
}
.Sizzlers-menu-section {
  background: url('/assets/sizler.webp') no-repeat center center;
}
.Biriyani-menu-section {
  background: url('/assets/biriyani.webp') no-repeat center center;
}
.asian-menu-section {
  background: url('/assets/asian.webp') no-repeat center center;
}
.curry-menu-section {
  background: url('/assets/bread.webp') no-repeat center center;
}
.mutton-menu-section{
  background: url('/assets/mutton.webp') no-repeat center center;
}
.continental-menu-section{
  background: url('/assets/continental.webp') no-repeat center center;
}
.burger-menu-section{
  background: url('/assets/pizza.webp') no-repeat center center;
}
.welcome-section {
  background-color: var(--dark-color);
  padding: 60px 0;
}

.welcome-box {
  max-width: 600px;
  background-color: #00435c;
  text-align: center;
  padding: 4rem;
}

.welcome-text {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #899BA2;
}

.welcome-text2 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: #899BA2;
}

.divider-img {
  max-width: 150px;
  height: auto;
  margin: 1rem auto;
  display: block;
}

.welcome-box h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.image-hover-zoom {
  overflow: hidden;
  display: block;
  position: relative;
}

.image-hover-zoom img {
  transition: transform 0.4s ease;
}

.image-hover-zoom:hover img {
  transform: scale(1.05);
}

.feature-section {
  background-color: #00435c;
  padding: 60px 0;
}

.team-section {
  background-color: var(--dark-blue);
  padding: 60px 0;
}

.team-member-box {
  color: #899BA2;
  background-color: rgba(33, 37, 41, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}

.team-member-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-icons a {
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Testimonials Styles */
.testimonials {
  background-color: var(--dark-blue);
  padding: 80px 0;
  text-align: center;
}

.section-title h2 {
  font-family: var(--font-primary);
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.testimonial-wrapper {
  position: relative;
  margin-top: 40px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  opacity: 1;
}

.testimonial-content-box {
  background-color: rgba(0, 42, 51, 0.8);
  padding: 30px 20px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 20px;
  width: calc(33.33% - 20px);
  position: relative;
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgba(0, 42, 51, 0.8);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-author h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 0;
}

.testimonial-author p {
  font-style: italic;
  font-size: 0.9rem;
  margin: 5px 0 0;
  color: #ccc;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--secondary-color);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-section {
  background-color: var(--dark-color);
  padding: 60px 0;
}

.testimonial-box {
  background-color: #fff;
  border-left: 4px solid var(--secondary-color);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  animation: slideEffect 30s infinite;
  opacity: 0;
  position: absolute;
  width: 100%;
}

@keyframes slideEffect {
  0% { opacity: 0; }
  10% { opacity: 1; }
  33% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.testimonial-indicator {
  font-size: 24px;
  color: var(--secondary-color);
  font-family: var(--font-tertiary);
}

.food-image {
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.custom-scroll .modal-body {
  max-height: auto;
  overflow-y: auto;
  margin: 10px 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) #0d3b45;
}

.custom-scroll .modal-body::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll .modal-body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

.custom-scroll .modal-body::-webkit-scrollbar-track {
  background-color: transparent;
}

.our-menu-section {
  padding: 60px 20px;
  background-color: var(--primary-color);
}

.menu-box {
  background-color: rgba(10, 41, 48, 0.8);
  padding: 40px;
  border-radius: 5px;
  height: 100%;
}

.menu-card {
  background-color: rgba(10, 41, 48, 0.8);
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: auto;
}

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}

.menu-categories {
  background-color: #00435c;
  padding: 40px 0;
}

.input-icon {
  color: white;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.category-box {
  position: relative;
  height: 580px;
  overflow: hidden;
  margin-bottom: 30px;
}

.category-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-box:hover img {
  transform: scale(1.05);
}

.category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--secondary-color);
  padding: 20px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 2rem;
}

.booking-section {
  background-color: var(--dark-color);
  padding: 60px 0;
}

.booking-form {
  padding: 30px;
  border-radius: 5px;
}

.booking-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 168, 124, 0.3);
  color: white;
  border-radius: 0;
  padding: 12px;
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.chef-image {
  height: 100% !important;
  object-fit: cover;
  border-radius: 5px;
}

.video-section {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.video-container {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  background-color: rgba(201, 168, 124, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.play-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.events-section {
  background: url('/assets/Event-bg.webp') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  background-color: #00435c;
}

.events-image {
  height: 680px;
  width: 540px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--secondary-color);
}

.reservation-section {
  background: url('/assets/about/Reserve-banner.webp') no-repeat center center;
  background-size: cover;
  height: 80vh;
  padding: 100px 0;
}

.social-gallery {
  background-color: #00435c;
  padding: 60px 0;
}

.gallery-item {
  margin-bottom: 30px;
  height: 150px;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.info-section {
  background-color: var(--primary-color);
  padding: 60px 0 20px 0;
}

.info-box {
  text-align: center;
  margin-bottom: 30px;
}

.info-box h5 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer {
  background-color: var(--primary-color);
  padding: 50px 0 20px;
  text-align: center;
}

.footer-divider {
  margin-bottom: -40px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 60px;
}

.footer-text {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #adbbc1;
}

.footer-action {
  margin-bottom: 40px;
}

.footer-social {
  margin-top: 30px;
}

.social-icon {
  color: var(--light-color);
  font-size: 16px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--secondary-color);
}

.copyright {
  font-size: 12px;
  color: #687f88;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testimonial-content-box {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .testimonial-content-box {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-content-box {
    width: 100%;
  }
  
  h1 {
    font-size: 4rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.5rem;
  }
}
body {
  background-color: var(--primary-color) !important;
  margin: 0;
  padding: 0;
}
/* Make background banners full width */
.breakfast-menu-section,
.lunch-menu-section,
.dinner-menu-section,
.desserts-menu-section,
.drinks-menu-section,
.Howkah-menu-section{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--primary-color) !important; /* fallback in case image doesn't load */
  padding: 100px 0;
  margin: 0;
  width: 100%;
}

/* Remove extra spacing from all section tags */
section {
  margin: 0;
  padding: 0;
}

/* Remove Bootstrap container side padding */
.breakfast-menu-section .container,
.lunch-menu-section .container,
.dinner-menu-section .container,
.desserts-menu-section .container,
.drinks-menu-section .container
.Howkah-menu-section.container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ======================
   Chef Image Styles 
   ====================== */
.chef-image {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.chef-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ======================
   Booking Form Styles 
   ====================== */
.booking-form {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.booking-form h2,
.booking-form p {
    color: #ffe8ce;
}

/* ======================
   Modal Input Styles 
   ====================== */
.modal-input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.4);
    color: #ffe8ce;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-input:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25);
    color: #fff;
}

.modal-input::placeholder {
    color: rgba(255,232,206,0.6);
}

/* ======================
   Button Styles 
   ====================== */
.btn-gold {
    background-color: #D4AF37 !important;
    color: #0A2930!important;
    padding: 8px,25px;
    border-radius: 1px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #c9a227 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}

/* ======================
   Alert Styles 
   ====================== */
.alert-success {
    background-color: rgba(212,175,55,0.2);
    border-color: #D4AF37;
    color: #ffe8ce;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}


/* Hookah Banner Styles */
.hookah-banner-section {
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.hookah-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hookah-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Section */
.hookah-categories-section {
    background-color: #f8f9fa;
}

.category-section {
    margin-bottom: 3rem;
}

.category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.category-title {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.divider {
    height: 2px;
    width: 100px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.flavor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.flavor-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flavor-item:hover {
    transform: translateY(-5px);
}

.flavor-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.flavor-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Modal Styles */
.modal-content {
    background-color: #0A2930;
    border: 1px solid #D4AF37;
    color: #F7D8A0;
}
.modal-header {
    border-bottom: 1px solid #D4AF37;
}
.modal-title {
    color: #D4AF37 !important;
    font-weight: 600;
}
.btn-close {
    filter: invert(1);
    opacity: 0.8;
}
.btn-close:hover {
    opacity: 1;
}

/* Form Styles */
.modal-input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.4);
    color: #F7D8A0;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.modal-input:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25);
    color: #fff;
}
.modal-input::placeholder {
    color: rgba(247, 216, 160, 0.6);
}
select.modal-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23F7D8A0' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

Button Styles
.btn-gold {
    background-color: #D4AF37 !important;
    color: #0A2930 !important;
    padding: 8px,25px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #c9a227 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}

/* Alert Messages */
.alert {
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}
/* .alert-success {
    background-color: rgba(212,175,55,0.2);
    border-color: #D4AF37;
    color: #F7D8A0;
} */
.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    color: #ffe8ce;
}

/* Validation Messages */
.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
.is-invalid {
    border-color: #dc3545 !important;
}
.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25) !important;
}

/* ======================
   Success Toast Styles 
   ====================== */
.success-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: rgba(var(--dark-color-rgb), 0.95);
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(5px);
    font-family: var(--font-secondary);
    animation: toastFadeIn 0.4s ease-out;
    display: none;
}

.success-toast.show {
    display: block;
}

.success-toast .toast-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.success-toast h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-family: var(--font-primary);
}

.success-toast p {
    color: var(--light-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.success-toast .toast-close {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.success-toast .toast-close:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-2px);
}

@keyframes toastFadeIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Confetti effect */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    z-index: 9998;
    animation: confettiFall 3s ease-in-out;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}


/* blog style */

/* Hero Section */
.blog-hero {
  height: 70vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}

.blog-hero-title {
  font-size: 4rem;
  color: #ffe8ce;
  font-family: var(--font-tertiary);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  animation-delay: 0.3s;
}

.blog-hero-subtitle {
  color: #D4AF37;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  animation-delay: 0.6s;
}

/* Welcome Section - Dark Theme with Animations */
.blog-welcome-section-dark {
  padding: 6rem 0;
  background-color: #0A2930;
  background: linear-gradient(135deg, #0A2930 0%, #0d3a43 100%);
  position: relative;
  overflow: hidden;
}

.welcome-card-dark {
  background-color: rgba(255,255,255,0.05);
  padding: 4rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
}

.welcome-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  background-color: rgba(255,255,255,0.08);
}

.section-title-dark {
  color: #D4AF37;
  font-family: var(--font-tertiary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title-dark::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #D4AF37;
}

.welcome-text-dark {
  color: #F7D8A0;
  line-height: 1.8;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.experience-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #D4AF37 0%, #c9a227 100%);
  color: #0A2930;
  padding: 1.2rem 2rem;
  border-radius: 5px;
  margin-top: 2.5rem;
  box-shadow: 0 5px 15px rgba(212,175,55,0.3);
  transition: all 0.3s ease;
}

.experience-badge-dark:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

.experience-badge-dark .years-dark {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-tertiary);
}

.experience-badge-dark .text-dark {
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 600;
}

.divider-img-dark {
  margin: 2rem auto;
  max-width: 120px;
  opacity: 0.8;
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Divider */
.divider {
  text-align: center;
  
}

.butterfly-icon {
  max-width: 100px;
  opacity: 0.7;
}

/* Blog Main Section */
.blog-main-section {
  padding: 5rem 0;
  background-color: #00435c;
}

.blog-post-card {
  background-color: #0A2930;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
}

.blog-post-card .post-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.blog-post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image img {
  transform: scale(1.03);
}

.post-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #D4AF37;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-content {
  padding: 1.5rem;
}

.post-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 15px;
}

.post-date {
  color: #D4AF37;
  font-weight: 500;
}

.post-title {
  color: #ffe8ce;
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-excerpt {
  color: #899BA2;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more-link {
  color: #D4AF37;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #c9a227;
  text-decoration: underline;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.blog-pagination a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  color: #555;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-pagination a:hover, 
.blog-pagination a.active {
  background-color: #D4AF37;
  color: white;
  border-color: #D4AF37;
  text-decoration: none;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: #0A2930;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.widget-title {
  color: #D4AF37;
  font-family: var(--font-tertiary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.widget-text {
  color: #899BA2;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Newsletter Widget */
.newsletter-widget {
  background-color: #0A2930;
  color: white;
}

.newsletter-form .form-control {
  background-color: rgba(255,255,255,0.1);
  border-color: #D4AF37;
  color: white;
  margin-bottom: 1rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.subscribe-btn {
  background-color: #D4AF37;
  color: #0A2930;
  border: none;
  padding: 0.7rem;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #c9a227;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.categories-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.categories-list a {
  color: #899BA2;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.categories-list a:hover {
  color: #D4AF37;
}

.categories-list span {
  color: #777;
  font-size: 0.85rem;
}

/* Popular Posts Widget */
.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post .post-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.popular-post .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.popular-post h4 a {
  color: #899BA2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.popular-post h4 a:hover {
  color: #D4AF37;
}

.popular-post .post-date {
  color: #777;
  font-size: 0.8rem;
}

/* Culinary Journey Section */
.culinary-journey-section {
  padding: 5rem 0;
  background-color: #0A2930;
  color: white;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  color: #D4AF37;
  font-family: var(--font-tertiary);
  font-size: 2.5rem;
}

.section-subtitle {
  color: #ffe8ce;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem 1.5rem 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption h4 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  color: white;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Reservation Section */
.reservation-content {
  color: white;
}

.reservation-text {
  color: #899BA2;
  line-height: 1.7;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: #899BA2;
}

.feature-item i {
  color: #D4AF37;
}

.booking-form .form-control {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.8rem 1rem;
}

.booking-form .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .blog-hero-title {
    font-size: 2.8rem;
  }
  
  .welcome-card-dark {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .blog-hero {
    height: 50vh;
  }
  
  .blog-hero-title {
    font-size: 2.2rem;
  }
  
  .experience-badge-dark {
    padding: 0.8rem 1rem;
  }
  
  .experience-badge-dark .years-dark {
    font-size: 2rem;
  }
  
  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 575.98px) {
  .blog-hero-title {
    font-size: 1.8rem;
  }
  
  .blog-hero-subtitle {
    font-size: 1rem;
  }
  
  .welcome-card-dark {
    padding: 1.5rem;
  }
}


/* contact */
 .text-gold {
    color: #D4AF37;
  }
  .text-gold:hover {
    color: #fff;
  }
  
  /* Call Now Button Styles */
  .btn-call-now {
    display: inline-block;
    padding: 12px 30px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
  }
  
  .btn-call-now:hover {
    background-color: #b38e1f !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
  }
  
  .btn-call-now:active {
    transform: translateY(1px);
  }
  
  /* Ensure contact info is fully visible */
  .contact-card {
    padding: 30px;
    background-color: #0f3a44;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
  }
  
  .contact-icon {
    margin-right: 15px;
    color: #D4AF37;
    font-size: 20px;
    margin-top: 3px;
  }
  
  .contact-details h4 {
    color: #D4AF37;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .contact-details p {
    color: #ffe8ce;
    margin: 0;
  }

  /* feature */
   .feature-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1);
  }
  
  .feature-title {
    color: #D4AF37;
    font-family: var(--font-tertiary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
  }
  
  .feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #D4AF37;
  }
  
  .feature-text {
    color: #ffe8ce;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .feature-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(212,175,55,0.9);
    color: #0A2930;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
    opacity: 0;
    border-radius: 0 0 10px 10px;
  }
  
  .feature-card:hover .feature-hover-content {
    transform: translateY(0);
    opacity: 1;
  }
  
  .feature-hover-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .feature-hover-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
  }
  
  .feature-hover-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0A2930;
    font-weight: bold;
  }
  
  /* Testimonial Content Box */
  .testimonial-content-box {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Reservation Card */
  .reservation-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 3rem;
    backdrop-filter: blur(5px);
  }
  
  .form-control {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: #ffe8ce;
    padding: 0.8rem 1rem;
    border-radius: 5px;
  }
  
  .form-control::placeholder {
    color: rgba(255,232,206,0.7);
  }
  
  .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25);
    background-color: rgba(255,255,255,0.15);
  }
  



    /* Success Toast Styles */
    .success-toast {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
        background: rgba(255, 248, 240, 0.95);
        color: #5a3921;
        padding: 30px 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(90, 57, 33, 0.3);
        font-weight: 600;
        text-align: center;
        max-width: 400px;
        border: 2px solid #d4af37;
        animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                   pulse 2s infinite 0.6s;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .success-toast i {
        font-size: 3rem;
        color: #d4af37;
        margin-bottom: 15px;
        animation: bounce 0.8s;
    }

    .success-toast .toast-message {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .success-toast .toast-submessage {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 15px;
    }

    .success-toast .toast-close {
        background: #d4af37;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .success-toast .toast-close:hover {
        background: #c9a227;
        transform: translateY(-2px);
    }

    @keyframes slideIn {
        from { 
            opacity: 0;
            transform: translate(-50%, -40%);
        }
        to { 
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
        40% {transform: translateY(-20px);}
        60% {transform: translateY(-10px);}
    }

    @keyframes pulse {
        0% {box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);}
        50% {box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);}
        100% {box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);}
    }

    /* Confetti effect */
    .confetti {
        position: fixed;
        width: 10px;
        height: 10px;
        background-color: #f00;
        opacity: 0;
        z-index: 9998;
        animation: confettiFall 3s ease-in-out;
    }

    @keyframes confettiFall {
        0% {
            transform: translateY(-100vh) rotate(0deg);
            opacity: 1;
        }
        100% {
            transform: translateY(100vh) rotate(360deg);
            opacity: 0;
        }
    }
/* footer */

  .footer-social .social-icon {
    text-decoration: none;
    color: #ffffff; /* Default icon color */
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

  .footer-social .social-icon:hover {
    text-decoration: none;
    color: #d4af37; /* Gold hover color */
  }




  /* sucess modal */
  /* Success Toast Styles */
.success-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(255, 248, 240, 0.95);
    color: #5a3921;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(90, 57, 33, 0.3);
    font-weight: 600;
    text-align: center;
    max-width: 400px;
    border: 2px solid #d4af37;
    animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
               pulse 2s infinite 0.6s;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

.success-toast i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
    animation: bounce 0.8s;
}

.success-toast .toast-message {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.success-toast .toast-submessage {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.success-toast .toast-close {
    background: #d4af37;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.success-toast .toast-close:hover {
    background: #c9a227;
    transform: translateY(-2px);
}

/* Confetti effect */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    z-index: 9998;
    animation: confettiFall 3s ease-in-out;
}

/* Animations */
@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

@keyframes pulse {
    0% {box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);}
    50% {box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);}
    100% {box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);}
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* blog-details-blade */
  .blog-detail-page {
    background: linear-gradient(rgba(13, 59, 69, 0.9), rgba(13, 59, 69, 0.9)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  .blog-featured-image:hover img {
    transform: scale(1.03);
  }
  
  .share-icon:hover {
    color: #F7D8A0 !important;
    transform: translateY(-3px);
  }
  
  .back-to-blog-btn:hover {
    background-color: #c4a267 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 206, 124, 0.3);
  }
  
  .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

  /* contact form
   :root {
            --font-primary: 'Playfair Display', serif;
            --font-secondary: 'Poppins', sans-serif;
            --font-tertiary: 'Dancing Script', cursive;
            --color-primary: #0A2930;
            --color-secondary: #D4AF37;
            --color-accent: #c9a227;
            --color-light: #ffe8ce;
        }
        
        body {
            font-family: var(--font-secondary);
            color: #333;
            background-color: #f8f9fa;
        }
        
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100vh;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            filter: brightness(0.7);
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 100%;
        }
        
        .hero-content h1 {
            font-family: var(--font-primary);
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--color-light);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .btn-call-now {
            background-color: var(--color-accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-call-now:hover {
            background-color: var(--color-secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        .divider {
            text-align: center;
            padding: 20px 0;
            background-color: var(--color-primary);
        }
        
        .butterfly-icon {
            max-width: 200px;
            height: auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .divider-img {
            max-width: 150px;
            height: auto;
        }
        
        .contact-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .contact-title {
            font-family: var(--font-primary);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .form-control {
            background-color: rgba(255, 232, 206, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--color-light);
            padding: 12px 15px;
            border-radius: 8px;
        }
        
        .form-control:focus {
            background-color: rgba(255, 232, 206, 0.15);
            border-color: var(--color-accent);
            box-shadow: none;
            color: var(--color-light);
        }
        
        .form-control::placeholder {
            color: rgba(255, 232, 206, 0.7);
        }
        
        .btn-gold {
            background-color: var(--color-accent);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: var(--color-secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--color-accent);
            margin-right: 15px;
            min-width: 30px;
            text-align: center;
        }
        
        .contact-details h4 {
            color: var(--color-accent);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: var(--color-light);
            margin-bottom: 0;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--color-accent);
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--color-accent);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Success Modal Styles */
        /* .modal-content {
            background-color: var(--color-primary);
            color: var(--color-light);
            border: 2px solid var(--color-accent);
            border-radius: 15px;
        }
        
        .modal-header {
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .modal-title {
            color: var(--color-accent);
            font-family: var(--font-primary);
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .modal-icon {
            font-size: 4rem;
            color: var(--color-accent);
            margin-bottom: 20px;
        } */ 