:root {
  
  --sun:        #F59E0B; 
  --sun-light:  #FEF3C7;
  --sun-dark:   #B45309;
  --ocean:      #0EA5E9; 
  --ocean-dark: #0369A1;
  --ocean-light:#E0F2FE;
  --green:      #10B981; 
  --green-light:#D1FAE5;
  --navy:       #1e3a8a; 
  --text:       #1e3a8a;
  --text-muted: #3b82f6;
  --white:      #ffffff;
  --bg:         #f0f9ff;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(to bottom, #e0f2fe, #ffffff);
  scroll-behavior: smooth;
}


h1, h2, h3, .hero-title, .section-header h2, .category-title {
  font-family: 'Poppins', 'Inter', sans-serif;
}

.container { max-width:1200px; margin:0 auto; padding:0 20px; }


.header {
  position: fixed; top:0; left:0; right:0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--sun-light);
  box-shadow: 0 2px 12px rgba(245,158,11,0.08);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  gap: 0;
}

.admin-login-link {
  font-size: 0.72rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.admin-login-link:hover { color: var(--ocean-dark); }

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-right: clamp(3rem, 6vw, 5.5rem);
  padding-right: clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(148, 163, 184, 0.25);
}

.logo-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.logo-text h1 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 0; font-family: 'Poppins', sans-serif; }
.logo-text p  { font-size: 0.8rem; color: var(--ocean); margin: 0; font-weight: 500; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  margin-left: clamp(0.5rem, 1.5vw, 1.25rem);
}

.header-spacer {
  flex: 1;
  min-width: 1.5rem;
}

.btn-header-cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 2rem;
}

.nav-link { text-decoration:none; color:var(--navy); font-weight:500; transition:color 0.3s; position:relative; padding-bottom:2px; }
.nav-link::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--sun); border-radius:2px; transition:width 0.3s; }
.nav-link:hover { color:var(--ocean-dark); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

.mobile-toggle { display:none; flex-direction:column; background:none; border:none; cursor:pointer; padding:0.5rem; }
.hamburger { width:25px; height:3px; background:var(--navy); margin:3px 0; transition:0.3s; border-radius:2px; }

.nav-mobile { display:none; flex-direction:column; gap:1rem; padding:1rem 0; border-top:1px solid var(--sun-light); }
.nav-link-mobile { text-decoration:none; color:var(--navy); font-weight:500; padding:0.5rem 0; transition:color 0.3s; }
.nav-link-mobile:hover { color:var(--ocean); }
.nav-link-mobile-login {
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--sun-light);
  color: var(--ocean-dark);
  font-weight: 600;
}
.nav-link-mobile-login:hover { color: var(--sun-dark); }


