/* ================================================
   KEEP UP — Dark Luxury Theme
   Dining & Lounge Bar · Catania
   ================================================ */

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

:root {
  --navy-deep:  #07101f;
  --navy:       #0d1b3a;
  --navy-mid:   #111f42;
  --navy-light: #1a2a55;
  --gold:       #c8a55a;
  --gold-light: #e2c97a;
  --gold-dark:  #9a7e3a;
  --gold-bg:    rgba(200,165,90,.10);
  --gold-border:rgba(200,165,90,.28);
  --cream:      #f0e8d6;
  --white:      #ffffff;
  --gray-lt:    #c0bdb5;
  --gray:       #7a7a8a;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Raleway', sans-serif;
  --tr: all .35s ease;
  --r: 3px;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy-deep);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--ff-head); line-height: 1.2; color: var(--cream); }
h1 { font-size: clamp(2.4rem,6vw,5rem); }
h2 { font-size: clamp(1.8rem,4vw,3rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.7rem); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

.gold    { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* -------- UTILITIES -------- */
.section-tag {
  display: block;
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.4rem auto;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin: 1.2rem 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament i { color: var(--gold); font-size: .75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: var(--tr);
  border-radius: var(--r);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,165,90,.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* -------- FADE-UP ANIMATION -------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--tr);
}

.navbar.scrolled {
  background: rgba(7,16,31,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  padding: .85rem 2.5rem;
}

.nav-logo { display: flex; flex-direction: column; align-items: flex-start; }
.nav-logo .logo-main {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: .06em;
}
.nav-logo .logo-main span { color: var(--gold); }
.nav-logo .logo-sub {
  font-size: .52rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-lt);
  font-weight: 500;
  transition: var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: .45rem 1.2rem !important;
  border-radius: var(--r) !important;
  transition: var(--tr) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}
.nav-cta::after { display: none !important; }

.nav-social {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-left: 1.5rem;
}
.nav-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-lt);
  font-size: .8rem;
  transition: var(--tr);
}
.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}
.nav-social a::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../foto/WhatsApp Image 2026-02-25.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 9s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,16,31,.65) 0%,
    rgba(7,16,31,.38) 40%,
    rgba(7,16,31,.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroIn 1.6s ease .3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .85;
  margin-bottom: 1.8rem;
}
.hero-logo-top {
  font-family: var(--ff-head);
  font-size: clamp(3rem,9vw,7.5rem);
  color: var(--white);
  letter-spacing: .06em;
}
.hero-icon {
  color: var(--gold);
  font-size: clamp(2rem,4.5vw,3.8rem);
  margin: .2rem 0;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-logo-bottom {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem,8vw,6.5rem);
  color: var(--white);
  letter-spacing: .06em;
}

.hero-tagline {
  font-size: .72rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.scroll-text {
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .6;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: .3; transform: scaleY(.6) translateY(0); }
  50%     { opacity: 1;  transform: scaleY(1) translateY(0); }
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: 8rem 0;
  background: var(--navy);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p {
  color: var(--gray-lt);
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 1.3rem;
}
.about-info {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 2rem;
}
.about-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.2rem;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
}
.about-info-item i { color: var(--gold); width: 18px; flex-shrink: 0; }
.about-info-item span { font-size: .85rem; letter-spacing: .04em; }

.about-image { position: relative; }
.about-image img {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: var(--r);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--r);
  opacity: .28;
  z-index: -1;
}

/* ================================================
   MENU PREVIEW
   ================================================ */
.menu-preview {
  padding: 8rem 0;
  background: var(--navy-deep);
  text-align: center;
}
.section-header { margin-bottom: 3.5rem; }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--gold-border);
  background: var(--navy-mid);
  transition: var(--tr);
  cursor: pointer;
  display: block;
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.menu-card-img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,16,31,.92) 0%, transparent 55%);
}
.menu-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  text-align: left;
}
.menu-card-body h3 { font-size: 1.35rem; margin-bottom: .3rem; }
.menu-card-body p {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-card-arrow {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .75rem;
  opacity: 0;
  transition: var(--tr);
}
.menu-card:hover .menu-card-arrow { opacity: 1; }

/* ================================================
   WINE VISUAL CARD (CSS-only illustration)
   ================================================ */
.wine-visual-card {
  width: 100%; height: 300px;
  background: linear-gradient(160deg, #0a1628 0%, #111e3d 40%, #0d1530 70%, #07101f 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

/* Background glow effect */
.wine-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(139,0,50,.18) 0%, rgba(180,100,20,.12) 40%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%,-50%) scale(1.15); }
}

