/* 
 * Boatmans Bar & Grill - Main Stylesheet
 * Elegant Navy Blue, Cream White & Rose Gold theme
 */

/* Base Styles */
:root {
  --primary-color: #1a2332; /* Deep Navy Blue */
  --secondary-color: #2c3e50; /* Darker Blue-Gray */
  --accent-color: #d4af37; /* Elegant Gold */
  --accent-secondary: #e8c547; /* Lighter Gold */
  --text-color: #2c3e50;
  --light-color: #faf8f5; /* Warm Cream White */
  --gray-color: #f5f3f0; /* Light Cream */
  --dark-gray: #34495e;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(26, 35, 50, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.hover-effect {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 35, 50, 0.3);
}

/* Pulse Button Animation */
.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1.0s;
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent-color);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* Navigation */
.navbar {
  background-color: rgba(26, 35, 50, 0.95);
  padding: 15px 0;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(26, 35, 50, 0.2);
  background-color: rgba(26, 35, 50, 0.98);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light-color);
}

.logo {
  height: 40px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
  transform: scale(1.1);
}

.navbar-nav .nav-link {
  color: var(--light-color);
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: 50%;
}

.btn-orange {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-orange:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-orange {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-orange:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-outline-orange:hover {
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-outline-orange:hover:after {
  height: 100%;
}

/* Mobile Navigation */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 35, 50, 0.8);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-container {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 1050;
  overflow-y: auto;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 15px rgba(26, 35, 50, 0.3);
  padding: 0;
}

.mobile-nav-container.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
}

.mobile-nav-logo span {
  color: var(--light-color);
  font-weight: 600;
  font-size: 18px;
  margin-left: 10px;
}

.mobile-nav-close {
  color: var(--light-color);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.mobile-nav-menu {
  padding: 20px 0;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
}

.mobile-nav-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.mobile-nav-cta {
  padding: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-cta .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  color: var(--light-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav-social a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Hamburger Menu Button */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--light-color);
  display: inline-block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--light-color);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.7)),
    url("img/IMG_1010.JPG");
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--light-color);
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 600px;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--light-color);
}

.tagline {
  font-family: "Dancing Script", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  margin-top: 30px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--light-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.scroll-down a:hover {
  color: var(--accent-color);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Section Titles */
.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
  transition: width 0.5s ease;
}

.section-title:hover h2:after {
  width: 100px;
}

.text-center .section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--light-color);
  position: relative;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
  transition: all 0.5s ease;
}

.about-img img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 15px;
}

.about-img:hover {
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.25);
}

.about-img:hover img {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.feature-icon {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.2);
  color: var(--accent-color);
}

/* Menu Section */
.menu {
  padding: 80px 0;
  background-color: var(--gray-color);
  position: relative;
}

.menu-category {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.menu-category:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.menu-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.2);
}

.menu-category:hover:before {
  transform: scaleX(1);
}

.menu-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 15px;
}

.menu-header i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.menu-category:hover .menu-header i {
  transform: rotate(15deg);
}

.menu-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.menu-item {
  margin-bottom: 20px;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.menu-item:hover {
  background-color: rgba(26, 35, 50, 0.05);
  transform: translateX(5px);
}

.menu-item h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.menu-item:hover h5 {
  color: var(--secondary-color);
}

.menu-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.menu-price {
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 5px;
}

/* Menu Images */
.menu-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
  transition: all 0.5s ease;
  cursor: pointer;
}

.menu-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.25);
}

.menu-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.menu-image-container:hover .menu-image {
  transform: scale(1.05);
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.menu-image-container:hover .menu-overlay {
  opacity: 1;
}

.menu-overlay-content {
  text-align: center;
  color: var(--light-color);
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.menu-image-container:hover .menu-overlay-content {
  transform: translateY(0);
}

.menu-overlay-content i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  color: var(--accent-color);
}

.menu-overlay-content p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Order Online Section */
.order-online {
  padding: 80px 0;
  background-color: var(--light-color);
  position: relative;
}

.delivery-option {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 30px 20px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
  transition: all 0.5s ease;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.delivery-option:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.2);
  border-color: var(--accent-color);
}

.delivery-option i {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.delivery-option:hover i {
  transform: scale(1.2);
  color: var(--accent-color);
}

.delivery-option span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.delivery-link {
  text-decoration: none;
  color: inherit;
}

/* Bar Section */
.bar {
  padding: 80px 0;
  background-color: var(--gray-color);
  position: relative;
}

.bar-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
  transition: all 0.5s ease;
}

.bar-img img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 15px;
}

.bar-img:hover {
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.25);
}

.bar-img:hover img {
  transform: scale(1.05);
}

.bar-feature-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.bar-feature-item:hover {
  transform: translateX(10px);
}

.bar-feature-item i {
  font-size: 20px;
  color: var(--secondary-color);
  margin-right: 15px;
  width: 25px;
  transition: transform 0.3s ease;
}