.status-bar {
  position:fixed;
  top:var(--header-h, 76px);
  left:0; right:0;
  text-align:center;
  padding:0.4rem 1rem;
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.03em;
  transition: background 0.5s;
  z-index:999;
}
.status-bar.open-now  { background:var(--green); color:#fff; }
.status-bar.closed-now { background:#ef4444; color:#fff; }
.status-bar.preseason  { background:var(--sun); color:#78350f; }


.btn-primary {
  background: linear-gradient(135deg, var(--sun), #f97316);
  color: white; border:none; border-radius:10px;
  padding:0.75rem 1.5rem; font-size:1rem; font-weight:700;
  cursor:pointer; transition:all 0.3s; text-decoration:none;
  display:inline-block; text-align:center;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
  font-family:'Poppins',sans-serif;
}
.btn-primary:hover { transform:translateY(-2px) scale(1.03); box-shadow:0 8px 20px rgba(245,158,11,0.45); }

.btn-outline {
  background:transparent; color:white;
  border:2px solid rgba(255,255,255,0.7);
  border-radius:10px; padding:0.75rem 1.5rem;
  font-size:1rem; font-weight:700; cursor:pointer;
  transition:all 0.3s; text-decoration:none;
  display:inline-block; text-align:center; font-family:'Poppins',sans-serif;
}
.btn-outline:hover { background:rgba(255,255,255,0.15); transform:translateY(-2px); }
.btn-lg { padding:1rem 2rem; font-size:1.125rem; }


.hero {
  position:relative;
  padding:calc(7rem + var(--status-h, 2rem)) 1.25rem 3rem;
  text-align:center;
  overflow:hidden;
  min-height:100svh;
  display:flex; align-items:center;
}


.hero-bg {
  position:absolute; inset:0;
  background-image: url('images/lac.webp');
  background-size:cover;
  background-position:center 60%;
  
}

.hero-bg::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(
    160deg,
    rgba(2,40,80,0.72) 0%,
    rgba(14,165,233,0.45) 50%,
    rgba(245,158,11,0.3) 100%
  );
}

.hero-decoration { position:absolute; inset:0; pointer-events:none; z-index:1; }
.circle { position:absolute; border-radius:50%; animation:pulse 3s ease-in-out infinite; }
.circle-1 { width:140px; height:140px; background:rgba(245,158,11,0.15); top:5rem; left:3rem; }
.circle-2 { width:100px; height:100px; background:rgba(14,165,233,0.2); bottom:5rem; right:3rem; animation-delay:1s; }
.circle-3 { width:70px; height:70px; background:rgba(16,185,129,0.12); top:50%; left:20%; animation-delay:2s; }

.hero-content { position:relative; z-index:10; margin-bottom:2rem; width:100%; }

.hero-title {
  font-size:3.5rem; font-weight:800;
  color:white;
  margin-bottom:1rem; line-height:1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing:-0.5px;
}

.hero-description {
  font-size:1.15rem; color:rgba(255,255,255,0.9);
  margin-bottom:2rem;
  max-width:600px; margin-left:auto; margin-right:auto;
  text-shadow:0 1px 8px rgba(0,0,0,0.3);
}

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


.info-cards {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,230px),1fr));
  gap:0.85rem; max-width:800px; margin:0 auto;
  position:relative; z-index:10; width:100%;
  text-align:left;
}

.info-card {
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  border:1.5px solid rgba(245,158,11,0.25);
  border-radius:14px; padding:1.25rem;
  display:flex; align-items:center; gap:1rem;
  transition:all 0.3s;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  text-align:left;
}
.info-card:hover { transform:translateY(-5px); box-shadow:0 12px 30px rgba(0,0,0,0.15); border-color:var(--sun); }

.info-icon {
  width:48px; height:48px; background:var(--sun-light);
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:1.5rem; flex-shrink:0;
}
.info-content {
  flex:1; min-width:0; text-align:left;
}
.info-content h3 { font-weight:600; color:var(--navy); margin-bottom:0.2rem; font-family:'Poppins',sans-serif; font-size:0.95rem; text-align:left; }
.info-content p   { color:var(--ocean-dark); font-size:0.85rem; line-height:1.45; margin:0; text-align:left; }


section { border-top:2px dashed rgba(14,165,233,0.25); padding-top:4rem; margin-top:2rem; }

