/* Menu page specific styles */

/* Menu Hero Slider */
.menu-hero-slider {
  height: 580px;
  position: relative;
  overflow: hidden;
}

.menu-hero-slider .slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.menu-hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--bg);
  opacity: 0;
  transition: opacity 800ms ease;
}

.menu-hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.menu-hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: grid;
  place-items: center;
  text-align: center;
}

.menu-title {
  font-family: "Jaymont Personal", "Futura", system-ui, sans-serif;
  font-size: 114px;
  font-weight: 400;
  color: #efead8;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
}

/* Hours & Location Section */
.hours-location {
  background: #fffbef;
  padding: 80px 0;
  min-height: 40vh;
}

.hours-location .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.hours-heading {
  font-family: "Spartan", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #465430;
  margin-bottom: 80px;
  letter-spacing: 0.02em;
}

.address {
  font-family: "Times New Roman", "Times", serif;
  font-size: 28px;
  color: #465430;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 24px auto;
}

.address p {
  margin: 8px 0;
}

/* Menu Slider Dots */
.menu-hero-slider .dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 5;
  justify-content: center;
  align-items: center;
}

.menu-hero-slider .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 200ms ease;
  display: block;
}

.menu-hero-slider .dot.active {
  background: #fff;
  transform: scale(1.2);
  border-color: #fff;
}

.menu-hero-slider .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.menu-hero-slider .dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Map image - full width and responsive */
.map {
  width: 100%;
  height: auto;
  display: block;
}

/* Indicate clickability */
.map {
  cursor: pointer;
}

/* Prevent horizontal scroll when zooming map on small screens */
main {
  overflow: hidden;
}

@media (max-width: 768px) {
  .map {
    transform: scale(1.5);
    transform-origin: center bottom;
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  .map {
    transform: scale(1.8);
    transform-origin: center bottom;
    margin-top: 70px;
  }
}

.title-operational {
  margin-top: 80px;
  margin-bottom: 20px;
  font-family: "Spartan", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #465430;
  letter-spacing: 0.02em;
}

/* About Footer (copied from about.css for identical styling) */
.about-footer {
  background: #465430;
  height: 117px;
  display: flex;
  align-items: center;
}

.about-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: #ffffff;
  border-radius: 13.5px;
  color: #465430;
  text-decoration: none;
  transition: all 300ms ease;
  border: 1px solid #000;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.copyright p {
  color: #ffffff;
  font-family: "Spartan", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: auto;
  margin: 0;
  text-align: center;
}

.operational-days {
  margin-top: 80px;
  margin-bottom: 20px;
  font-family: "Spartan", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #465430;
  letter-spacing: 0.02em;
}

.operational-hours {
  /* margin-top: 80px; */
  margin-bottom: 20px;
  font-family: "Spartan", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #465430;
  letter-spacing: 0.02em;
}

/* Responsive typography */
@media (max-width: 768px) {
  .hours-heading {
    font-size: 28px;
  }
  .address {
    font-size: 20px;
  }
  .title-operational,
  .operational-days,
  .operational-hours {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hours-heading {
    font-size: 24px;
  }
  .address {
    font-size: 18px;
  }
  .title-operational,
  .operational-days,
  .operational-hours {
    font-size: 20px;
  }
}

/* Footer responsive adjustments (match about.css) */
@media (max-width: 480px) {
  .about-footer {
    height: 100px;
  }

  .footer-content {
    gap: 8px;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }

  .social-icon svg {
    width: 14px;
    height: 14px;
  }

  .copyright p {
    font-size: 12px;
  }
}