.bar-feature-item:hover i {
  transform: scale(1.2);
  color: var(--accent-color);
}

.entertainment-list {
  list-style: none;
  padding: 0;
}

.entertainment-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.entertainment-list li:hover {
  transform: translateX(10px);
}

.entertainment-list li i {
  color: var(--secondary-color);
  margin-right: 10px;
  width: 20px;
}

/* Function Room Section */
.function-room {
  padding: 80px 0;
  background-color: var(--light-color);
  position: relative;
}

.function-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
  transition: all 0.5s ease;
}

.function-img img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 15px;
}

.function-img:hover {
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.25);
}

.function-img:hover img {
  transform: scale(1.05);
}

.function-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.function-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.function-features li:hover {
  transform: translateX(10px);
}

.function-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.function-features li:hover i {
  transform: scale(1.2);
  color: var(--accent-color);
}

/* Gallery Section */
.gallery {
  background-color: var(--gray-color);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
  margin-bottom: 20px;
  height: 250px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  color: var(--light-color);
  transform: translateY(20px);
  transition: all 0.5s ease;
  padding: 20px;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.gallery-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-info a:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Contact Section */
.contact {
  position: relative;
  background-color: var(--gray-color);
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.contact-header {
  padding: 80px 0 30px;
  background: linear-gradient(135deg, var(--gray-color) 0%, #f0f0f0 100%);
}

.contact-content {
  position: relative;
  padding-bottom: 80px;
}

.contact-map-col,
.contact-info-col {
  height: 500px;
}

.map-container {
  position: relative;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.map-card {
  background: rgba(250, 248, 245, 0.95);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.2);
  text-align: center;
  max-width: 250px;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.map-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 35, 50, 0.3);
}

.map-card-header {
  margin-bottom: 15px;
}

.map-card-header i {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.map-card-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.map-card p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.contact-info-wrapper {
  height: 100%;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-info-header h3 {
  margin: 0;
  color: var(--light-color);
}

.contact-social {
  display: flex;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  margin-left: 10px;
  color: var(--light-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  flex-grow: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(10px);
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.contact-info-item:hover .icon-box {
  background-color: var(--accent-color);
}

.icon-box i {
  font-size: 20px;
  color: var(--light-color);
  transition: all 0.3s ease;
}

.contact-info-item:hover .icon-box i {
  color: var(--primary-color);
}

.info-content h5 {
  margin: 0 0 5px;
  font-size: 1rem;
  color: var(--light-color);
}

.info-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.8);
}

.info-content a {
  color: rgba(250, 248, 245, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--accent-color);
}

.contact-form-container {
  background-color: var(--light-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
  position: relative;
  overflow: hidden;
  margin-top: -50px;
  z-index: 10;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.form-header h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.form-header p {
  color: #666;
}

.form-floating {
  margin-bottom: 15px;
}

.form-control,
.form-select {
  border: 2px solid #eee;
  padding: 12px 15px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  border-radius: 10px;
  height: calc(3.5rem + 2px);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  background-color: #fff;
}

.form-floating label {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

textarea.form-control {
  min-height: 150px;
}

.contact-form button {
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-form button i {
  transition: transform 0.3s ease;
}

.contact-form button:hover i {
  transform: translateX(5px);
}

/* Form Success Message */
.form-success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.5s ease;
  z-index: 20;
}

.form-success-message.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.success-icon {
  font-size: 60px;
  color: var(--accent-color);
  margin-bottom: 20px;
  animation: success-bounce 2s infinite;
}

@keyframes success-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.form-success-message h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.form-success-message p {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.footer-logo {
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.1);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  color: var(--light-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

.social-links a:hover:before {
  transform: scale(1);
}

.disclaimer {
  font-size: 12px;
  color: rgba(250, 248, 245, 0.7);
  margin-top: 10px;
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(26, 35, 50, 0.2);
  z-index: 1000;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light-color);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 5px;
}

.cta-btn i {
  font-size: 18px;
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.cta-btn:hover i {
  transform: scale(1.2);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  color: var(--primary-color);
}

.back-to-top i {
  font-size: 18px;
}

/* Enhanced Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 35, 50, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.lightbox-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--light-color);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 35, 50, 0.7);
  border-radius: 50%;
}

.lightbox-close:hover {
  color: var(--accent-color);
  transform: scale(1.2);
  background-color: rgba(26, 35, 50, 0.9);
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  color: var(--light-color);
  text-align: center;
  padding: 10px;
  background-color: rgba(26, 35, 50, 0.8);
  border-radius: 5px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 5;
}

.lightbox-prev,
.lightbox-next {
  color: var(--light-color);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  background-color: rgba(26, 35, 50, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-counter {
  position: absolute;
  top: -40px;
  left: 0;
  color: var(--light-color);
  font-size: 16px;
  padding: 5px 10px;
  background-color: rgba(26, 35, 50, 0.7);
  border-radius: 5px;
}

.lightbox-thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  overflow-x: auto;
  padding: 10px 0;
  max-width: 100%;
}

.lightbox-thumbnail {
  width: 60px;
  height: 40px;
  margin: 0 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  object-fit: cover;
  border-radius: 5px;
}

.lightbox-thumbnail.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.lightbox-thumbnail:hover {
  opacity: 1;
}

/* Character counter styling */
.char-counter {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* Reviews Section */
.reviews {
  background-color: var(--gray-color);
  position: relative;
}

.review-card {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.review-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.2);
}

.review-card:hover:before {
  transform: scaleX(1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.reviewer-info h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.review-rating {
  margin-bottom: 5px;
}

.review-rating i {
  color: var(--accent-color);
  font-size: 14px;
  margin-right: 2px;
}

.review-date {
  font-size: 0.85rem;
  color: #666;
}

.review-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-style: italic;
}

.review-content p:before {
  content: '"';
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}

.review-content p:after {
  content: '"';
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Reviews Carousel Section */
.reviews-carousel-container {
  max-width: 1000px;
  margin: 0 auto;
}

.review-slide {
  background-color: var(--light-color);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
  position: relative;
  overflow: hidden;
  margin: 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.review-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
}

.review-content {
  text-align: center;
  width: 100%;
}

.quote-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 30px;
  opacity: 0.8;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  font-style: italic;
  position: relative;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reviewer-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.reviewer-details {
  text-align: left;
}

.reviewer-details h5 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.review-rating {
  margin-bottom: 5px;
}

.review-rating i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 3px;
}

.review-date {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.carousel-control-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.carousel-indicators button:hover {
  background-color: var(--secondary-color);
}

/* Responsive adjustments for reviews carousel */
@media (max-width: 991.98px) {
  .review-slide {
    padding: 40px 30px;
    margin: 10px;
    min-height: 350px;
  }

  .reviewer-info {
    flex-direction: column;
    gap: 15px;
  }

  .reviewer-details {
    text-align: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .carousel-control-prev {
    left: -25px;
  }

  .carousel-control-next {
    right: -25px;
  }
}

@media (max-width: 767.98px) {
  .review-slide {
    padding: 30px 20px;
    margin: 5px;
    min-height: 300px;
  }

  .quote-icon {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .review-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .reviewer-avatar {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .reviewer-details h5 {
    font-size: 1.1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .carousel-indicators {
    bottom: -30px;
  }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(26, 35, 50, 0.95);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .menu-category {
    margin-bottom: 30px;
  }

  .about-img {
    margin-bottom: 30px;
  }

  .contact-map-col,
  .contact-info-col {
    height: auto;
  }

  .map-container {
    height: 300px;
  }

  .contact-info-wrapper {
    padding: 30px;
  }

  .contact-form-container {
    margin-top: 30px;
    padding: 30px;
  }

  .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    display: block;
  }

  .contact {
    padding-bottom: 150px;
  }

  .back-to-top {
    bottom: 70px;
  }
}

@media (max-width: 767.98px) {
  .about,
  .menu,
  .order-online,
  .bar,
  .function-room,
  .contact-header {
    padding: 60px 0;
  }

  .contact-content {
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .tagline {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 250px;
  }

  .contact-info-wrapper {
    padding: 25px;
  }

  .contact-form-container {
    padding: 25px;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .floating-badge {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .feature-icon {
    font-size: 24px;
  }

  .gallery-item {
    height: 200px;
  }

  .lightbox-thumbnails {
    display: none;
  }

  .lightbox-container {
    width: 95%;
    height: 70vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .review-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .reviewer-avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .reviewer-info h5 {
    font-size: 1rem;
  }

  .review-content p {
    font-size: 0.9rem;
  }

  .menu-overlay-content i {
    font-size: 36px;
  }

  .menu-overlay-content p {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }

  .hero-buttons .btn:first-child {
    margin-bottom: 15px;
  }

  .contact-info-item {
    flex-direction: column;
  }

  .icon-box {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-info-header {
    flex-direction: column;
  }

  .contact-social {
    margin-top: 15px;
  }

  .contact-form-container {
    padding: 20px;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .scroll-down {
    bottom: 60px;
  }

  .feature-icon {
    font-size: 20px;
  }

  .menu-header h3 {
    font-size: 1.3rem;
  }

  .menu-item h5 {
    font-size: 1rem;
  }

  .delivery-option {
    height: 100px;
    padding: 20px 15px;
  }

  .delivery-option i {
    font-size: 24px;
  }

  .delivery-option span {
    font-size: 0.9rem;
  }
}

/* Add smooth scrolling to the whole page */
html {
  scroll-behavior: smooth;
}

/* Additional utility classes */
.text-gradient {
  color: var(--accent-color);
}

.bg-gradient {
  background-color: var(--accent-color);
}

.border-gradient {
  border: 2px solid var(--accent-color);
}
