:root {
  --primary-color: #a87c7c;
  --secondary-color: #3e3232;
  --tertiary-color:#ffc105;
  --bg-color: #f1fafa;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,193,7,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,193,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); }
} 
body {
  background-color: var(--bg-color);
}

.navbar {
  transition: all 0.3s ease;
  background-color: var(--primary-color);
}

.nav-link {
  color: white !important;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color) !important;;
}
.dropdown .dropdown-toggle {
  background-color: var(--tertiary-color);
}

.active {
  border-bottom: 3px solid var(--tertiary-color);
}

/* .navbar.scrolled {
  background: rgba(0, 0, 0, 0.9) !important;
} */

.hero-section {
  height: 100vh;
  background: url('/assets/image/background5.jpg') center/cover;
  position: relative;
  background-position: center;
  background-attachment: fixed;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}
.hero-content a:hover {
  animation: pulse 1.5s infinite;
}

.video-container {
  position: relative;
  width: 100%; 
  padding-bottom: 56.25%; 
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid var(--tertiary-color);
  border-radius: 15px; 
}

.video-container:hover {
  transform: scale(1.02);
}

.video-container:hover {
  transform: scale(1.02);
}

.hero-content {
  padding: 30px;
}

@media (max-width: 992px) {
  .hero-content {
    padding-top: 50px;
  }
}

footer {
  background-color: var(--secondary-color) !important;
}

footer a:hover {
  color: var(--tertiary-color) !important;
  text-decoration: none;
}

.icon-container {
  position: relative;
  display: inline-block;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: default;
}

.icon i {
  color: #000;
  transition: all 0.3s ease;
}

/* Booking Style */
.booking-section {
  background: var(--bg-color);
  color: white;
  padding: 3rem 0;
}
.booking-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.booking-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.privacy-policy {
  font-size: 0.9rem;
  color: #555;
}

.privacy-policy i {
  color: #1c3f60;
}
.modal-footer button {
  border-radius: 50px;
}

.border-brown {
  border: 1px solid var(--primary-color) !important;
}
.border-brown-bottom {
  border-bottom: 1px solid var(--primary-color) !important;
}
.btn-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color) !important;
}
.btn-custom2 {
  background-color: var(--tertiary-color) !important;
  color: #000 !important;
  border: 2px solid var(--primary-color) !important;
}
.radioBtn {
  background-color: var(--tertiary-color) !important;
  color: #000 !important;
}


#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1000;
  background-color:  var(--primary-color);
  /* Customize button color */
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 20px;
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color:  var(--tertiary-color);
}

label{
  color: #333;
}

.error{
    color:red;
}

.menu_nav{
  background-color: var(--primary-color);
  color: white;
}

#menu{
  background: var(--bg-color);
}

/* Food Images Styling */
.food-img {
  border: 4px solid white;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.food-img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
}