/* =========================================================
   OPA Greek Bistro — Design tokens
   ========================================================= */
:root{
  --cream:        #F8F3E7;
  --cream-deep:    #F1E9D6;
  --paper:        #FFFEFB;
  --ink:          #1E2A4A;
  --blue:         #2459A9;
  --blue-deep:    #1F3568;
  --blue-pale:    #E7ECF8;
  --gold:         #F0C168;
  --gold-deep:    #D9A63E;
  --olive:        #4C7A4F;
  --olive-pale:   #E5EEDD;

  --font-display: "Fraunces", "Georgia", serif;
  --font-script:  "Caveat", cursive;
  --font-body:    "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
  --radius: 4px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section{ position: relative; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--blue-deep);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor:pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 6px 0 var(--blue-deep);
}
.btn-primary:hover{ box-shadow: 0 8px 0 var(--blue-deep); }
.btn-primary:active{ transform: translateY(2px); box-shadow: 0 3px 0 var(--blue-deep); }
.btn-ghost{
  background: transparent;
  border-color: var(--blue-deep);
  color: var(--blue-deep);
}
.btn-ghost:hover{ background: var(--blue-deep); color: var(--paper); }
.btn-gold{
  background: var(--gold);
  color: var(--blue-deep);
  box-shadow: 0 6px 0 var(--gold-deep);
}
.btn-gold:hover{ box-shadow: 0 8px 0 var(--gold-deep); }
.btn-gold:active{ transform: translateY(2px); box-shadow: 0 3px 0 var(--gold-deep); }

