body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.cursive-text {
  font-family: "Great Vibes", cursive;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  cursor: pointer;
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #212529;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 2.2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #212529;
  padding: 0.25rem;
  line-height: 1;
}

/* Prevent background scroll when mobile menu is open */
.no-scroll {
  height: 100%;
  overflow: hidden;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #c8a97e;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  font-size: 18px; /* control icon size */
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.back-to-top i {
  /* ensure icon fits */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  padding: 2rem 1rem;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
}
/* Banner css */
.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url("../img/home-page.jpeg"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noah", "Open Sans", sans-serif;
  padding-top: 83.3px;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
}

.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 123, 255, 0.4)); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  /* backdrop-filter: blur(2px); */
}

.banner-content h1 {
  position: relative;
  margin-bottom: 15px;
  font-size: 70px;
  line-height: 1em;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  color: #c8a97e;
  font-weight: 400;
}
.banner-content h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.5;
  font-weight: normal;
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
#upcoming-events .card-img-top {
  width: 100%;
  aspect-ratio: 3 / 4; /* Matches 1200x1600 ratio */
  object-fit: contain;
}
#upcoming-events .card {
  border: none;
  background-color: transparent;
}

button,
a.btn {
  cursor: pointer;
  background-color: #c8a97e;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
button:hover,
a.btn:hover {
  cursor: pointer;
  background-color: #e0b171;
}

/* Remove hover/active styles specifically for the hamburger button to keep it visually stable */
.hamburger:hover,
.hamburger:active,
.hamburger:focus {
  background: transparent;
  color: inherit;
  outline: none;
}

.footer {
  background-color: #1f2937;
  color: #fefcf9;
  padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Links */
.footer-links h3,
.footer-social h3,
.footer-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #c8a97e;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #fefcf9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #e0b171;
}

/* Social Media */
.footer-social {
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: #fefcf9;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #c8a97e;
  transform: scale(1.2);
}

/* Contact */
.footer-contact p {
  margin-bottom: 0.5rem;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #d1d5db;
  border-top: 1px solid #374151;
  padding-top: 1rem;
}
.form-select {
  height: calc(3rem + 2px); /* same as input */
  padding: 0.375rem 0.75rem;
  display: block;
  font-size: 1rem;
  width: 100%;
  border-radius: 0.375rem; /* match input radius */
}
/* Make select look like inputs */
.form-select {
  appearance: none; /* Remove native OS styling */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff; /* same as input */
  border: 1px solid #ced4da; /* match Bootstrap input */
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  height: calc(3rem + 2px); /* same as inputs */
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Match focus styles of Bootstrap inputs */
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
#reservation-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: inline-block;
  color: #212529;
  margin-top: 1rem;
}
.success-message {
  margin-top: 1rem;
  padding: 0.7rem;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  display: none;
  /* hidden until form is submitted */
}
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }
}

/* Fade-in keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base fade style */
/* Base fade style: hidden until the element gets the `in-view` class. */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  /* we'll trigger animation via the .in-view class */
}

/* When an item becomes visible, play the fadeInUp animation. */
.fade-item.in-view {
  animation: fadeInUp 0.8s ease forwards;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-item,
  .fade-item.in-view {
    transition: none;
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}
input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
textarea {
  resize: vertical;
  min-height: 100px;
}

/* Icon for menu cards */
.menu-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #333;
  font-size: 22px;
  margin: 12px 0;
}

.menu-card-icon i {
  line-height: 1;
}