/* Floating bubbles */
.wine-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wine-bubbles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: bubble 6s ease-in-out infinite;
}
.wine-bubbles span:nth-child(1) { left: 30%; bottom: 10%; animation-delay: 0s;   width: 3px; height: 3px; }
.wine-bubbles span:nth-child(2) { left: 50%; bottom: 8%;  animation-delay: 1.2s; width: 5px; height: 5px; }
.wine-bubbles span:nth-child(3) { left: 65%; bottom: 12%; animation-delay: 2.4s; width: 3px; height: 3px; }
.wine-bubbles span:nth-child(4) { left: 40%; bottom: 6%;  animation-delay: 0.6s; width: 2px; height: 2px; }
.wine-bubbles span:nth-child(5) { left: 55%; bottom: 9%;  animation-delay: 1.8s; width: 4px; height: 4px; }
.wine-bubbles span:nth-child(6) { left: 35%; bottom: 14%; animation-delay: 3s;   width: 3px; height: 3px; }
@keyframes bubble {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-120px); }
}

/* Glasses container */
.wine-glasses {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  z-index: 2;
}

.wine-glass-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wine-glass-wrap i {
  font-size: 2.8rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(200,165,90,.5));
  transition: transform .4s ease;
}
.wine-glass-wrap.center i {
  font-size: 3.5rem;
  color: var(--gold-light);
  filter: drop-shadow(0 0 18px rgba(226,201,122,.65));
}
.wine-glass-wrap.left i,
.wine-glass-wrap.right i {
  font-size: 2.2rem;
  opacity: .75;
}
.menu-card:hover .wine-glass-wrap i {
  transform: translateY(-4px);
}

/* Wine liquid fill effect */
.wine-liquid {
  position: absolute;
  bottom: 8px;
  width: 14px; height: 8px;
  border-radius: 0 0 50% 50%;
  opacity: .6;
}
.wine-liquid.red   { background: #8b0032; left: 50%; transform: translateX(-50%); }
.wine-liquid.white { background: #e8d48a; left: 50%; transform: translateX(-50%); }

/* Label / winery names */
.wine-label-deco {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  position: relative;
}
.wine-label-deco span {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(200,165,90,.65);
  font-family: var(--ff-body);
  font-weight: 600;
  white-space: nowrap;
}
.wine-divider-line {
  width: 1px; height: 18px;
  background: rgba(200,165,90,.35);
}

/* Hover lift for the whole card */
.menu-card:hover .wine-visual-card .wine-bg-glow {
  opacity: 1;
  background: radial-gradient(ellipse, rgba(139,0,50,.28) 0%, rgba(200,165,90,.18) 40%, transparent 70%);
}

/* ================================================
   GALLERY PREVIEW
   ================================================ */
.gallery-preview {
  padding: 8rem 0;
  background: var(--navy);
}
.gallery-grid-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .6rem;
  margin-top: 3rem;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 210px;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(7,16,31,0);
  transition: var(--tr);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(7,16,31,.4); }
.gallery-item-icon { color: var(--gold); font-size: 2rem; opacity: 0; transition: var(--tr); }
.gallery-item:hover .gallery-item-icon { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ================================================
   INFO BAR
   ================================================ */
.info-bar {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 1.5rem 0;
}
.info-bar-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.info-bar-item { display: flex; align-items: center; gap: .7rem; }
.info-bar-item i { color: var(--navy-deep); font-size: 1.05rem; }
.info-bar-item span {
  color: var(--navy-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.info-bar-sep {
  width: 1px; height: 28px;
  background: rgba(7,16,31,.25);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #060d1a;
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo .logo-main {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--white);
}
.footer-logo .logo-main span { color: var(--gold); }
.footer-logo .logo-sub {
  font-size: .55rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-logo p {
  margin-top: 1rem;
  font-size: .83rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.9;
}
.footer-title {
  font-size: .67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .83rem; color: var(--gray); transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-info p {
  font-size: .83rem;
  color: var(--gray);
  margin-bottom: .65rem;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}
.footer-info p i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .73rem; color: var(--gray); }
.social-links { display: flex; gap: .8rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: .85rem;
  transition: var(--tr);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

/* ================================================
   PAGE HEADER (inner pages)
   ================================================ */
.page-header {
  padding: 10rem 0 4.5rem;
  text-align: center;
  background: var(--navy);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(200,165,90,.08) 0%, transparent 70%);
}
.page-header h1,
.page-header .section-tag,
.page-header .divider { position: relative; z-index: 1; }

/* ================================================
   MENU PAGE
   ================================================ */
.menu-page { padding: 5rem 0 8rem; background: var(--navy-deep); }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0;
}
.menu-tab {
  background: none; border: none;
  padding: .85rem 1.4rem;
  font-family: var(--ff-body);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--tr);
  position: relative; bottom: -1px;
  border-bottom: 2px solid transparent;
}
.menu-tab:hover { color: var(--gold-light); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-section { display: none; animation: fadeIn .4s ease; }
.menu-section.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-category-title { text-align: center; margin-bottom: 3rem; }
.menu-category-title h2 { font-size: 2rem; }
.price-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .3rem 1rem;
  margin-top: .6rem;
  border-radius: 2px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 1.4rem;
  max-width: 920px;
  margin: 0 auto;
}
.menu-item {
  padding: 1.5rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  background: var(--navy-mid);
  transition: var(--tr);
}
.menu-item:hover {
  border-color: var(--gold);
  background: rgba(200,165,90,.05);
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .45rem;
}
.menu-item-name {
  font-family: var(--ff-head);
  font-size: 1.08rem;
  color: var(--cream);
  font-weight: 500;
}
.menu-item-price {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-item-desc {
  font-size: .78rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.55;
  font-weight: 300;
}

/* Wine section */
.wine-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px,1fr));
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.wine-group {
  padding: 2rem;
  border: 1px solid var(--gold-border);
  background: var(--navy-mid);
  border-radius: var(--r);
}
.wine-group-title {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-body);
  font-weight: 700;
  margin-bottom: 1.4rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex; align-items: center; gap: .6rem;
}
.wine-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200,165,90,.1);
}
.wine-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wine-name { font-family: var(--ff-head); font-size: 1rem; font-style: italic; }
.wine-cantina { font-size: .72rem; color: var(--gray); margin-top: .2rem; }
.wine-price { color: var(--gold); font-size: .9rem; font-weight: 700; white-space: nowrap; margin-left: 1rem; }