.section-header { text-align:center; margin-bottom:3rem; }
.section-header h2 {
  font-size:2.6rem; font-weight:800; color:var(--navy);
  margin-bottom:0.75rem; letter-spacing:-0.5px;
}
.section-header h2::after {
  content:''; display:block; width:60px; height:4px;
  background:linear-gradient(90deg,var(--sun),#f97316);
  border-radius:2px; margin:0.6rem auto 0;
}
.section-header p { font-size:1.1rem; color:var(--ocean-dark); max-width:600px; margin:0 auto; }


.menu-section { padding:5rem 2rem; background:linear-gradient(to bottom,rgba(224,242,254,0.4),white); }


.menu-tabs {
  display:flex; gap:0.5rem; overflow-x:auto;
  padding:0.5rem; background:var(--ocean-light);
  border-radius:14px; max-width:100%; margin:0 auto 2rem;
  scrollbar-width:none;
}
.menu-tabs::-webkit-scrollbar { display:none; }

.tab-button {
  background:transparent; border:none; border-radius:10px;
  padding:0.65rem 1.1rem; cursor:pointer;
  transition:all 0.25s; display:flex; flex-direction:column;
  align-items:center; gap:0.3rem; flex-shrink:0; min-width:80px;
  color:var(--navy); font-weight:500;
}
.tab-button:hover { background:rgba(14,165,233,0.15); }
.tab-button.active {
  background:linear-gradient(135deg,var(--sun),#f97316);
  color:white; box-shadow:0 4px 12px rgba(245,158,11,0.4);
}
.tab-icon { font-size:1.4rem; }
.tab-text { font-size:0.72rem; font-weight:600; white-space:nowrap; }

.menu-content { margin-bottom:3rem; }
.menu-category { display:none; }
.menu-category.active { display:block; }

.category-title {
  font-size:1.5rem; font-weight:700; color:var(--navy);
  text-align:center; margin-bottom:2rem; position:relative;
}
.category-title::after {
  content:''; width:80px; height:4px;
  background:linear-gradient(90deg,var(--sun),#f97316);
  border-radius:2px; position:absolute;
  bottom:-0.5rem; left:50%; transform:translateX(-50%);
}


.menu-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(380px,1fr));
  gap:1.25rem;
}
.menu-grid:has(.menu-item:only-child) { grid-template-columns:1fr !important; }
.menu-grid:has(.menu-item:only-child) .menu-item { justify-self:center; max-width:500px; }


.menu-item {
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-rows:auto 1fr auto;
  grid-template-areas:"header image" "desc image" "tags image";
  gap:0.4rem 0.85rem;
  border:1.5px solid #e2e8f0;
  border-radius:12px; padding:1rem;
  background:white; transition:all 0.3s;
  position:relative; overflow:hidden;
}
.menu-item::before {
  content:''; position:absolute; top:0; left:0;
  width:4px; height:100%;
  background:linear-gradient(180deg,var(--sun),#f97316);
  border-radius:4px 0 0 4px;
}
.menu-item:hover { transform:translateY(-4px); box-shadow:0 10px 28px rgba(0,0,0,0.1); border-color:var(--sun); }

.menu-item > header { grid-area:header; display:flex; justify-content:space-between; align-items:center; margin:0; padding:0; }
.menu-item > header h4 { margin:0; }
.menu-item > header .price { margin:0; }
.menu-item > p { grid-area:desc; margin:0; }


.menu-item > .tags { grid-area:tags; display:flex; gap:0.3rem; flex-wrap:wrap; margin-top:0.25rem; }
.tag {
  font-size:0.65rem; font-weight:700; padding:2px 7px;
  border-radius:20px; letter-spacing:0.04em;
}
.tag-vege  { background:#D1FAE5; color:#065F46; }
.tag-hot   { background:#FEE2E2; color:#991B1B; }
.tag-local { background:#FEF3C7; color:#78350F; }
.tag-poisson { background:#E0F2FE; color:#075985; }

.menu-item > img {
  grid-area:image; justify-self:end; align-self:center;
  width:auto; max-height:auto; object-fit:cover;
  border-left:1px dashed #e2e8f0; padding-left:0.85rem; border-radius:4px;
}

.item-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:0.65rem; }
.item-header h4 { font-size:1.05rem; font-weight:700; color:var(--navy); font-family:'Poppins',sans-serif; transition:color 0.3s; }
.menu-item:hover .item-header h4 { color:var(--ocean-dark); }

.price {
  background:linear-gradient(135deg,var(--sun-light),#fed7aa);
  color:var(--sun-dark); padding:0.2rem 0.6rem;
  border-radius:8px; font-weight:800; font-size:0.875rem;
  white-space:nowrap;
}

.menu-item p { color:#475569; font-size:0.875rem; line-height:1.5; }

.special-note {
  text-align:center; max-width:600px; margin:2rem auto 0;
  background:linear-gradient(135deg,var(--ocean-light),var(--sun-light));
  border:1.5px solid rgba(14,165,233,0.3);
  border-radius:14px; padding:1.5rem;
}
.special-note p { color:var(--navy); font-weight:600; margin:0; }


.contact-section { padding:5rem 2rem; background:linear-gradient(to bottom,white,var(--ocean-light)); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-top:3rem; }
.contact-info { display:flex; flex-direction:column; gap:1.5rem; }

.contact-card {
  background:white; border:1.5px solid var(--ocean-light);
  border-radius:14px; padding:1.5rem; transition:all 0.3s;
}
.contact-card:hover { box-shadow:0 10px 28px rgba(14,165,233,0.12); border-color:var(--ocean); }

.card-header { display:flex; align-items:center; gap:0.5rem; margin-bottom:1rem; justify-content:center; text-align:center; }
.card-icon { font-size:1.25rem; color:var(--sun); }
.card-header h3 { color:var(--navy); font-weight:700; font-family:'Poppins',sans-serif; }
.location { font-weight:600; color:var(--ocean-dark); font-size:1.1rem; margin-bottom:0.5rem; }
.description { color:var(--ocean); font-size:0.875rem; }
.contact-item { display:flex; align-items:center; gap:0.75rem; margin-bottom:0.75rem; }
.contact-icon { font-size:1rem; color:var(--sun); }

.practical-info {
  background:linear-gradient(135deg,var(--sun-light),#fed7aa22);
  border:1.5px solid rgba(245,158,11,0.3);
  border-radius:14px; padding:1.5rem;
}
.practical-info h3 { color:var(--navy); font-weight:700; margin-bottom:0.75rem; font-family:'Poppins',sans-serif; }
.practical-info ul { list-style:none; color:var(--ocean-dark); font-size:0.875rem; }
.practical-info li { margin-bottom:0.5rem; }

.hours-card {
  background:white; border:1.5px solid var(--ocean-light);
  border-radius:14px; padding:1.5rem; height:fit-content; transition:all 0.3s;
}
.hours-card:hover { box-shadow:0 10px 28px rgba(14,165,233,0.12); }

.hours-list { margin-bottom:1.5rem; }
.hour-item { display:flex; justify-content:space-between; align-items:center; padding:0.5rem 0; border-bottom:1px dashed rgba(14,165,233,0.2); }
.hour-item:last-child { border-bottom:none; }
.day { font-weight:600; color:var(--navy); }
.time { font-weight:700; color:var(--ocean); }
.time.closed { color:#dc2626; }
.time.open   { color:var(--green); }

.hours-note {
  background:linear-gradient(135deg,var(--sun-light),#fed7aa33);
  border:1.5px solid rgba(245,158,11,0.35);
  border-radius:10px; padding:1rem; text-align:center;
}
.hours-note p { color:var(--sun-dark); font-weight:600; font-size:0.875rem; margin:0; }

.beach-tip {
  background:linear-gradient(135deg,var(--ocean-light),var(--green-light));
  border:1.5px solid rgba(14,165,233,0.3);
  border-radius:14px; padding:1.5rem; margin-top:1.5rem;
}
.beach-tip h3 { color:var(--navy); font-weight:700; margin-bottom:0.75rem; font-family:'Poppins',sans-serif; }
.beach-tip p  { color:var(--ocean-dark); font-size:0.875rem; line-height:1.6; }


.photos-section { padding:3rem 2rem; background:linear-gradient(to bottom,#e0f2fe,#ffffff); }

.photo-grid {
  columns:3 250px;
  gap:1rem;
  margin-top:2rem;
}

.photo-item {
  width:100%; display:block;
  margin-bottom:1rem;
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,0.1);
  cursor:pointer;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  break-inside:avoid;
  object-fit:cover;
}
.photo-item:hover { transform:scale(1.02); box-shadow:0 8px 25px rgba(0,0,0,0.18); }

.photo-global-text { text-align:center; margin-top:0.5rem; color:var(--ocean-dark); font-size:0.9rem; }


.lightbox {
  position:fixed; top:0; left:0; width:100vw; height:100vh;
  background:rgba(2,20,50,0.88);
  display:flex; align-items:center; justify-content:center;
  z-index:9999; backdrop-filter:blur(4px);
}
.lightbox.hidden { display:none; }

.lightbox-inner { position:relative; max-width:90vw; max-height:90vh; display:flex; align-items:center; gap:1rem; }

.lightbox img {
  max-width:80vw; max-height:85vh;
  border-radius:10px; box-shadow:0 0 40px rgba(0,0,0,0.6);
  object-fit:contain;
}

.lightbox-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.15); border:2px solid rgba(255,255,255,0.4);
  color:white; width:44px; height:44px; border-radius:50%;
  font-size:1.2rem; cursor:pointer; display:flex; align-items:center;
  justify-content:center; transition:background 0.2s; flex-shrink:0;
  backdrop-filter:blur(4px);
}
.lightbox-btn:hover { background:rgba(255,255,255,0.3); }
.lightbox-btn.prev { left:-52px; }
.lightbox-btn.next { right:-52px; }

.lightbox-close {
  position:fixed; top:1.25rem; right:1.25rem;
  background:rgba(255,255,255,0.12); border:2px solid rgba(255,255,255,0.4);
  color:white; width:40px; height:40px; border-radius:50%;
  font-size:1.2rem; cursor:pointer; display:flex; align-items:center;
  justify-content:center; transition:background 0.2s;
}
.lightbox-close:hover { background:rgba(255,255,255,0.25); }

.lightbox-counter {
  position:fixed; bottom:1.5rem; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,0.7); font-size:0.875rem; letter-spacing:0.08em;
}


.fab-mobile {
  display:none;
  position:fixed; bottom:1.25rem; left:50%; transform:translateX(-50%);
  z-index:900; gap:0.6rem;
}
.fab-btn {
  display:flex; align-items:center; gap:0.4rem;
  padding:0.7rem 1.2rem; border-radius:30px; border:none;
  font-size:0.9rem; font-weight:700; cursor:pointer; text-decoration:none;
  box-shadow:0 6px 20px rgba(0,0,0,0.22); transition:transform 0.2s;
  font-family:'Poppins',sans-serif;
}
.fab-btn:hover { transform:scale(1.05); }
.fab-call { background:linear-gradient(135deg,var(--sun),#f97316); color:white; }
.fab-map  { background:linear-gradient(135deg,var(--ocean),var(--ocean-dark)); color:white; }


.footer {
  background:linear-gradient(160deg,#0c2461,#1e3a8a);
  color:white; padding:3rem 2rem 1rem;
}

.footer-content { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-bottom:2rem; }
.footer-logo { display:flex; align-items:center; gap:0.75rem; margin-bottom:1rem; }
.footer-logo h3 { font-size:1.25rem; font-weight:700; font-family:'Poppins',sans-serif; }
.footer-logo p  { color:#bfdbfe; font-size:0.875rem; margin:0; }

.footer-description { color:#bfdbfe; font-size:0.875rem; line-height:1.6; }
.footer-section h3 { color:white; font-weight:700; margin-bottom:1rem; font-family:'Poppins',sans-serif; font-size:1rem; }
.footer-contact, .footer-hours { display:flex; flex-direction:column; gap:0.75rem; }
.footer-contact .contact-item { display:flex; align-items:center; gap:0.75rem; color:#bfdbfe; font-size:0.875rem; }

.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:2rem; border-top:1px solid rgba(255,255,255,0.1);
  flex-wrap:wrap; gap:1rem;
}
.footer-copyright { color:#bfdbfe; font-size:0.875rem; }

.back-to-top { background:none; border:none; color:#bfdbfe; cursor:pointer; display:flex; align-items:center; gap:0.5rem; font-size:0.875rem; transition:color 0.3s; }
.back-to-top:hover { color:white; }
.arrow { background:var(--sun); width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.8rem; transition:background 0.3s; }
.back-to-top:hover .arrow { background:#f97316; }

.footer-love { text-align:center; margin-top:1.5rem; }
.footer-love p { color:#93c5fd; font-size:0.875rem; }
.footer-logo-img { width:70px; height:70px; }


.overlay { position:fixed; top:0; left:0; width:100vw; height:100vh; background:rgba(30,58,138,0.6); display:flex; justify-content:center; align-items:center; z-index:9999; }
.popup { background:white; padding:2rem; border-radius:14px; box-shadow:0 0 30px rgba(0,0,0,0.3); max-width:90%; text-align:center; animation:fadeIn 0.3s ease; }
.popup-title { font-weight:700; color:var(--navy); margin-bottom:1rem; font-size:1.2rem; font-family:'Poppins',sans-serif; }
.popup-content { color:var(--ocean-dark); font-size:1rem; margin-bottom:1rem; text-align:justify; }
.popup-button { background:linear-gradient(135deg,var(--sun),#f97316); color:white; border:none; padding:0.5rem 1.5rem; border-radius:10px; cursor:pointer; font-weight:700; font-family:'Poppins',sans-serif; }
.popup-button:hover { opacity:0.9; }
.hidden { display:none; }

.copyable { cursor:pointer; color:var(--ocean); font-weight:700; text-decoration:underline dotted; position:relative; }
.copyable::after { content:'Copier'; position:absolute; font-size:0.7rem; color:#888; top:0; left:100%; margin-left:0.5rem; opacity:0; transition:opacity 0.3s; white-space:nowrap; }
.copyable:hover::after { opacity:1; }
.copyable.copied::after { content:'Copié ✅'; color:green; opacity:1; }

.mini-logo { width:60px; height:60px; object-fit:cover; border-radius:50%; box-shadow:0 0 8px rgba(245,158,11,0.4); }


::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:#f1f5f9; }
::-webkit-scrollbar-thumb { background:linear-gradient(180deg,var(--sun),var(--ocean)); border-radius:4px; }
::selection { background:var(--sun); color:white; }


@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
@keyframes fadeIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }


@media (max-width: 768px) {
  .header-content { gap: 1rem; }
  .logo {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .nav-desktop { display: none; }
  .header-content > .admin-login-link,
  .btn-header-cta,
  .header-spacer { display: none; }
  .mobile-toggle { display: flex; }
  .nav-mobile.active { display:flex; }

  
  .hero { padding:5.5rem 1rem 2.5rem; min-height:100svh; }
  .hero-bg { background-attachment: scroll; } 
  .hero-title { font-size:2.2rem; }
  .hero-description { font-size:1rem; margin-bottom:1.5rem; }
  .hero-buttons { flex-direction:column; align-items:center; gap:0.75rem; }
  .hero-buttons .btn-lg { width:100%; max-width:280px; text-align:center; }
  .hero-content { margin-bottom:1.5rem; }

  
  .info-cards { grid-template-columns:1fr; gap:0.75rem; max-width:100%; }
  .info-card {
    padding:1rem 1.1rem;
    gap:0.85rem;
    align-items:center;
  }
  .info-icon { width:44px; height:44px; font-size:1.2rem; flex-shrink:0; }
  .info-content h3 { font-size:0.9rem; margin-bottom:0.15rem; }
  .info-content p { font-size:0.82rem; }

  
  .contact-grid { grid-template-columns:1fr; gap:1.5rem; }
  .footer-content { grid-template-columns:1fr; text-align:center; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .container { padding:0 1rem; }
  .fab-mobile { display:flex; }
  .photo-grid { columns:2 180px; }
  .lightbox-btn.prev { left:-40px; }
  .lightbox-btn.next { right:-40px; }
}

@media (max-width: 480px) {
  .hero { padding:5rem 0.75rem 2rem; }
  .hero-title { font-size:1.9rem; letter-spacing:0; }
  .hero-description { font-size:0.95rem; }
  .section-header h2 { font-size:2rem; }
  .menu-grid { grid-template-columns:1fr; }
  .photo-grid { columns:1; }
  .lightbox-btn { display:none; }
  .info-card { border-radius:10px; }

  
  .fab-mobile { width:calc(100% - 2rem); left:1rem; transform:none; justify-content:stretch; }
  .fab-btn { flex:1; justify-content:center; }
}


@media (prefers-color-scheme: dark) {
  :root {
    --sun:        #FBBF24;
    --sun-light:  #3d2a00;
    --sun-dark:   #FDE68A;
    --ocean:      #38BDF8;
    --ocean-dark: #7DD3FC;
    --ocean-light:#0c2a3d;
    --green:      #34D399;
    --green-light:#022c22;
    --navy:       #E2E8F0;
    --text:       #E2E8F0;
    --text-muted: #94A3B8;
    --white:      #0f172a;
    --bg:         #0f172a;
  }

  body { background: linear-gradient(to bottom, #0c1a2e, #0f172a); color: var(--navy); }

  .header { background: rgba(15,23,42,0.96); border-bottom-color: #1e3a5f; }
  .logo { border-right-color: rgba(148, 163, 184, 0.15); }
  .logo-text h1 { color: #e2e8f0; }

  .info-card { background: rgba(15,23,42,0.9); border-color: rgba(251,191,36,0.2); }
  .info-content h3 { color: #e2e8f0; }

  .menu-section { background: linear-gradient(to bottom, rgba(12,26,46,0.6), #0f172a); }
  .menu-tabs { background: rgba(14,165,233,0.12); }
  .tab-button { color: #cbd5e1; }
  .tab-button.active { background: linear-gradient(135deg, var(--sun), #f97316); color: #0f172a; }

  .menu-item { background: #1e293b; border-color: #334155; }
  .menu-item:hover { border-color: var(--sun); box-shadow: 0 10px 28px rgba(0,0,0,0.4); }
  .item-header h4 { color: #e2e8f0; }
  .menu-item p { color: #94a3b8; }
  .price { background: #3d2a00; color: #FBBF24; }

  .contact-card { background: #1e293b; border-color: #334155; }
  .contact-card:hover { border-color: var(--ocean); }
  .card-header h3 { color: #e2e8f0; }
  .hours-card { background: #1e293b; border-color: #334155; }
  .practical-info { background: #2a1e00; border-color: rgba(251,191,36,0.2); }
  .beach-tip { background: linear-gradient(135deg, #0c2a3d, #022c22); border-color: rgba(14,165,233,0.2); }

  .special-note { background: linear-gradient(135deg, #0c2a3d, #3d2a00); border-color: rgba(14,165,233,0.2); }
  .special-note p { color: #e2e8f0; }

  .hours-note { background: #3d2a00; border-color: rgba(251,191,36,0.3); }
  .hours-note p { color: #FDE68A; }

  .footer { background: linear-gradient(160deg, #060f1e, #0c1a2e); }

  .overlay { background: rgba(0,0,0,0.8); }
  .popup { background: #1e293b; }
  .popup-title { color: #e2e8f0; }
  .popup-content { color: #94a3b8; }

  .weather-card { background: #1e293b; border-color: #334155; }
  .weather-temp { color: #38BDF8; }
  .weather-label { color: #94a3b8; }

  .menu-tabs-sticky-wrap.is-stuck { background: rgba(15,23,42,0.97); box-shadow: 0 4px 16px rgba(0,0,0,0.5); }

  section { border-top-color: rgba(14,165,233,0.15); }
  .nav-link, .nav-link-mobile { color: #cbd5e1; }
  .nav-link-mobile-login { color: #7dd3fc; border-top-color: #334155; }
  .nav-link:hover { color: var(--ocean); }

  .photos-section { background: linear-gradient(to bottom, #0c1a2e, #0f172a); }
  .photo-item { box-shadow: 0 4px 14px rgba(0,0,0,0.4); }

  .contact-section { background: linear-gradient(to bottom, #0f172a, #0c1a2e); }
}


.menu-tabs-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
.menu-tabs-sticky-wrap.is-stuck {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-radius: 0;
  padding: 0.4rem 1rem;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.menu-tabs-sticky-wrap .menu-tabs { margin-bottom: 0; }


.menu-category {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-category.active {
  display: block;
  animation: tabFadeIn 0.3s ease forwards;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


.weather-card {
  background: white;
  border: 1.5px solid var(--ocean-light);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.weather-card:hover { box-shadow: 0 10px 28px rgba(14,165,233,0.12); }

.weather-loading { color: var(--ocean-dark); font-size: 0.875rem; text-align: center; }

.weather-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.weather-icon { font-size: 2.5rem; flex-shrink: 0; }
.weather-main { flex: 1; }
.weather-temp {
  font-size: 2rem; font-weight: 800;
  color: var(--ocean-dark); font-family: 'Poppins', sans-serif; line-height: 1;
}
.weather-desc { color: var(--ocean); font-size: 0.95rem; font-weight: 500; text-transform: capitalize; margin-top: 2px; }
.weather-location { font-size: 0.75rem; color: #64748b; margin-top: 2px; }
.weather-extras { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.75rem; }
.weather-extra-item {
  background: var(--ocean-light); border-radius: 8px;
  padding: 0.3rem 0.75rem; font-size: 0.8rem;
  color: var(--ocean-dark); font-weight: 600;
}
.weather-tip {
  margin-top: 0.75rem; padding: 0.5rem 0.75rem;
  background: var(--sun-light); border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--sun-dark);
}


.menu-photo-wrap {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 860px;
}
.menu-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  cursor: zoom-in;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.menu-photo:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.menu-photo-hint {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--ocean-dark);
  font-weight: 500;
}


#menuLightbox .lightbox-inner img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 10px;
  object-fit: contain;
  cursor: default;
}


.map-wrap {
  margin-top: 0; 
  background: white;
  border: 1.5px solid var(--ocean-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,165,233,0.08);
  
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.map-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ocean-light);
  flex-wrap: wrap;
}
.map-icon { font-size: 1.5rem; flex-shrink: 0; }
.map-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.map-header p {
  font-size: 0.8rem;
  color: var(--ocean-dark);
  margin: 0;
}
.map-directions-btn {
  margin-left: auto;
  background: linear-gradient(135deg, var(--sun), #f97316);
  color: white;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(245,158,11,0.3);
}
.map-directions-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245,158,11,0.4); }
.map-frame-wrap {
  position: relative;
  flex: 1;          
  min-height: 200px;
}
.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


@media (prefers-color-scheme: dark) {
  .map-wrap { background: #1e293b; border-color: #334155; }
  .map-header { border-bottom-color: #334155; }
  .map-header h3 { color: #e2e8f0; }
  .menu-photo-hint { color: #7DD3FC; }
}


@media (max-width: 768px) {
  .map-frame-wrap { padding-bottom: 65%; }
  .map-directions-btn { margin-left: 0; width: 100%; text-align: center; }
  .map-header { gap: 0.6rem; }
}
