:root {
  
  --sun:        #F59E0B; 
  --sun-light:  #FEF3C7;
  --sun-dark:   #B45309;
  --ocean:      #0EA5E9; 
  --ocean-dark: #0369A1;
  --ocean-light:#D4EAF5;
  --turquoise:  #06B6D4;
  --sky:        #E0F2FE;
  --green:      #10B981; 
  --green-light:#D1FAE5;
  --navy:       #1e3a8a; 
  --text:       #1e3a8a;
  --text-muted: #0369A1;
  --surface:        #dcecf7;
  --surface-soft:   #cddff0;
  --surface-elevated: #eef6fc;
  --card-bg:        rgba(238, 246, 252, 0.92);
  --header-bg:      rgba(220, 236, 247, 0.94);
  --white:      var(--surface-elevated);
  --bg:         #bdd5ea;
  --bg-deep:    #b0cce4;
  --sky-50:     #eef6fc;
  --sky-100:    #dcecf7;
  --sky-150:    #cddff0;
  --sky-200:    #bdd5ea;
  --sky-250:    #b0cce4;
}

* { 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(180deg, var(--sky-50) 0%, var(--sky-100) 50%, var(--sky-150) 100%);
  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: var(--closure-h, 0px);
  left: 0;
  right: 0;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.14);
  box-shadow: 0 2px 14px rgba(14, 165, 233, 0.06);
  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); }


.site-banners {
  position: fixed;
  top: calc(var(--closure-h, 0px) + var(--header-h, 76px));
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.status-bar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s;
}
.status-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: 960px;
  width: 100%;
  line-height: 1.35;
}
.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; }

.closure-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: #fffbeb;
  color: #92400e;
  border-bottom: 1px solid #fde68a;
  overflow: hidden;
  min-height: 2.35rem;
  display: flex;
  align-items: stretch;
  padding-top: env(safe-area-inset-top, 0);
}

.closure-marquee.is-active {
  background: #fef2f2;
  color: #991b1b;
  border-bottom-color: #fecaca;
}

.closure-marquee.hidden { display: none; }

.closure-marquee__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.closure-marquee__track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  min-width: 200%;
  align-items: center;
  animation: closure-marquee-ltr 16s linear infinite;
  will-change: transform;
}

.closure-marquee__chunk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem 0.55rem 0;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  flex-shrink: 0;
}

.closure-marquee__sep {
  opacity: 0.45;
  padding-left: 0.25rem;
}

@keyframes closure-marquee-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .closure-marquee__track {
    animation: none;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
  }
  .closure-marquee__chunk:last-child { display: none; }
  .closure-marquee__chunk {
    padding-right: 0;
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}


