html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("https://res.cloudinary.com/diktmeiui/image/upload/v1759269337/white_smoke_a27nkx.png") no-repeat center center fixed;
  background-size: cover;
}

/* Page content grows, footer stays pushed down */
.main-content {
  flex: 1;
}

/* Active link underline only */
.nav-link.active-link {
  position: relative;
  color: #fff !important; /* stay white even when active */
}

.nav-link.active-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* adjust underline position */
  width: 100%;
  height: 2px;
  background-color: #ffc107; /* gold underline */
}

/* Hover effect: gold text */
.nav-link:hover {
  color: #ffc107 !important;
}

footer.text-banner {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 1rem 0;        /* add some vertical space */
  text-align: center;
  background: #000;       /* optional: dark footer bg */
}

footer .outlined-text {
  display: inline-block;
  font-size: clamp(2rem, 12vw, 6rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.55); /* white outline for footer */
  margin: 0 auto;
  line-height: 1;
  white-space: nowrap;
}

.about-img {
  max-width: 800px;   /* adjust as needed */
  width: 100%;        /* keeps it responsive */
  height: auto;
  margin: 0 auto;     /* centers inside container */
  display: block;
}

/* Title pill */
.about-title {
  display: inline-block;
  background-color: #000;
  color: #d4af37;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0.6rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

/* Subtitles */
.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  color: #000;
}

/* Highlighted words in gold */
.highlight {
  color: #d4af37;
  font-weight: 600;
}

/* Paragraph text */
.about-paragraph {
  max-width: 850px;
  margin: 1rem auto;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
}

/* Philosophy list */
.about-list {
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.9;
  padding-left: 0;
  list-style: none;
}
.about-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.8rem;
}
.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 1.5rem;
  line-height: 1.2;
}

.about-subtitle.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #666;         /* softer contrast */
  margin-top: 0.5rem;
}

.review-rating { 
  color: inherit !important; 
}

/* Default/empty star */
.review-rating .star {
  font-size: 1.3rem;
  color: #ccc; /* gray for empty */
}

/* Filled star */
.review-rating .star.filled {
  color: #d4af37; /* Aurea gold */
}

.review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse; /* stars go right-to-left */
}

.star-input {
  display: none; /* hide radios */
}

.star-label {
  font-size: 2rem;
  color: #ccc; /* gray by default */
  cursor: pointer;
  padding: 0 5px;
}

/* Gold when checked and for all previous stars */
.star-input:checked ~ .star-label {
  color: #d4af37;
}

/* Hover preview */
.star-label:hover,
.star-label:hover ~ .star-label {
  color: #d4af37;
}

/* FAQ Accordion */
.accordion-button {
  background-color: #fff !important;
  color: #000 !important;
  font-weight: 600;
  border: 1px solid #d4af37 !important;
  box-shadow: none !important;
}

.accordion-button:hover {
  background-color: #f8f8f8 !important;
}

/* Remove Bootstrap's blue outline and replace with gold */
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.5) !important; /* soft gold glow */
  border-color: #d4af37 !important;
  outline: none !important;
}

/* When accordion is expanded (active), make text bold */
.accordion-button:not(.collapsed) {
  font-weight: 700 !important; /* bold */
  background-color: #d4af37 !important; /* gold */
  color: #000 !important; /* black text */
}

/* Special Requests textarea (extra styling if needed) */
textarea.form-control {
  min-height: 120px;
  resize: vertical; /* allow resizing */
}

/* Submit + cancel buttons */
.btn-dark {
  background-color: #000;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-dark:hover {
  background-color: #333;
}

.btn-outline-dark {
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  background-color: #d4af37;
  color: #000;
  border-color: #d4af37;
}

.alert {
  border-radius: 8px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4af37;   /* Aurea gold */
  color: #000;                 /* black text */
  border: none;
}

.alert-warning {
  background-color: #fff3cd;   /* soft gold */
  color: #000;
  border: none;
}

.alert-danger {
  background-color: #f8d7da;
  color: #000;
  border: none;
}

.alert-info {
  background-color: #e2e3e5;
  color: #000;
  border: none;
}

/* Booking cards */
.booking-card {
  border: 2px solid #d4af37;   /* Aurea gold border */
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Hover effect for interactivity */
.booking-card:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); /* gold glow */
  transform: translateY(-3px);
}

/* Menu cards */
.menu-card {
  border: 2px solid #d4af37; /* Aurea gold */
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps spacing consistent */
  height: 100%; /* make all cards equal height */
}

/* Ensure card body expands to fill space */
.menu-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card img {
  height: 200px;
  object-fit: cover;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Carousel controls (arrows) positioning */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;              /* narrower clickable area */
  top: 50%;               /* vertically centered */
  transform: translateY(-50%);
  z-index: 10;            /* keep them above cards */
}

/* Push them further outside */
.carousel-control-prev {
  left: -100px;   /* move arrow further left */
}

.carousel-control-next {
  right: -100px;  /* move arrow further right */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #d4af37; /* Aurea gold */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%, 60%;
}