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

/* ===== RESET & BASE ===== */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Montserrat', sans-serif; background:#fff; color:#333; line-height:1.6; }
img { max-width:100%; display:block; }
a { color:#268B5A; text-decoration:none; }
h1, h2, h3, h4 { font-family:'Cormorant Garamond', 'Playfair Display', serif; font-weight:600; letter-spacing:.5px; }

/* ===== HEADER ===== */
.site-header { background-color:#268B5A; color:#fff; width:100%; box-shadow:0 2px 6px rgba(0,0,0,0.15); position:sticky; top:0; z-index:100; }

/* Top utility bar (contact details + WhatsApp + language) */
.topbar { background:rgba(0,0,0,0.13); font-size:12.5px; }
.topbar-inner { max-width:1300px; margin:0 auto; padding:6px 20px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:6px 20px; }
.topbar-left { display:flex; flex-wrap:wrap; align-items:center; gap:6px 20px; }
.topbar-right { display:flex; align-items:center; gap:14px; }
.topbar a, .topbar span { color:#fff; display:inline-flex; align-items:center; gap:7px; transition:opacity .2s; }
.topbar a:hover { opacity:0.85; }
.wa-btn { background:#25D366; color:#fff !important; padding:5px 11px; border-radius:3px; font-weight:600; font-size:11.5px; letter-spacing:.5px; text-transform:uppercase; }
.wa-btn:hover { background:#128C7E; opacity:1 !important; }
.lang-switcher { display:flex; align-items:center; gap:6px; cursor:pointer; color:#fff !important; font-size:13px; font-weight:700; text-decoration:none; }
.lang-switcher .flag { width:24px; height:16px; border-radius:2px; }

/* Main bar: logo · nav · reserve button */
.header-inner { max-width:1300px; margin:0 auto; padding:10px 20px; display:flex; align-items:center; gap:18px; }
.logo { flex:0 0 auto; }
.logo img { display:block; max-height:60px; width:auto; }
.main-nav { flex:1 1 auto; display:flex; justify-content:center; }
.main-nav ul { list-style:none; display:flex; flex-wrap:nowrap; justify-content:center; gap:18px; }
.main-nav li { white-space:nowrap; }
.main-nav a { color:#fff; font-weight:600; font-size:13px; letter-spacing:.6px; text-transform:uppercase; padding:8px 2px; position:relative; white-space:nowrap; }
.main-nav a::after { content:''; position:absolute; left:50%; bottom:2px; width:0; height:2px; background:#f8e87a; transition:all .3s; transform:translateX(-50%); }
.main-nav a:hover::after, .main-nav a.active::after { width:100%; }
.reserve-btn { flex:0 0 auto; background:#f8e87a; color:#268B5A !important; padding:10px 16px; border-radius:3px; font-weight:700; letter-spacing:1px; text-transform:uppercase; font-size:12px; display:inline-flex; align-items:center; gap:7px; white-space:nowrap; transition:transform .2s, box-shadow .2s; }
.reserve-btn:hover { transform:translateY(-1px); box-shadow:0 4px 10px rgba(0,0,0,0.2); }

/* Hamburger toggle + mobile-only drawer bits — hidden on desktop */
.nav-toggle { display:none; }
.nav-backdrop { display:none; }
.main-nav .nav-reserve { display:none; }

@media (max-width:1240px){
  .header-inner { gap:14px; }
  .main-nav ul { gap:13px; }
  .main-nav a { font-size:12px; letter-spacing:.3px; }
  .topbar .tb-hours { display:none; }
}
@media (max-width:1040px){
  .main-nav ul { flex-wrap:wrap; }
}

/* ===== MOBILE / TABLET NAV (hamburger drawer) ===== */
@media (max-width:980px){
  .header-inner { flex-wrap:wrap; gap:8px 16px; padding:8px 16px; }
  .logo img { max-height:48px; }

  /* the inline yellow reserve button is replaced by one inside the drawer */
  .header-inner > .reserve-btn { display:none; }

  /* hamburger button */
  .nav-toggle {
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:42px; height:42px; padding:8px; margin-left:auto;
    background:transparent; border:0; cursor:pointer; -webkit-tap-highlight-color:transparent;
  }
  .nav-toggle span { display:block; width:100%; height:2px; border-radius:2px; background:#fff; transition:transform .3s ease, opacity .2s ease; }
  body.nav-open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  body.nav-open .nav-toggle { position:relative; z-index:3; }

  /* drawer: a panel that slides down from under the header */
  .main-nav {
    order:5; flex-basis:100%;
    position:absolute; left:0; right:0; top:100%;
    display:block; padding:0;
    background:#fff; color:#333;
    box-shadow:0 16px 26px rgba(0,0,0,0.18);
    border-top:1px solid rgba(0,0,0,0.08);
    max-height:0; overflow:hidden;
    transition:max-height .35s ease;
  }
  body.nav-open .main-nav { max-height:calc(100vh - 80px); overflow-y:auto; -webkit-overflow-scrolling:touch; }

  .main-nav ul { flex-direction:column; flex-wrap:nowrap; gap:0; padding:6px 0; }
  .main-nav li { width:100%; white-space:normal; }
  .main-nav a {
    display:block; width:100%;
    color:#333; font-size:14.5px; font-weight:600; letter-spacing:.4px; text-transform:uppercase;
    padding:15px 24px; border-bottom:1px solid rgba(0,0,0,0.07);
  }
  .main-nav a::after { display:none; }
  .main-nav a:hover, .main-nav a.active { background:#f3f7f4; color:#268B5A; }
  .main-nav a.active { box-shadow:inset 4px 0 0 #268B5A; }

  /* reserve CTA at the bottom of the drawer */
  .main-nav .nav-reserve { display:block; padding:12px 18px 16px; }
  .main-nav .nav-reserve a {
    display:flex; align-items:center; justify-content:center; gap:8px;
    background:#268B5A; color:#fff; border:0; border-radius:4px;
    padding:14px 18px; font-size:13px; box-shadow:none;
  }
  .main-nav .nav-reserve a:hover { background:#1f7549; color:#fff; }

  /* dimmed backdrop behind the drawer */
  .nav-backdrop {
    display:block; position:fixed; inset:0;
    background:rgba(0,0,0,0.45);
    opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
  }
  body.nav-open .nav-backdrop { opacity:1; visibility:visible; }
  body.nav-open { overflow:hidden; }
}
@media (max-width:720px){
  .topbar .tb-email { display:none; }
}
@media (max-width:560px){
  .topbar-inner { justify-content:center; font-size:11.5px; gap:6px 14px; }
  .topbar-left { justify-content:center; gap:6px 14px; }
}

/* ===== HERO (full screen) ===== */
/* Fallback image shows instantly (better LCP) until the JS slider takes over */
.hero { position:relative; height:90vh; min-height:560px; overflow:hidden; background:#268B5A url('../../images/slider-homepage/01-oasis-beach-bar-alykanas-zakynthos.jpg') center/cover no-repeat; }
.hero-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.hero-slide.active { opacity:1; }
.hero::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%); }
.hero-content { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:#fff; z-index:2; padding:20px; }
.hero-content h1 { font-family:'Cormorant Garamond', serif; font-size:78px; font-weight:600; line-height:1.05; text-shadow:0 3px 18px rgba(0,0,0,0.85), 0 0 40px rgba(0,0,0,0.4); margin-bottom:14px; letter-spacing:1px; }
.hero-content h1 .yellow { color:#f8e87a; display:block; font-size:88px; font-style:italic; font-weight:500; }
.hero-content .hero-meta { font-size:16px; max-width:760px; margin:0 auto 8px; text-shadow:0 2px 10px rgba(0,0,0,0.85), 0 0 20px rgba(0,0,0,0.5); letter-spacing:2px; text-transform:uppercase; font-weight:500; }
.hero-content .hero-meta + .hero-meta { margin-bottom:28px; }
.hero-content p { font-size:17px; max-width:760px; margin:8px auto 28px; text-shadow:0 2px 10px rgba(0,0,0,0.85); }
.hero-content .btn-group { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.hero-content .btn { background:#f8e87a; padding:15px 38px; border-radius:3px; color:#268B5A; font-family:'Montserrat', sans-serif; font-weight:700; font-size:13px; letter-spacing:2px; text-transform:uppercase; transition:all .25s; box-shadow:0 4px 18px rgba(0,0,0,0.4); }
.hero-content .btn:hover { background:#fff; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.5); }
.hero-content .btn-wa { background:#25D366; color:#fff; }
.hero-content .btn-wa:hover { background:#128C7E; color:#fff; }
@media (max-width:700px){
  .hero-content h1 { font-size:42px; line-height:1.1; }
  .hero-content h1 .yellow { font-size:52px; }
  .hero-content .hero-meta { font-size:12px; letter-spacing:1.5px; }
  .hero-content p { font-size:15px; }
  .hero { height:78vh; min-height:520px; }
  .hero-content { padding:30px 16px; }
  .hero-content .btn-group { flex-direction:column; width:100%; max-width:340px; gap:10px; }
  .hero-content .btn { padding:14px 24px; font-size:12px; letter-spacing:1.5px; width:100%; justify-content:center; }
}

/* ===== PAGE HERO (also supports the auto slider — see .hero-slide) ===== */
.page-hero { position:relative; height:55vh; min-height:380px; background:#268B5A center/cover no-repeat; overflow:hidden; display:flex; align-items:center; justify-content:center; text-align:center; color:#fff; }
/* dark overlay sits on TOP of the slides (::after = last child) but below .page-hero-content (z-index:1) */
.page-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%); }
.page-hero-content { position:relative; z-index:1; padding:30px 20px; }
.page-hero-content h1 { font-family:'Cormorant Garamond', serif; font-size:60px; font-weight:600; letter-spacing:1px; text-shadow:0 3px 14px rgba(0,0,0,0.85), 0 0 30px rgba(0,0,0,0.4); margin-bottom:10px; }
.page-hero-content .yellow { color:#f8e87a; font-style:italic; font-weight:500; }
.page-hero-content .hero-meta { font-size:13px; letter-spacing:2px; text-transform:uppercase; text-shadow:0 2px 10px rgba(0,0,0,0.85); font-weight:500; margin-top:6px; }
.page-hero-content p { margin-top:14px; font-size:16px; letter-spacing:1px; text-shadow:0 2px 8px rgba(0,0,0,0.7); }
@media (max-width:700px){
  .page-hero { height:48vh; min-height:320px; }
  .page-hero-content { padding:20px 16px; }
  .page-hero-content h1 { font-size:36px; line-height:1.1; }
  .page-hero-content .hero-meta { font-size:11px; letter-spacing:1.5px; }
  .page-hero-content p { font-size:14px; }
}

/* ===== SECTIONS ===== */
.section { padding:80px 20px; }
.section-narrow { max-width:1100px; margin:0 auto; }
.section-wide { max-width:1300px; margin:0 auto; }
.section-title { text-align:center; margin-bottom:50px; }
.section-title h2 { font-family:'Cormorant Garamond', serif; color:#268B5A; font-size:44px; font-weight:600; letter-spacing:1px; }
.section-title h2 .yellow { color:#d4a90a; font-style:italic; }
.section-title p { color:#777; margin-top:12px; font-size:14px; letter-spacing:2px; text-transform:uppercase; font-weight:500; }
.section-title .underline { width:80px; height:3px; background:#268B5A; margin:18px auto 0; }
.bg-light { background:#f7f7f5; }
.bg-green { background:#268B5A; color:#fff; }
.bg-green .section-title h2, .bg-green .section-title p { color:#fff; }
.bg-green .section-title .underline { background:#f8e87a; }

/* ===== OFFER CARDS ===== */
.offers-row { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:24px; }
.offer { text-align:center; padding:25px 15px; background:#fff; border-radius:6px; box-shadow:0 4px 18px rgba(0,0,0,0.07); transition:transform .3s, box-shadow .3s; }
.offer:hover { transform:translateY(-6px); box-shadow:0 12px 28px rgba(0,0,0,0.12); }
.offer .icon { width:64px; height:64px; margin:0 auto 14px; display:inline-flex; align-items:center; justify-content:center; background:#f7f7f5; border-radius:50%; color:#268B5A; font-size:28px; }
.offer img { height:64px; width:auto; margin:0 auto 14px; object-fit:contain; }
.offer h4 { color:#268B5A; font-size:18px; font-family:'Cormorant Garamond', serif; font-weight:600; letter-spacing:.5px; }

/* ===== WE OFFER ===== */
.we-offer-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:25px; }
.we-offer-item { position:relative; height:280px; border-radius:8px; overflow:hidden; cursor:pointer; box-shadow:0 4px 14px rgba(0,0,0,0.15); }
.we-offer-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.we-offer-item:hover img { transform:scale(1.08); }
.we-offer-item .label { position:absolute; inset:0; background:linear-gradient(to top, rgba(38,139,90,.85) 0%, rgba(38,139,90,0) 60%); display:flex; align-items:flex-end; justify-content:center; padding:25px; color:#fff; font-family:'Cormorant Garamond', serif; font-size:26px; font-weight:600; letter-spacing:2px; text-transform:uppercase; text-shadow:0 2px 10px rgba(0,0,0,0.6); }

/* ===== TESTIMONIALS ===== */
.testimonials { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:30px; }
.testimonial { background:rgba(255,255,255,0.08); padding:30px; border-radius:8px; border-left:4px solid #f8e87a; backdrop-filter:blur(4px); }
.testimonial p { font-style:italic; margin-bottom:15px; font-size:15px; font-family:'Cormorant Garamond', serif; font-size:18px; line-height:1.5; }
.testimonial .author { font-weight:700; color:#f8e87a; letter-spacing:1px; text-transform:uppercase; font-size:12px; }
.testimonial .source { color:rgba(255,255,255,0.7); font-size:11px; letter-spacing:1px; margin-top:4px; }
.testimonial i.fa-quote-left { color:#f8e87a; font-size:24px; margin-bottom:10px; display:block; }

/* ===== CTA STRIP ===== */
.cta-strip { background:url('https://oasistaverna.com/wp-content/uploads/DSC07736.jpg') center/cover no-repeat fixed; padding:120px 20px; text-align:center; color:#fff; position:relative; }
.cta-strip::before { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.6); }
.cta-strip > * { position:relative; z-index:1; }
.cta-strip h2 { font-family:'Cormorant Garamond', serif; font-size:54px; font-weight:600; letter-spacing:2px; text-shadow:0 3px 14px rgba(0,0,0,0.85); }
.cta-strip h2 .yellow { color:#f8e87a; display:block; font-size:64px; margin:6px 0; font-style:italic; font-weight:500; }
.cta-strip p { font-size:17px; margin:18px 0 30px; letter-spacing:2px; text-shadow:0 2px 10px rgba(0,0,0,0.7); }
.cta-strip .btn-group { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-strip .btn { background:#f8e87a; padding:15px 40px; border-radius:3px; color:#268B5A; font-weight:700; letter-spacing:2px; text-transform:uppercase; font-size:13px; transition:all .25s; }
.cta-strip .btn:hover { background:#fff; transform:translateY(-2px); }
.cta-strip .btn-wa { background:#25D366; color:#fff; }
.cta-strip .btn-wa:hover { background:#128C7E; color:#fff; }
@media (max-width:700px){
  .cta-strip h2 { font-size:32px; line-height:1.1; }
  .cta-strip h2 .yellow { font-size:38px; }
  .cta-strip p { font-size:14px; letter-spacing:1.5px; }
  .cta-strip { background-attachment:scroll; padding:70px 18px; }
  .cta-strip .btn-group { flex-direction:column; width:100%; max-width:340px; margin:0 auto; gap:10px; }
  .cta-strip .btn { padding:14px 22px; font-size:12px; letter-spacing:1.5px; width:100%; justify-content:center; display:inline-flex; align-items:center; }
}

/* ===== RESERVE BAR (under hero) ===== */
.reserve-bar {
  background: linear-gradient(135deg, #1f7048 0%, #268B5A 50%, #1f7048 100%);
  color: #fff;
  padding: 22px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
  border-top: 3px solid #f8e87a;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.reserve-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.reserve-bar .label {
  color: #f8e87a !important;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.reserve-bar .label::before,
.reserve-bar .label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(248,232,122,0.55);
}
.reserve-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
}
.reserve-bar a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.reserve-bar a.btn-primary {
  background: #f8e87a;
  color: #1f7048 !important;
  border-color: #f8e87a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.reserve-bar a.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #1f7048 !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}
.reserve-bar a.btn-wa {
  background: #25D366;
  color: #fff !important;
  border-color: #25D366;
  box-shadow: 0 4px 12px rgba(37,211,102,0.28);
}
.reserve-bar a.btn-wa:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(18,140,126,0.4);
}
@media (max-width: 1000px) {
  .reserve-bar .inner { gap: 12px 18px; }
  .reserve-bar .label { font-size: 20px; }
  .reserve-bar .label::before,
  .reserve-bar .label::after { width: 18px; }
}
@media (max-width: 720px) {
  .reserve-bar { padding: 18px 14px; border-top-width: 2px; }
  .reserve-bar .inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .reserve-bar .label { font-size: 17px; line-height: 1.3; padding: 0 6px; text-align: center; }
  .reserve-bar .label::before,
  .reserve-bar .label::after { display: none; }
  .reserve-bar a {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    justify-content: center;
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

/* ===== PROSE TEXT ===== */
.prose { max-width:880px; margin:0 auto; font-size:16px; line-height:1.75; }
.prose p { margin-bottom:18px; }
.prose strong { color:#268B5A; }

/* ===== GALLERY ===== */
.gallery-section { padding:60px 20px 30px; }
.gallery-section .section-title { margin-bottom:30px; }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); gap:8px; max-width:1300px; margin:0 auto; }
.gallery-grid .item { aspect-ratio:3/2; background-size:cover; background-position:center; border-radius:4px; cursor:pointer; transition:transform .35s, box-shadow .35s; }
.gallery-grid .item:hover { transform:scale(1.04); box-shadow:0 10px 24px rgba(0,0,0,0.25); z-index:2; position:relative; }

/* ===== LIGHTBOX ===== */
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:1000; align-items:center; justify-content:center; cursor:pointer; padding:20px; }
.lightbox.active { display:flex; }
.lightbox-img { max-width:92%; max-height:88%; border-radius:6px; box-shadow:0 10px 40px rgba(0,0,0,0.5); opacity:0; transition:opacity .35s ease; cursor:default; }
.lightbox-img.loaded { opacity:1; }
.lightbox-close, .lightbox-nav { position:absolute; background:rgba(255,255,255,0.12); border:none; color:#fff; width:48px; height:48px; border-radius:50%; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; transition:background .2s, transform .2s; }
.lightbox-close:hover, .lightbox-nav:hover { background:rgba(255,255,255,0.25); transform:scale(1.08); }
.lightbox-close { top:24px; right:24px; }
.lightbox-nav { top:50%; transform:translateY(-50%); }
.lightbox-nav:hover { transform:translateY(-50%) scale(1.08); }
.lightbox-prev { left:24px; }
.lightbox-next { right:24px; }
.lightbox-close svg, .lightbox-nav svg { width:24px; height:24px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.lightbox-counter { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); color:#f8e87a; font-size:14px; letter-spacing:2px; background:rgba(0,0,0,0.4); padding:8px 18px; border-radius:20px; }
.gallery-empty { grid-column:1/-1; text-align:center; padding:60px 20px; color:#999; font-style:italic; font-size:16px; }
.gallery-noscript-img { width:100%; aspect-ratio:3/2; object-fit:cover; border-radius:4px; display:block; }

/* ===== MENU CTA ===== */
.menu-cta { text-align:center; padding:60px 20px; background:url('https://oasistaverna.com/wp-content/uploads/DSC08923.jpg') center/cover no-repeat; color:#fff; position:relative; border-radius:10px; overflow:hidden; }
.menu-cta::before { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.6); }
.menu-cta > * { position:relative; z-index:1; }
.menu-cta h3 { font-family:'Cormorant Garamond', serif; font-size:36px; margin-bottom:18px; text-shadow:0 2px 10px rgba(0,0,0,0.7); }
.menu-cta .btn { background:#f8e87a; color:#268B5A; padding:14px 36px; border-radius:3px; font-weight:700; letter-spacing:2px; text-transform:uppercase; font-size:13px; }
.menu-cta .btn:hover { background:#fff; }

/* ===== EVENTS DAY GRID (overview) ===== */
.days-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:25px; }
.day-card { background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 4px 14px rgba(0,0,0,0.08); transition:transform .3s; }
.day-card:hover { transform:translateY(-5px); }
.day-card a { display:block; color:inherit; }
.day-card img { width:100%; height:auto; display:block; }
.day-card .body { padding:18px 20px; text-align:center; }
.day-card h4 { color:#268B5A; font-family:'Cormorant Garamond', serif; font-size:24px; }
.day-card .time { color:#999; font-size:11px; letter-spacing:2px; text-transform:uppercase; margin-top:4px; }

/* ===== EVENT DETAIL CARDS ===== */
.event-detail { max-width:980px; margin:0 auto 50px; background:#fff; border-radius:10px; box-shadow:0 6px 24px rgba(0,0,0,0.08); overflow:hidden; scroll-margin-top:140px; }
.event-detail .head { background:#268B5A; color:#fff; padding:30px; text-align:center; }
.event-detail .head .icon { font-size:34px; margin-bottom:8px; }
.event-detail .head h3 { font-family:'Cormorant Garamond', serif; font-size:34px; font-weight:600; letter-spacing:1px; }
.event-detail .head .meta { margin-top:10px; font-size:12px; letter-spacing:2px; text-transform:uppercase; opacity:0.9; }
.event-detail .body-text { padding:35px 40px; font-size:15.5px; line-height:1.8; color:#444; }
.event-detail .body-text p { margin-bottom:16px; }
.event-detail blockquote { border-left:4px solid #f8e87a; padding:6px 0 6px 22px; margin:18px 0; font-style:italic; color:#555; font-family:'Cormorant Garamond', serif; font-size:18px; line-height:1.6; }
.event-detail .footer-info { background:#f7f7f5; padding:22px 30px; text-align:center; font-size:13px; color:#555; border-top:1px solid #e8e8e8; }
.event-detail .footer-info a { color:#268B5A; font-weight:600; }
.event-detail .footer-info .line { display:inline-block; margin:4px 14px; }
@media (max-width:700px){
  .event-detail .body-text { padding:25px 22px; font-size:14.5px; }
  .event-detail .head h3 { font-size:26px; }
}

/* ===== BLOG ===== */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:30px; }
.blog-post { background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 4px 14px rgba(0,0,0,0.08); transition:transform .3s; }
.blog-post:hover { transform:translateY(-5px); }
.blog-post .thumb { height:200px; background-size:cover; background-position:center; }
.blog-post .body { padding:22px; }
.blog-post h3 { color:#268B5A; font-size:22px; margin-bottom:10px; font-family:'Cormorant Garamond', serif; }
.blog-post .meta { color:#999; font-size:11px; letter-spacing:1.5px; margin-bottom:10px; text-transform:uppercase; }
.blog-post .read-more { color:#268B5A; font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:1.5px; }

/* ===== CONTACT ===== */
.contact-wrap { display:grid; grid-template-columns:1fr 1fr; gap:50px; }
@media (max-width:800px){ .contact-wrap { grid-template-columns:1fr; } }
.contact-form input, .contact-form textarea { width:100%; padding:14px 16px; margin-bottom:14px; border:1px solid #ddd; border-radius:4px; font-family:inherit; font-size:15px; background:#fafafa; transition:border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline:none; border-color:#268B5A; background:#fff; }
.contact-form textarea { min-height:130px; resize:vertical; }
.contact-form .row { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; }
@media (max-width:600px){ .contact-form .row { grid-template-columns:1fr; } }
.contact-form button { width:100%; background:#268B5A; color:#fff; border:none; padding:14px; border-radius:4px; font-weight:700; font-size:13px; letter-spacing:2px; text-transform:uppercase; cursor:pointer; }
.contact-form button:hover { background:#1f7048; }
.contact-form.thanks { display:none; margin-top:20px; padding:18px; background:#268B5A; color:#fff; border-radius:6px; text-align:center; }
.contact-form.thanks.show { display:block; }
.contact-form .privacy-note { font-size:12px; color:#888; margin-bottom:14px; }
.contact-form input.error, .contact-form textarea.error { border-color:#e57373 !important; }
.honeypot { position:absolute; left:-9999px; opacity:0; height:0; width:0; }
.contact-info-card { background:#fff; padding:35px 30px; border-radius:8px; box-shadow:0 4px 14px rgba(0,0,0,0.07); }
.contact-info-card h3 { color:#268B5A; font-family:'Cormorant Garamond', serif; font-size:26px; margin-bottom:20px; }
.contact-info-card p { display:flex; align-items:flex-start; gap:14px; padding:10px 0; border-bottom:1px solid #eee; font-size:15px; }
.contact-info-card p:last-child { border:none; }
.contact-info-card i { color:#268B5A; width:22px; padding-top:4px; }
.map-embed { width:100%; height:420px; border:0; border-radius:8px; box-shadow:0 4px 16px rgba(0,0,0,0.1); }

/* ===== FOOTER ===== */
.footer-stripes { height:18px; background:linear-gradient(to bottom, #d8e34d 0,#d8e34d 6px,#268B5A 6px,#268B5A 10px,#b9c531 10px,#b9c531 14px,#1f7048 14px,#1f7048 18px); }
.site-footer { background-color:#268B5A; color:#fff; padding:60px 20px 30px; }
.footer-inner { max-width:1300px; margin:0 auto; text-align:center; }
.footer-logo img { max-height:120px; width:auto; display:inline-block; }
.footer-tagline { font-style:italic; font-size:16px; margin:25px auto 30px; max-width:950px; line-height:1.7; font-family:'Cormorant Garamond', serif; font-weight:500; }
.footer-contact { display:flex; flex-wrap:wrap; justify-content:center; gap:18px 35px; margin-bottom:30px; font-size:14px; }
.footer-contact a, .footer-contact span { color:#f8e87a; display:inline-flex; align-items:center; gap:8px; }
.footer-contact a:hover { color:#fff; }
.footer-contact i { color:#fff; }
.footer-socials { display:flex; justify-content:center; gap:18px; margin:25px 0 20px; flex-wrap:wrap; }
.footer-socials a { width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,0.12); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:16px; transition:all .25s; }
.footer-socials a:hover { background:#fff; color:#268B5A; transform:translateY(-3px); }
.footer-socials a.tba { background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.4); cursor:default; font-size:11px; letter-spacing:1px; }
.footer-socials a.tba:hover { transform:none; background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.4); }
.footer-copy { font-style:italic; font-size:13px; color:#eaeaea; margin-top:15px; border-top:1px solid rgba(255,255,255,0.18); padding-top:20px; }
.footer-copy a { color:#f8e87a; font-weight:600; }
.footer-zantewize { display:inline-block; vertical-align:middle; height:18px; margin-left:5px; }
@media (max-width:700px){
  .footer-contact { gap:12px 18px; font-size:13px; }
  .footer-tagline { font-size:14px; }
  .site-footer { padding:35px 16px 20px; }
}

/* ===== FLOATING BUTTONS (sticky right side) ===== */
.float-actions { position:fixed; right:22px; bottom:22px; display:flex; flex-direction:column; gap:12px; z-index:99; }
.float-actions a, .float-actions button { width:54px; height:54px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:22px; box-shadow:0 6px 18px rgba(0,0,0,0.3); transition:all .25s; border:none; cursor:pointer; }
.float-actions .fab-wa { background:#25D366; color:#fff; }
.float-actions .fab-wa:hover { background:#128C7E; transform:translateY(-3px); }
.float-actions .fab-reserve { background:#f8e87a; color:#268B5A; font-size:11px; letter-spacing:1px; font-weight:700; text-transform:uppercase; padding:6px; line-height:1.1; text-align:center; }
.float-actions .fab-reserve:hover { background:#fff; transform:translateY(-3px); }
.float-actions .fab-top { background:#268B5A; color:#fff; }
.float-actions .fab-top:hover { background:#1f7048; transform:translateY(-3px); }
@media (max-width:600px){
  .float-actions { right:14px; bottom:14px; gap:10px; }
  .float-actions a, .float-actions button { width:48px; height:48px; font-size:18px; }
}

/* ===== UTILITIES ===== */
.title-case { text-transform:capitalize; }

/* ===== RESPONSIVE GLOBAL TWEAKS ===== */
@media (max-width:700px){
  .section { padding:55px 16px; }
  .section-title { margin-bottom:35px; }
  .section-title h2 { font-size:32px; }
  .section-title p { font-size:12px; letter-spacing:1.5px; }
  .prose { font-size:15px; line-height:1.7; }
  .we-offer-grid { gap:14px; }
  .we-offer-item { height:220px; }
  .we-offer-item .label { font-size:20px; padding:18px; }
  .days-grid { gap:18px; }
  .day-card h4 { font-size:22px; }
  .gallery-section { padding:40px 14px 20px; }
  .gallery-grid { gap:6px; grid-template-columns:repeat(auto-fill, minmax(150px, 1fr)); }
  .blog-grid { gap:18px; }
  .contact-form .row { grid-template-columns:1fr; }
  .lightbox-close { top:14px; right:14px; width:42px; height:42px; }
  .lightbox-nav { width:42px; height:42px; }
  .lightbox-prev { left:8px; }
  .lightbox-next { right:8px; }
  .footer-stripes { height:14px; }
  .menu-cta { padding:45px 16px; }
  .menu-cta h3 { font-size:28px; }
}
@media (max-width:480px){
  .section-title h2 { font-size:28px; }
  .hero-content h1 { font-size:36px; }
  .hero-content h1 .yellow { font-size:42px; }
  .page-hero-content h1 { font-size:30px; }
  .cta-strip h2 { font-size:28px; }
  .cta-strip h2 .yellow { font-size:32px; }
  .gallery-grid { grid-template-columns:repeat(auto-fill, minmax(130px, 1fr)); }
}