.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(var(--closure-h, 0px) + var(--header-h, 76px) + var(--banners-h, 2rem) + 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(248, 252, 255, 0.94);
  backdrop-filter:blur(14px);
  border:1.5px solid rgba(14,165,233,0.14);
  border-radius:14px; padding:0.85rem 1rem;
  display:flex; align-items:center; gap:0.85rem;
  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 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon .icon-badge { width: 2.5rem; height: 2.5rem; border-radius: 50%; }
.info-icon .icon-badge svg { width: 1.2rem; height: 1.2rem; }
.info-content {
  flex:1; min-width:0; text-align:left;
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.info-content h3 {
  font-weight:700; color:var(--navy);
  margin-bottom:0.12rem;
  font-family:'Inter', sans-serif;
  font-size:0.95rem; line-height:1.25;
  letter-spacing:-0.01em;
  text-align:left;
}
.info-content p {
  color:var(--ocean-dark);
  font-size:0.875rem; font-weight:500;
  line-height:1.4; margin:0;
  text-align:left;
}


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

.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 {
  --section-divider: rgba(14, 165, 233, 0.26);
  padding: 5rem 2rem 4.5rem;
  background: linear-gradient(180deg, var(--sky-50) 0%, var(--sky-100) 50%, var(--sky-150) 100%);
}

.contact-section {
  --section-divider: rgba(96, 155, 195, 0.38);
  padding: 4.5rem 2rem;
  background: linear-gradient(180deg, var(--sky-150) 0%, var(--sky-200) 55%, var(--sky-250) 100%);
}

.events-section {
  --events-bg: linear-gradient(145deg, #7dd3fc 0%, #38bdf8 42%, #0ea5e9 72%, #60a5fa 100%);
  --events-glow-1: rgba(125, 211, 252, 0.22);
  --events-glow-2: rgba(56, 189, 248, 0.14);
  --events-title: #fff;
  --events-accroche: #fffbeb;
  --events-intro: rgba(255, 255, 255, 0.94);
  --events-perk: rgba(255, 255, 255, 0.9);
  --events-perk-icon: #ffffff;
  --events-badge-bg: rgba(255, 255, 255, 0.22);
  --events-badge-border: rgba(255, 255, 255, 0.45);
  --events-badge-fg: #fff;
  --events-badge-icon: #fff;
  --events-card-bg: rgba(255, 255, 255, 0.2);
  --events-card-border: rgba(255, 255, 255, 0.38);
  --events-card-hover-bg: rgba(255, 255, 255, 0.3);
  --events-card-hover-border: rgba(255, 255, 255, 0.55);
  --events-card-label: #fff;
  --events-ig-bg: rgba(255, 255, 255, 0.18);
  --events-ig-border: rgba(255, 255, 255, 0.4);
  --events-ig-fg: #fff;
  --events-ig-hover-bg: rgba(255, 255, 255, 0.28);
  --events-ig-hover-border: rgba(255, 255, 255, 0.55);

  position: relative;
  padding: 5rem 2rem;
  background: var(--events-bg);
  color: var(--events-intro);
  overflow: hidden;
  border-top: 2px dashed rgba(110, 180, 220, 0.55);
  border-bottom: 2px dashed rgba(147, 197, 253, 0.48);
}

.events-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, var(--events-glow-1), transparent 65%),
    radial-gradient(ellipse 40% 35% at 10% 90%, var(--events-glow-2), transparent 60%);
}

.events-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.events-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--events-badge-bg);
  border: 1px solid var(--events-badge-border);
  color: var(--events-badge-fg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.events-badge .icon-text { gap: 0.4rem; }
.events-badge svg { stroke: var(--events-badge-icon); }

.events-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.65rem;
  color: var(--events-title);
  letter-spacing: -0.02em;
}

.events-accroche {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--events-accroche);
  margin-bottom: 0.85rem;
}

.events-intro {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--events-intro);
  margin-bottom: 1.35rem;
  max-width: 34rem;
}

.events-perks {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.events-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--events-perk);
  line-height: 1.45;
}

.events-perks li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke: var(--events-perk-icon);
}

.events-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.events-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}

.events-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  border: 1px solid var(--events-ig-border);
  background: var(--events-ig-bg);
  color: var(--events-ig-fg);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.events-instagram-link:hover {
  background: var(--events-ig-hover-bg);
  border-color: var(--events-ig-hover-border);
}

.events-instagram-link .instagram-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.events-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.event-type-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: var(--events-card-bg);
  border: 1px solid var(--events-card-border);
  backdrop-filter: blur(10px);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.event-type-card:hover {
  transform: translateY(-3px);
  background: var(--events-card-hover-bg);
  border-color: var(--events-card-hover-border);
}

.event-type-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--events-card-label);
  line-height: 1.35;
}


.menu-tabs {
  display:flex; gap:0.5rem; overflow-x:auto;
  padding:0.5rem; background:rgba(189, 213, 234, 0.75);
  border-radius:14px; max-width:100%; margin:0 auto 2rem;
  scrollbar-width:none;
  border: 1px solid rgba(14, 165, 233, 0.16);
}
.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 rgba(148,163,184,0.22);
  border-radius:12px; padding:1rem;
  background:var(--card-bg); 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, rgba(238, 246, 252, 0.95), rgba(205, 223, 240, 0.9));
  border:1px solid rgba(14, 165, 233, 0.22);
  border-radius:14px; padding:1.5rem;
}
.special-note p { color:var(--navy); font-weight:600; margin:0; }


