/* ============================================
   PLAYA DE LUNA — Landing Page Styles
   Colors: Panna, Sabbia, Blu
   Mobile First | Modern | Responsive
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core palette */
  --cream:        #FBF7F0;
  --cream-light:  #FFFDF8;
  --sand:         #E8DCC8;
  --sand-dark:    #D4C5A9;
  --sand-light:   #F0E8D8;
  --blue:         #1B4965;
  --blue-light:   #5FA8D3;
  --blue-pale:    #BEE9E8;
  --blue-deep:    #0F2B3C;
  --gold:         #C4A35A;
  --gold-light:   #D4B978;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --text:         #3A3A3A;
  --text-light:   #6B6B6B;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --font-elegant: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-pad:  60px 20px;
  --container:    1200px;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(27,73,101,0.08);
  --shadow-md:    0 4px 20px rgba(27,73,101,0.12);
  --shadow-lg:    0 8px 40px rgba(27,73,101,0.16);
  --shadow-xl:    0 16px 60px rgba(27,73,101,0.20);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- FLOATING NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s var(--ease-bounce);
}

.navbar__logo-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.navbar.scrolled .navbar__logo-text {
  color: var(--blue);
}

/* Nav Links */
.navbar__links {
  display: none;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .navbar__links a {
  color: var(--text);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Language Switcher */
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__lang button {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled .navbar__lang button {
  border-color: rgba(27,73,101,0.3);
  color: var(--text);
}

.navbar__lang button.active,
.navbar__lang button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--blue);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: right 0.5s var(--ease-smooth);
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu__lang {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.4s 0.5s;
}

.mobile-menu.open .mobile-menu__lang {
  opacity: 1;
}

.mobile-menu__lang button {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-menu__lang button.active,
.mobile-menu__lang button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,43,60,0.4) 0%,
    rgba(15,43,60,0.25) 40%,
    rgba(15,43,60,0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

@media (min-width: 768px) {
  .hero__badge {
    font-size: 0.75rem;
    padding: 8px 20px;
    margin-bottom: 24px;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero__title span {
  display: block;
  font-family: var(--font-elegant);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  opacity: 0.9;
  margin-top: 8px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: max-content;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-smooth) 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,163,90,0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,163,90,0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,73,101,0.3);
}

.btn--blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,73,101,0.4);
}

/* ---------- SECTION TITLES ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header__title--light {
  color: var(--white);
}

.section-header__line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
  border-radius: 1px;
}

.section-header__desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-header__desc--light {
  color: rgba(255,255,255,0.8);
}

/* ---------- ABOUT / CHI SIAMO ---------- */
.about {
  padding: var(--section-pad);
  background: var(--cream);
}

.about__grid {
  display: grid;
  gap: 40px;
}

.about__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.about__text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-smooth);
}

.about__feature:hover {
  transform: translateY(-3px);
}

.about__feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about__feature-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.3;
}

/* ---------- FULL-WIDTH IMAGE SEPARATOR ---------- */
.image-break {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,43,60,0.3), rgba(15,43,60,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break__text {
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.image-break__text blockquote {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  line-height: 1.5;
  max-width: 700px;
}

/* ---------- SPIAGGIA / BEACH ---------- */
.beach {
  padding: var(--section-pad);
  background: var(--sand-light);
}

.beach__cards {
  display: grid;
  gap: 24px;
}

.beach__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-smooth);
}

.beach__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.beach__card-img {
  height: 220px;
  overflow: hidden;
}

.beach__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.beach__card:hover .beach__card-img img {
  transform: scale(1.08);
}

.beach__card-body {
  padding: 24px;
}

.beach__card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.beach__card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- RISTORANTE ---------- */
.restaurant {
  padding: var(--section-pad);
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.restaurant::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.restaurant__intro {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

.restaurant__intro-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 350px;
}

.restaurant-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.restaurant-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.restaurant-slider img.active {
  opacity: 1;
  z-index: 2;
}

.restaurant__intro-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.restaurant__intro-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---------- MENU ---------- */
.menu {
  padding: 60px 0;
}

.menu__category {
  margin-bottom: 48px;
}

.menu__category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.menu__category-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.menu__category-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease-smooth);
}