/* Wave divider — brand's own ≈ motif, used between sections */
.wave-divider{
  display:flex;
  justify-content:center;
  padding: 6px 0;
  color: var(--blue);
}
.wave-divider svg{ width: 120px; height: 22px; }
.wave-divider.gold{ color: var(--gold-deep); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,243,231,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31,53,104,0.1);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.3rem;
  color: var(--blue-deep);
}
.brand img{ height: 42px; width:auto; }
.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
  list-style:none;
  margin:0; padding:0;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav-links a{
  position:relative;
  padding: 4px 2px;
  color: var(--ink);
}
.nav-links a:hover{ color: var(--blue); }
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-links a:hover::after{ transform: scaleX(1); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.lang-switch{
  font-size: 0.8rem;
  font-weight:700;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  border: 1.5px solid rgba(31,53,104,0.25);
  border-radius: 999px;
  padding: 6px 12px;
  transition: all .15s ease;
}
.lang-switch:hover{ background: var(--blue-deep); color: var(--paper); border-color: var(--blue-deep); }
.nav-toggle{
  display:none;
  background:none; border:none;
  font-size: 1.6rem;
  color: var(--blue-deep);
  cursor:pointer;
}

@media (max-width: 860px){
  .nav-links{
    position: fixed;
    top: 68px; left:0; right:0;
    background: var(--paper);
    flex-direction:column;
    align-items:flex-start;
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(31,53,104,0.12);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-toggle{ display:block; }
  .nav-cta .btn span.long{ display:none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items:center;
}
.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 18px;
}
.hero-eyebrow .rule{ width: 34px; height:2px; background: var(--gold-deep); }
.hero h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
}
.hero h1 em{
  font-style: normal;
  font-family: var(--font-script);
  color: var(--gold-deep);
  font-size: 1.15em;
  font-weight: 400;
}
.hero p.lead{
  margin-top: 20px;
  font-size: 1.1rem;
  color: #45507A;
  max-width: 46ch;
}
.hero-actions{
  display:flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-meta{
  display:flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta div{ font-size: 0.85rem; }
.hero-meta strong{
  display:block;
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 1.05rem;
}
.hero-art{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-art .badge-circle{
  position:absolute;
  inset:0;
  margin:auto;
  width: 92%;
  aspect-ratio: 1;
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, var(--blue) 0%, var(--blue-deep) 78%);
  box-shadow: 0 30px 60px -20px rgba(31,53,104,0.45);
}
.hero-art img{
  position:relative;
  z-index:2;
  width: 95%;
  max-width: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(31,53,104,0.25));
}
.hero-art .ring{
  position:absolute;
  border: 3px dashed rgba(240,193,104,0.8);
  border-radius:50%;
}
.hero-art .ring.r1{ width:78%; height:78%; inset:0; margin:auto; animation: spin 10s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.hero-polaroid{
  position:absolute;
  bottom: -8%;
  left: -8%;
  width: 42%;
  background: var(--paper);
  padding: 10px 10px 16px;
  border-radius: 4px;
  box-shadow: 0 22px 40px -14px rgba(31,53,104,0.5);
  transform: rotate(-7deg);
  z-index: 3;
}
.hero-polaroid img{
  width:100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 900px){
  .hero-polaroid{ width: 46%; left: -4%; bottom: -6%; }
}
@media (max-width: 520px){
  .hero-polaroid{ display:none; }
}

@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; }
  .hero-art img{ max-width: 240px; }
}

/* =========================================================
   Story section
   ========================================================= */
.story{ padding: 70px 0; }
.story-head{
  max-width: 640px;
  margin: 0 auto 46px;
  text-align:center;
}
.story-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top:10px; }
.story-head p{ margin-top: 14px; color:#45507A; }
.story-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.story-card{
  background: var(--paper);
  border-radius: 10px;
  padding: 30px 26px;
  border: 1px solid rgba(31,53,104,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.story-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 30px -18px rgba(31,53,104,0.35); }
.story-card .icon{
  width: 46px; height:46px;
  color: var(--blue);
  margin-bottom: 16px;
}
.story-card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.story-card p{ font-size: 0.94rem; color:#4B567C; margin:0; }

@media (max-width: 860px){
  .story-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   Menu section
   ========================================================= */
.menu-section{ padding: 70px 0 90px; background: var(--cream-deep); }
.menu-head{ text-align:center; max-width: 640px; margin: 0 auto 20px; }
.menu-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top:10px; }
.menu-head p{ margin-top: 12px; color:#45507A; }
.pdf-links{
  display:flex;
  gap: 22px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 18px;
}
.pdf-links a{
  display:inline-flex;
  align-items:center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight:600;
  color: var(--blue);
  border-bottom: 1px solid transparent;
}
.pdf-links a:hover{ color: var(--blue-deep); border-bottom-color: var(--gold-deep); }
.pdf-links svg{ width:16px; height:16px; flex:none; }

.menu-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin: 34px 0 40px;
}
.menu-tab{
  background: var(--paper);
  border: 1px solid rgba(31,53,104,0.15);
  color: var(--blue-deep);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight:600;
  cursor:pointer;
  transition: all .15s ease;
}
.menu-tab:hover{ border-color: var(--blue); }
.menu-tab.active{
  background: var(--blue);
  color: var(--paper);
  border-color: var(--blue);
}

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

.menu-cats{
  display:grid;
  grid-template-columns: 1fr;
  gap: 46px;
  max-width: 820px;
  margin: 0 auto;
}
.menu-cats.two-col{ max-width: 980px; }
@media (min-width: 760px){
  .menu-cats.two-col{
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }
}
.menu-cat-title{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin-bottom: 22px;
}
.menu-cat-title h3{
  font-size: 1.5rem;
  color: var(--blue-deep);
}
.menu-cat-title .line{
  flex:1;
  height:2px;
  background: repeating-linear-gradient(90deg, var(--gold-deep) 0 8px, transparent 8px 14px);
}
.menu-item{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(31,53,104,0.15);
}
.menu-item:last-child{ border-bottom:none; }
.menu-item-name{
  font-weight:700;
  color: var(--blue-deep);
  display:flex;
  align-items:center;
  gap:7px;
  font-size: 1.02rem;
}
.menu-item-desc{
  grid-column: 1 / 2;
  font-size: 0.88rem;
  color: #57628A;
  margin-top: -2px;
}
.menu-item-price{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--blue);
  font-size: 1.05rem;
  white-space:nowrap;
  align-self:start;
}
.leaf{
  width:15px; height:15px;
  color: var(--olive);
  flex:none;
}
.grape{
  font-weight:400;
  font-size: 0.85rem;
  color: #57628A;
}
.price-sub{
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-deep);
}
.wine-cols-label{
  text-align:right;
  font-size: 0.75rem;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--gold-deep);
  margin: -12px 0 6px;
}
.wine-note{
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px dashed var(--blue);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--blue-deep);
  font-weight:600;
  text-align:center;
}
.menu-note{
  text-align:center;
  margin: 40px auto 0;
  font-size: 0.85rem;
  color:#5C6790;
  max-width: 520px;
}
.menu-note .leaf{ display:inline-block; vertical-align:-2px; }

/* =========================================================
   Gallery strip
   ========================================================= */
.strip{
  padding: 10px 0;
  background: var(--blue-deep);
  overflow: hidden;
}
.strip-track{
  display:flex;
  gap: 0;
  white-space:nowrap;
  animation: scroll 26s linear infinite;
  width: max-content;
}
.strip-track span{
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 10px 26px;
  opacity: 0.9;
}
.strip-track span.gold{ color: var(--gold); }
@keyframes scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   Food gallery
   ========================================================= */
.craving-banner{
  background: var(--blue-deep);
  color: var(--cream);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.craving-banner .craving-media{
  position:relative;
  width:100%;
}
.craving-banner .craving-media img{
  display:block;
  width:100%;
  height:auto;
}
.craving-banner .craving-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,24,50,0) 45%, rgba(15,24,50,0.85) 100%);
}
.craving-banner .container{
  position:absolute;
  left:0; right:0; bottom:0;
  padding-bottom: 36px;
}
.craving-tag{
  display:inline-block;
  font-family: var(--font-body);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.8rem;
  color: var(--gold);
  margin-bottom:14px;
}
.craving-banner h2{
  color: var(--cream);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.gallery-section{ padding: 70px 0 80px; background: var(--cream-deep); }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 14px;
  max-width: 1080px;
  margin: 40px auto 0;
}
.g-item{
  margin:0;
  overflow:hidden;
  border-radius: 8px;
  grid-row: span 1;
}
.g-item.g-tall{ grid-row: span 2; }
.g-item img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  transition: transform .5s ease;
}
.g-item:hover img{ transform: scale(1.06); }

