/* =========================================================
   RESTAURANT SERVICE PAGE
   Add this file after style.css
   ========================================================= */

/* Desktop dropdown under SERVICE */
.nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: -22px;
  bottom: -28px;
}

.nav-dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  min-width: 190px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 100;
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 13px;
  white-space: nowrap;
  font-size: .85rem;
  letter-spacing: .045rem;
}

.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: #f5f5f5; }

.nav-item--dropdown:hover .nav-dropdown-menu,
.nav-item--dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-item--dropdown:hover .nav-dropdown-arrow {
  transform: rotate(225deg) translate(-1px, -1px);
}

/* Mobile submenu */
.nav-mobile-group {
  display: flex;
  flex-direction: column;
}

.nav-mobile-parent {
  font-weight: 600;
  padding-bottom: 3px !important;
}

.nav-mobile-child {
  margin-left: 16px;
  padding: 6px 0 !important;
  color: #666;
  font-size: .9rem;
}

/* Restaurant hero */
.restaurant-page {
  background: #fff;
  color: #ffffff
}

.restaurant-hero {
  padding: 90px 0 90px;
  border-top: 0;
  text-align: center;

	    min-height:500px;

	
    background:
        linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.25)),
        url("images/hero_restaurant.jpg") center/cover no-repeat;
}


.restaurant-hero__inner {
  max-width: 950px;
  margin: 0 auto;
}

.restaurant-hero__eyebrow {
  margin-bottom: 18px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
}

.restaurant-hero__title {
  margin: 0 auto 20px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.02;
 /* letter-spacing: -.055em;*/
  font-weight: 600;
  max-width: 900px;
}

.restaurant-hero__text {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #ffffff;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.restaurant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid #e44a2d;
	 background: #e44a2d;
  border-radius: 999px;
  color: #ffffff;
  
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.restaurant-btn:hover {
  color: #fff;
  background: #e44a2d;
  transform: translateY(-2px);
}

.restaurant-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Repeating image + information sections */
.restaurant-info-section {
  padding: 100px 0;
  border-top: 0;
  background: #fff;
}

.restaurant-info-section:nth-of-type(even) {
  background: #fbfaf9;
}

.restaurant-info {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(55px, 7vw, 105px);
  align-items: center;
}

.restaurant-info-section.is-reverse .restaurant-info__media { order: 2; }
.restaurant-info-section.is-reverse .restaurant-info__content { order: 1; }

.restaurant-info__media {
  overflow: hidden;
  border-radius: 28px;
  background: #eee9e6;
  aspect-ratio: 1 / 1;
}

.restaurant-info__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-info__heading {
  margin: 0 0 34px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.08;
  /*letter-spacing: -.045em;*/
  font-weight: 600;
	color: #333333;
}

.restaurant-info__list {
  display: grid;
  gap: 36px;
}

.restaurant-info__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.restaurant-info__icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fde3dd;
  color: #f04424;
}

.restaurant-info__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.restaurant-info__item-title {

  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -.001em;
  font-weight: 600;
	color: #333333;
}

.restaurant-info__item-text {
  margin: 0;
  color: #594a46;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Bottom CTA */
.restaurant-cta {
  padding: 80px 20px;
  border-top: 0;
  text-align: center;
  background: #e44a2d;
  color: #fff;
}

.restaurant-cta__inner { max-width: 820px; margin: 0 auto; }
.restaurant-cta__title {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0em;
}
.restaurant-cta__text {
  margin: 0 auto 28px;
  max-width: 600px;
  color: #e5d9d5;
  font-size: 1.08rem;
  line-height: 1.65;
}
.restaurant-cta .restaurant-btn { background: #fff; border-color: #fff; color: #28130f; }
.restaurant-cta .restaurant-btn:hover { background: #f6e8e3; }

@media (max-width: 900px) {
  .restaurant-info {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .restaurant-info-section.is-reverse .restaurant-info__media,
  .restaurant-info-section.is-reverse .restaurant-info__content { order: initial; }
  .restaurant-info__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .nav-item--dropdown { display: none; }
  .restaurant-hero { padding: 72px 0 65px; }
  .restaurant-info-section { padding: 65px 0; }
  .restaurant-info { padding: 0 20px; gap: 34px; }
  .restaurant-info__media { border-radius: 18px; }
  .restaurant-info__heading { margin-bottom: 28px; }
  .restaurant-info__list { gap: 28px; }
  .restaurant-info__item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }
  .restaurant-info__icon { width: 52px; height: 52px; border-radius: 10px; }
  .restaurant-info__icon svg { width: 26px; height: 26px; }
  .restaurant-info__item-text { font-size: .98rem; }
  .restaurant-cta { padding: 75px 20px; }
}