.menu__item:hover {
  padding-left: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.menu__item:last-child {
  border-bottom: none;
}

.menu__item-name {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
  padding-right: 16px;
}

.menu__item-name small {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.menu__item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.menu__note {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.menu__grid {
  display: grid;
  gap: 0;
}

/* ---------- FOOD GALLERY ---------- */
.food-gallery {
  padding: var(--section-pad);
  background: var(--cream);
}

.food-gallery__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.food-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 260px;
  box-shadow: var(--shadow-sm);
}

.food-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.food-gallery__item:hover img {
  transform: scale(1.08);
}

.food-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,43,60,0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.food-gallery__item:hover .food-gallery__item-overlay {
  opacity: 1;
}

.food-gallery__item-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ---------- SERVICES / SERVIZI ---------- */
.services {
  padding: var(--section-pad);
  background: var(--sand-light);
}

.services__grid {
  display: grid;
  gap: 20px;
}

.services__card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
}

.services__card:hover::before {
  transform: scaleX(1);
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.services__card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue-pale), rgba(95,168,211,0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s var(--ease-bounce);
}

.services__card:hover .services__card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.services__card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.services__card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- LOCATION ---------- */
.location {
  padding: var(--section-pad);
  background: var(--cream);
}

.location__grid {
  display: grid;
  gap: 40px;
}

.location__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.location__detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-pale), rgba(95,168,211,0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.location__detail h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.location__detail p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,43,60,0.85), rgba(27,73,101,0.85));
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner__content p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 30px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s var(--ease-smooth);
}

.footer__social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.75rem;
}

/* ---------- FLOATING MENU BAR ---------- */
.floating-menu-bar {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(15,43,60,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transition: bottom 0.5s var(--ease-smooth);
  padding: 0;
}

.floating-menu-bar.visible {
  bottom: 0;
}

.floating-menu-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.floating-menu-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s var(--ease-smooth);
  font-family: var(--font-body);
  min-width: 60px;
}

.floating-menu-bar__btn:hover,
.floating-menu-bar__btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.floating-menu-bar__btn-icon {
  font-size: 20px;
  line-height: 1;
}

.floating-menu-bar__btn-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.floating-menu-bar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--gold);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(196,163,90,0.4);
}

.floating-menu-bar__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- RESPONSIVE (Tablet 768px+) ---------- */
@media (min-width: 768px) {
  :root {
    --section-pad: 80px 40px;
  }

  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .about__image img {
    height: 450px;
  }

  .beach__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-gallery__item:first-child {
    grid-column: span 2;
    height: 340px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .restaurant__intro {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .restaurant__intro-image {
    height: 450px;
  }

  .location__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .location__map {
    height: 400px;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .floating-menu-bar__btn {
    min-width: 80px;
    padding: 8px 16px;
  }

  .floating-menu-bar__btn-text {
    font-size: 0.65rem;
  }
}

/* ---------- RESPONSIVE (Desktop 1024px+) ---------- */
@media (min-width: 1024px) {
  :root {
    --section-pad: 100px 40px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .beach__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .food-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .food-gallery__item:first-child {
    grid-column: span 1;
    grid-row: span 2;
    height: 100%;
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .floating-menu-bar__inner {
    gap: 8px;
    padding: 12px 24px;
  }

  .floating-menu-bar__btn {
    flex-direction: row;
    min-width: unset;
    padding: 10px 18px;
    gap: 8px;
  }

  .floating-menu-bar__btn-text {
    font-size: 0.7rem;
  }
}

/* ---------- Large desktop ---------- */
@media (min-width: 1200px) {
  .about__image img {
    height: 520px;
  }

  .restaurant__intro-image {
    height: 520px;
  }
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--blue-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  text-align: center;
  color: var(--white);
}

.preloader__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeIn 0.6s;
}

.preloader__wave {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.preloader__wave span {
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.preloader__wave span:nth-child(2) { animation-delay: 0.1s; }
.preloader__wave span:nth-child(3) { animation-delay: 0.2s; }
.preloader__wave span:nth-child(4) { animation-delay: 0.3s; }
.preloader__wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(2.5); }
}

/* Safety: hide body scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ---------- REVIEWS & GMB ---------- */
.reviews-section {
  background-color: var(--panna);
  padding: var(--section-pad);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(27,73,101,0.05);
  border: 1px solid rgba(218,192,163,0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--sabbia);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.review-gmb {
  font-size: 0.75rem;
  color: rgba(27,73,101,0.6);
  margin-top: 2px;
}

/* ---------- DISHES GALLERY ---------- */
.dishes-gallery {
  padding: var(--section-pad);
  background: var(--white);
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.dish-card:hover img {
  transform: scale(1.08);
}

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,73,101,0.8) 0%, rgba(27,73,101,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.dish-card:hover .dish-overlay {
  opacity: 1;
}

.dish-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-smooth);
}

.dish-card:hover .dish-title {
  transform: translateY(0);
}

/* Preloader logo styling */
.preloader__logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.1); }
}

/* ---------- HORIZONTAL SCROLLING MENU ---------- */
.menu-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin-bottom: 40px;
}

.menu-scroll-item {
  flex: 0 0 85%;
  max-width: 320px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.menu-scroll-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .menu-scroll-container {
    justify-content: center;
    padding: 20px 0;
  }
  .menu-scroll-item {
    flex: 0 0 260px;
  }
}