.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:var(--card-bg); border:1px solid rgba(14, 165, 233, 0.18);
  border-radius:14px; padding:1.5rem; transition:all 0.3s;
  backdrop-filter: blur(8px);
}
.contact-card:hover { box-shadow:0 10px 28px rgba(14, 165, 233, 0.12); border-color:rgba(14, 165, 233, 0.35); }

.card-header { display:flex; align-items:center; gap:0.5rem; margin-bottom:1rem; justify-content:center; text-align:center; }
.card-icon { display:flex; align-items:center; }
.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 { display:inline-flex; align-items:center; vertical-align:middle; }
.contact-icon .icon-badge { width: 1.75rem; height: 1.75rem; border-radius: 8px; }
.contact-icon .icon-badge svg { width: 0.95rem; height: 0.95rem; }

.practical-info {
  background:linear-gradient(135deg, rgba(238, 246, 252, 0.92), rgba(254, 243, 199, 0.45));
  border:1px solid rgba(14, 165, 233, 0.2);
  border-radius:14px; padding:1.5rem;
}
.practical-info h3,
.practical-info .card-header h3 { color:var(--navy); font-weight:700; margin-bottom:0; 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:var(--card-bg); border:1px solid rgba(14, 165, 233, 0.18);
  border-radius:14px; padding:1.5rem; height:fit-content; transition:all 0.3s;
  backdrop-filter: blur(8px);
}
.hours-card:hover { box-shadow:0 10px 28px rgba(14, 165, 233, 0.12); }

.hours-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hours-section .weather-card,
.hours-section .beach-tip {
  margin-top: 0;
  margin-bottom: 0;
}