/* Food section */
.food-section-label {
  text-align: center;
  font-size: .67rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 3rem 0 1.5rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.food-section-label::before,
.food-section-label::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.food-section-label::after { background: linear-gradient(to left, transparent, var(--gold)); }

.food-note {
  text-align: center;
  font-size: .75rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 3rem;
  padding: 1.2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: var(--gold-bg);
}
.coperto { text-align: center; font-size: .78rem; color: var(--gray); margin-top: .8rem; }

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-page { padding: 5rem 0 8rem; background: var(--navy-deep); }

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gray);
  padding: .5rem 1.3rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  border-radius: var(--r);
  transition: var(--tr);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .7rem;
}
.gallery-photo {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: var(--r);
}
.gallery-photo img {
  width: 100%; height: 360px;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.gallery-photo:nth-child(3n-1) img { height: 480px; }
.gallery-photo:hover img { transform: scale(1.06); }
.gallery-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(7,16,31,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.gallery-photo:hover .gallery-photo-overlay {
  background: rgba(200,165,90,.15);
}
.gallery-photo-icon {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--tr);
  background: rgba(7,16,31,.5);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-photo:hover .gallery-photo-icon { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,16,31,.96);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--gold-border);
}
.lightbox-close {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy-deep); }

/* ================================================
   PRENOTA / CONTATTI
   ================================================ */
.prenota-page { padding: 5rem 0 8rem; background: var(--navy-deep); }

.prenota-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.prenota-info h2 { margin-bottom: 1rem; }
.prenota-info p {
  color: var(--gray-lt);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.prenota-contact { display: flex; flex-direction: column; gap: 1rem; }

.prenota-contact-item {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  background: var(--navy-mid);
  transition: var(--tr);
  text-decoration: none; color: inherit;
}
.prenota-contact-item:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  transform: translateX(4px);
}
.prenota-contact-icon {
  width: 46px; height: 46px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
}
.prenota-contact-text strong {
  display: block;
  font-size: .66rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
  font-weight: 700;
}
.prenota-contact-text span { font-size: .95rem; }

.whatsapp-btn { border-color: rgba(37,211,102,.4) !important; }
.whatsapp-btn .prenota-contact-icon { color: #25D366; border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.08); }
.whatsapp-btn:hover { border-color: #25D366 !important; background: rgba(37,211,102,.06) !important; }

.prenota-hours {
  padding: 2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  background: var(--navy-mid);
}
.prenota-hours h3 {
  font-size: .67rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--ff-body);
  font-weight: 700;
  display: flex; align-items: center; gap: .7rem;
}
.prenota-hours h3 i { font-size: 1rem; }

.hours-list { display: flex; flex-direction: column; gap: .8rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(200,165,90,.1);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row .day { color: var(--cream); font-weight: 500; }
.hours-row .time { color: var(--gold); font-weight: 600; }
.hours-row.closed .time { color: var(--gray); }

.prenota-map {
  margin-top: 4rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  overflow: hidden;
}
.prenota-map iframe {
  width: 100%; height: 350px;
  border: none; display: block;
  filter: grayscale(1) invert(.9) contrast(.75) sepia(.2);
}
.map-caption {
  padding: 1rem 1.5rem;
  background: var(--navy-mid);
  font-size: .78rem;
  color: var(--gray-lt);
  display: flex; align-items: center; gap: .6rem;
}
.map-caption i { color: var(--gold); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { order: -1; }
  .about-image img { height: 380px; }
  .menu-cards { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .prenota-grid { grid-template-columns: 1fr; }
  .wine-categories { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-social { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(7,16,31,.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right .4s ease;
    border-left: 1px solid var(--gold-border);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: .9rem; }
  .gallery-grid-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid-preview .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-photo img,
  .gallery-photo:nth-child(3n-1) img { height: 260px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .info-bar-sep { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .menu-cards { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-photo img,
  .gallery-photo:nth-child(3n-1) img { height: 300px; }
  .wine-categories { grid-template-columns: 1fr; }
  .btn { padding: .75rem 1.4rem; }
}