@media (max-width: 860px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials{ padding: 70px 0 80px; }
.testi-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}
.testi-card{
  background: var(--paper);
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid rgba(31,53,104,0.08);
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.testi-card .stars{
  color: var(--gold-deep);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.testi-card p{
  font-size: 0.92rem;
  color: #45507A;
  margin:0;
  flex:1;
}
.testi-author{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-top: 12px;
  border-top: 1px dashed rgba(31,53,104,0.15);
}
.testi-name{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--blue-deep);
  font-size: 1rem;
}
.testi-source{
  font-size: 0.75rem;
  color: var(--olive);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.testi-cta{
  text-align:center;
  margin-top: 36px;
}
@media (max-width: 860px){
  .testi-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   Space / ambiance photos
   ========================================================= */
.space-section{ padding: 20px 0 70px; }
.space-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  height: 560px;
  margin: 40px auto 0;
}
.space-photo{
  margin:0;
  overflow:hidden;
  border-radius: 10px;
  box-shadow: 0 18px 34px -22px rgba(31,53,104,0.5);
}
.space-photo.tall{ grid-row: 1 / 3; }
.space-photo img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  transition: transform .5s ease;
}
.space-photo:hover img{ transform: scale(1.05); }

@media (max-width: 760px){
  .space-grid{ grid-template-columns: 1fr 1fr; grid-template-rows: auto; height:auto; }
  .space-photo.tall{ grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .space-photo:not(.tall){ aspect-ratio: 1; }
}

/* =========================================================
   Location
   ========================================================= */
.location{ padding: 80px 0; }
.location .container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items:start;
}
.location h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.location-info{ margin-top: 22px; }
.info-row{
  display:flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31,53,104,0.1);
}
.info-row:last-child{ border-bottom:none; }
.info-row .ic{ width:22px; height:22px; color: var(--blue); flex:none; margin-top:2px; }
.info-row strong{ display:block; color: var(--blue-deep); font-family: var(--font-display); font-size:1.05rem; }
.info-row span, .info-row a{ font-size: 0.92rem; color:#4B567C; }
.info-row a:hover{ color: var(--blue); }

.hours-table{
  margin-top: 22px;
  width:100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hours-table td{ padding: 7px 0; border-bottom: 1px dotted rgba(31,53,104,0.15); }
.hours-table td:first-child{ font-weight:600; color: var(--blue-deep); }
.hours-table td:last-child{ text-align:right; color:#4B567C; }
.hours-table tr.today td{ color: var(--olive); font-weight:700; }

.map-embed{
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid rgba(31,53,104,0.12);
  box-shadow: 0 20px 40px -24px rgba(31,53,104,0.4);
}
.map-embed iframe{ width:100%; height: 420px; border:0; display:block; }

.social-row{
  display:flex;
  gap: 12px;
  margin-top: 26px;
}
.social-row a{
  width: 42px; height:42px;
  border-radius:50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .15s ease;
}
.social-row a:hover{ background: var(--blue); color:var(--paper); }
.social-row svg{ width:19px; height:19px; }

@media (max-width: 900px){
  .location .container{ grid-template-columns: 1fr; }
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner{
  background:
    linear-gradient(180deg, rgba(31,53,104,0.55), rgba(15,24,50,0.82)),
    url("assets/photos/lamb-night.jpg") center 25% / cover no-repeat;
  color: var(--cream);
  padding: 90px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-banner h2{ color: var(--paper); font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.cta-banner p{ color: rgba(248,243,231,0.8); margin-top:10px; }
.cta-banner .hero-actions{ justify-content:center; margin-top: 26px; }

/* =========================================================
   Footer
   ========================================================= */
footer{
  background: var(--ink);
  color: rgba(248,243,231,0.75);
  padding: 50px 0 24px;
  font-size: 0.88rem;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ height: 38px; }
.footer-brand span{ font-family: var(--font-display); color: var(--paper); font-size:1.2rem; font-weight:700; }
footer h4{ color: var(--gold); font-size: 0.82rem; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:14px; font-family: var(--font-body); }
footer ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
footer a:hover{ color: var(--gold); }
.footer-bottom{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(248,243,231,0.12);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(248,243,231,0.5);
}
@media (max-width: 760px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   WhatsApp floating button
   ========================================================= */
.wa-float{
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  background: #25D366;
  color:#fff;
  width: 58px; height:58px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45);
  transition: transform .18s ease;
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}