.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.18); }
.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:0.85rem 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.75rem;
  text-align:left;
}
.hours-note.is-open {
  background:linear-gradient(135deg,var(--green-light),#ecfdf5);
  border-color:rgba(16,185,129,0.35);
}
.hours-note.is-closed {
  background:linear-gradient(135deg,#fee2e2,#fef2f2);
  border-color:rgba(220,38,38,0.35);
}
.hours-note p { color:var(--sun-dark); font-weight:600; font-size:0.875rem; margin:0; flex:1; }
.hours-note.is-open p { color:#047857; }
.hours-note.is-closed p { color:#dc2626; }

.info-card-status.is-open .info-content h3 { color:#047857; }
.info-card-status.is-open .info-content p { color:var(--ocean-dark); }
.info-card-status.is-closed .info-content h3 { color:#dc2626; }
.info-card-status.is-closed .info-content p { color:#ef4444; }

.beach-tip {
  background:linear-gradient(135deg, rgba(238, 246, 252, 0.9), rgba(209, 250, 229, 0.55));
  border:1px solid rgba(14, 165, 233, 0.22);
  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 {
  border-top: none;
  padding:3.5rem clamp(1rem, 3vw, 2.5rem) 4rem;
  background: linear-gradient(180deg, var(--sky-150) 0%, var(--sky-100) 55%, var(--sky-50) 100%);
}
.photos-section .container { max-width: min(1680px, 98vw); }
.photos-section .photo-global-text { margin-bottom: 0; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 8px;
  gap: 1.35rem;
  margin-top: 2rem;
  align-items: start;
  width: 100%;
}

@media (min-width: 1200px) {
  .photo-grid { gap: 1.5rem; }
}

.photo-item {
  width: 100%;
  display: block;
  margin-bottom: 0;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}
.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: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  z-index:900;
  gap:0.6rem;
  justify-content: stretch;
  box-sizing: border-box;
}
.fab-btn {
  display:flex; align-items:center; gap:0.4rem;
  flex: 1;
  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;
  justify-content: center;
}
.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:var(--card-bg); 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:calc(var(--closure-h, 0px) + var(--header-h, 76px) + var(--banners-h, 2rem) + 1.25rem) 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:0.95rem 1.05rem;
    gap:0.85rem;
    align-items:center;
    background:rgba(248,252,255,0.97);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .info-icon .icon-badge { width: 2.5rem; height: 2.5rem; }
  .info-content h3 { font-size:0.98rem; margin-bottom:0.15rem; }
  .info-content p { font-size:0.9rem; line-height:1.42; }

  .events-section { padding: 3.5rem 1rem; }
  .events-layout { grid-template-columns: 1fr; gap: 2rem; }
  .events-types { grid-template-columns: 1fr; }
  .events-cta { width: 100%; max-width: 320px; justify-content: center; }
  .events-cta-row { flex-direction: column; align-items: stretch; }
  .events-instagram-link { justify-content: center; }

  
  .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 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lightbox-btn.prev { left:-40px; }
  .lightbox-btn.next { right:-40px; }
}

@media (max-width: 480px) {
  .hero { padding:calc(var(--closure-h, 0px) + var(--header-h, 76px) + var(--banners-h, 2rem) + 1rem) 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 { grid-template-columns: 1fr; }
  .lightbox-btn { display:none; }
  .info-card { border-radius:10px; }
}


@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.94); border-color: rgba(251,191,36,0.2); backdrop-filter:none; -webkit-backdrop-filter:none; }
  .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: linear-gradient(135deg, #4a3509 0%, #6b4e12 48%, #3d2c08 100%);
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.16), inset 0 1px 0 rgba(253, 230, 138, 0.15);
  }
  .practical-info h3,
  .practical-info .card-header h3 { color: #fde047; }
  .practical-info ul { color: #bae6fd; }
  .beach-tip {
    background: linear-gradient(135deg, #0c3547 0%, #0a4035 50%, #082a38 100%);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.12);
  }
  .beach-tip p { color: #a5f3fc; }

  .special-note {
    background: linear-gradient(135deg, #0c3547 0%, #4a3509 100%);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
  }
  .special-note p { color: #e2e8f0; }

  .hours-note {
    background: linear-gradient(135deg, #4a3509 0%, #6b4e12 55%, #3d2c08 100%);
    border-color: rgba(251, 191, 36, 0.4);
  }
  .hours-note p { color: #FDE68A; }
  .hours-note.is-open { background: linear-gradient(135deg, #022c22, #064e3b); border-color: rgba(16,185,129,0.35); }
  .hours-note.is-open p { color: #6ee7b7; }
  .hours-note.is-closed { background: linear-gradient(135deg, #450a0a, #3f0505); border-color: rgba(239,68,68,0.35); }
  .hours-note.is-closed p { color: #fca5a5; }
  .info-card-status.is-open .info-content h3 { color: #6ee7b7; }
  .info-card-status.is-open .info-content p { color: #94a3b8; }
  .info-card-status.is-closed .info-content h3 { color: #fca5a5; }
  .info-card-status.is-closed .info-content p { color: #f87171; }
  .section-heading { color: #e2e8f0; }
  .beach-tip .section-heading { color: #e2e8f0; }
  .star-rating-bg { color: rgba(148, 163, 184, 0.28); }
  .star-rating-score { color: #fde68a; }
  .rating-progress { background: rgba(255, 255, 255, 0.1); }

  .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; }

  .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); }
  .photo-global-text { color: #7dd3fc; }
  .photo-hint-text { color: #7dd3fc; }
  .photo-hint-text svg { stroke: #38bdf8; }

  .events-section {
    --events-bg: linear-gradient(145deg, #1e3a8a 0%, #0f172a 48%, #172554 100%);
    --events-glow-1: rgba(245, 158, 11, 0.22);
    --events-glow-2: rgba(14, 165, 233, 0.18);
    --events-title: #fff;
    --events-accroche: #fde68a;
    --events-intro: rgba(226, 232, 240, 0.92);
    --events-perk: #e2e8f0;
    --events-perk-icon: #34d399;
    --events-badge-bg: rgba(245, 158, 11, 0.18);
    --events-badge-border: rgba(251, 191, 36, 0.45);
    --events-badge-fg: #fde68a;
    --events-badge-icon: #fbbf24;
    --events-card-bg: rgba(255, 255, 255, 0.07);
    --events-card-border: rgba(255, 255, 255, 0.12);
    --events-card-hover-bg: rgba(255, 255, 255, 0.11);
    --events-card-hover-border: rgba(251, 191, 36, 0.45);
    --events-card-label: #f8fafc;
    --events-ig-bg: rgba(255, 255, 255, 0.06);
    --events-ig-border: rgba(255, 255, 255, 0.2);
    --events-ig-fg: #f1f5f9;
    --events-ig-hover-bg: rgba(255, 255, 255, 0.12);
    --events-ig-hover-border: rgba(255, 255, 255, 0.35);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 32px rgba(15, 23, 42, 0.08);
  }

  .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: var(--header-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(30,58,138,0.08);
  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: linear-gradient(135deg, #e8f3f9 0%, #dcecf6 100%);
  border: 1.5px solid rgba(14, 165, 233, 0.18);
  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-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.weather-header-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ocean);
}
.weather-header-location {
  font-size: 0.75rem;
  color: #64748b;
}

.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 { flex-shrink: 0; display:flex; align-items:center; justify-content:center; }
.weather-icon svg, .weather-lucide { width: 2.5rem; height: 2.5rem; stroke: var(--ocean); color: var(--ocean); }
.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: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
  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: rgba(254, 243, 199, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sun-dark);
}

@media (prefers-color-scheme: dark) {
  .weather-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f2744 100%);
    border-color: #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  .weather-card:hover { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35); }
  .weather-header-location { color: #94a3b8; }
  .weather-temp { color: #38bdf8; }
  .weather-desc { color: #7dd3fc; }
  .weather-extra-item {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(56, 189, 248, 0.2);
    color: #bae6fd;
  }
  .weather-tip {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.25);
    color: #fde68a;
  }
  .weather-loading { color: #7dd3fc; }
}


.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: var(--card-bg);
  border: 1.5px solid rgba(14,165,233,0.16);
  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 { flex-shrink: 0; display:flex; align-items:center; }
.map-icon .icon-badge { width: 2.25rem; height: 2.25rem; }
.map-icon .icon-badge svg { width: 1.15rem; height: 1.15rem; }
.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; }
}

.lucide-icon svg,
svg.lucide {
  display: block;
}

.icon-text,
.icon-text-row,
.heading-icon-text,
.btn-icon-text,
.fab-icon-text,
.footer-love-text,
.menu-photo-hint-text,
.photo-hint-text,
.popup-title-text,
.weather-extra,
.weather-tip-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-text-row { display: flex; align-items: center; gap: 0.75rem; }
.special-note.icon-text-row { align-items: center; justify-content: center; text-align: left; }
.special-note.icon-text-row p { margin: 0; }
.beach-tip .section-heading { align-items: center; margin-bottom: 0.75rem; }

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
  color: #fff;
}
.icon-badge-sun {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}
.icon-badge-ocean {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
}
.icon-badge-green {
  background: linear-gradient(135deg, #34d399, #059669);
}
.icon-badge-rose {
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}

.instagram-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-reviews-block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.footer-reviews-count {
  color: #bfdbfe;
  font-size: 0.9rem;
}

.google-rating {
  width: 100%;
  max-width: 220px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.star-rating-track {
  position: relative;
  display: inline-block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.star-rating-bg {
  color: rgba(148, 163, 184, 0.4);
}

.star-rating-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fbbf24;
  text-shadow: 0 1px 6px rgba(251, 191, 36, 0.45);
  width: calc(var(--rating) / 5 * 100%);
}

.star-rating-score {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fde68a;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.rating-progress {
  height: 7px;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.15rem;
}

.rating-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fbbf24, #f59e0b 70%, #fde68a);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.45);
  transition: width 0.45s ease;
}

.icon-inline svg { width: 1.1em; height: 1.1em; vertical-align: -0.15em; }
.icon-status svg { width: 1rem; height: 1rem; stroke: currentColor; }

.footer-contact .contact-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-contact .contact-icon .icon-badge,
.footer-contact .contact-icon .instagram-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.footer-contact .contact-icon .icon-badge {
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-icon .icon-badge svg {
  width: 0.95rem;
  height: 0.95rem;
}

.fab-btn .icon-text { justify-content: center; width: 100%; }
.fab-btn svg { stroke: currentColor; }

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 1.25rem; height: 1.25rem; stroke: #fff; }

.back-to-top svg { width: 1rem; height: 1rem; stroke: currentColor; }

.map-directions-btn .icon-text { justify-content: center; }

.info-icon .icon-badge,
.card-icon .icon-badge,
.map-icon .icon-badge {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.dropzone .icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--ocean);
  margin: 0 auto;
}


html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}


@media (max-width: 768px) {
  .header-content {
    justify-content: space-between;
    gap: 0.65rem;
  }

  .logo {
    flex: 1;
    min-width: 0;
    gap: 0.55rem;
  }

  .logo-icon,
  .logo-icon .mini-logo {
    width: 48px;
    height: 48px;
  }

  .logo-text h1 {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .logo-text p {
    font-size: 0.72rem;
  }

  .mobile-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-section,
  .menu-section,
  .events-section {
    padding: 3rem 0;
  }

  .photos-section {
    padding: 2.5rem 0;
  }

  .footer {
    padding: 2.5rem 0 calc(6.75rem + env(safe-area-inset-bottom, 0px));
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  .section-header p {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  section {
    padding-top: 2.5rem;
    margin-top: 0;
  }

  .contact-grid {
    margin-top: 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
    width: 100%;
  }

  .footer-contact .contact-item {
    display: grid;
    grid-template-columns: 1.75rem 1fr;
    gap: 0.65rem;
    align-items: center;
    text-align: left;
    width: min(100%, 280px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact .contact-icon {
    justify-self: center;
  }

  .footer-contact a {
    word-break: break-word;
  }

  .footer-reviews-block {
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  .google-rating {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .star-rating {
    justify-content: center;
  }

  .footer-reviews-count,
  .footer-reviews-block #google-avis-link {
    text-align: center;
    width: 100%;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    gap: 0.75rem;
  }

  .back-to-top {
    display: none;
  }

  .fab-btn {
    min-height: 48px;
    font-size: 0.85rem;
    padding: 0.7rem 0.85rem;
  }

  .photo-global-text {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-top: 1rem;
    padding: 0 0.25rem;
    color: var(--ocean-dark);
  }

  .photo-hint-text {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    color: var(--ocean-dark);
  }

  .photo-hint-text svg {
    stroke: var(--ocean);
    flex-shrink: 0;
  }

  .menu-tabs {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    margin-bottom: 1.25rem;
  }

  .tab-button {
    scroll-snap-align: center;
    min-height: 44px;
  }

  .map-header {
    flex-wrap: wrap;
  }

  .map-header > div {
    flex: 1;
    min-width: 0;
  }

  .weather-card {
    padding: 1rem 1.15rem;
  }

  .weather-extras {
    gap: 0.5rem;
  }

  .weather-extra-item {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
  }

  .beach-tip {
    padding: 1.15rem;
  }

  .hour-item {
    gap: 0.75rem;
  }

  .time {
    flex-shrink: 0;
    font-size: 0.82rem;
  }

  .special-note.icon-text-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 1.15rem;
    gap: 0.85rem;
  }

  .special-note.icon-text-row .icon-badge {
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .special-note.icon-text-row p {
    text-align: left;
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
  }

  .nav-mobile .btn-primary {
    width: 100%;
    text-align: center;
  }

  .contact-card,
  .hours-card,
  .practical-info,
  .map-wrap {
    padding: 1.15rem;
  }

  .popup {
    padding: 1.5rem;
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }

  .lightbox-counter {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .nav-mobile.active {
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-logo-img {
    width: 56px;
    height: 56px;
  }

  .star-rating-track {
    font-size: 1.15rem;
  }

  .star-rating-score {
    font-size: 1rem;
  }

  .photo-hint-text {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .logo-text h1 {
    font-size: 0.95rem;
  }

  .fab-btn {
    font-size: 0.78rem;
    gap: 0.25rem;
    padding: 0.65rem 0.45rem;
  }

  .weather-temp {
    font-size: 1.65rem;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }
}
