/* =========================================================
   OSES ÇİĞKÖFTE SİNCAN — tokens
   Red pulled directly from the logo (#D91423).
========================================================= */
:root{
  --red: #D91423;
  --red-dark: #7A0E1A;
  --red-deep: #5C0A14;
  --ink: #241813;
  --cream: #FBF1E2;
  --cream-soft: #F3E3CC;
  --lime: #97D700;
  --lime-dark: #5C8A00;
  --green: #5C8A00;
  --gold: #E8A33D;
  --white: #FFFDF9;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-script: 'Caveat', cursive;

  --radius: 18px;
  --shadow: 0 14px 30px -14px rgba(36,24,19,0.35);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
svg{fill:currentColor;}
.icon{width:20px;height:20px;}

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius:100px;
  font-weight:700;
  font-size:0.98rem;
  border:2px solid transparent;
  transition:transform .15s ease, background .2s ease, box-shadow .2s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn--primary{
  background:var(--white);
  color:var(--red-dark);
  box-shadow:var(--shadow);
}
.btn--primary:hover{background:var(--lime);color:var(--ink);}
.btn--ghost{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.55);
}
.btn--ghost:hover{border-color:var(--white);background:rgba(255,255,255,0.1);}
.btn--outline-light{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.4);
}
.btn--outline-light:hover{background:rgba(255,255,255,0.12);}
.btn--wa{
  background:#25D366;
  color:#0b3b20;
}
.btn--wa:hover{background:#1fb958;}
.btn--wa .icon{width:18px;height:18px;}

/* =========================================================
   NAV
========================================================= */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--cream);
  border-bottom:1px solid rgba(36,24,19,0.08);
  box-shadow:0 4px 0 -1px var(--lime);
}
.nav__inner{
  max-width:1180px;
  margin:0 auto;
  padding:10px 24px;
  display:flex;
  align-items:center;
  gap:24px;
}
.nav__logo{height:46px;width:auto;}
.nav__links{
  display:flex;
  gap:28px;
  margin-left:auto;
  font-weight:600;
  font-size:0.95rem;
}
.nav__links a{position:relative;padding:4px 0;}
.nav__links a:hover{color:var(--red);}
.nav__cta{padding:10px 20px;font-size:0.9rem;}
.nav__burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  border:none;
  background:transparent;
  cursor:pointer;
}
.nav__burger span{
  height:3px;
  border-radius:3px;
  background:var(--ink);
}
.nav__mobile{
  display:none;
  flex-direction:column;
  gap:2px;
  padding:8px 24px 18px;
  background:var(--cream);
  border-bottom:1px solid rgba(36,24,19,0.08);
}
.nav__mobile a{
  padding:12px 4px;
  font-weight:600;
  border-bottom:1px solid rgba(36,24,19,0.07);
}
.nav__mobile .btn{margin-top:12px;justify-content:center;}
.nav__mobile.is-open{display:flex;}

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative;
  background:linear-gradient(160deg, var(--red) 0%, var(--red-dark) 78%);
  padding:70px 24px 130px;
  text-align:center;
  overflow:hidden;
}
.hero__inner{
  max-width:640px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.hero__eyebrow{
  color:rgba(255,255,255,0.85);
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-size:0.78rem;
  margin:0 0 22px;
}
.hero__logo{
  width:min(78%, 340px);
  margin:0 auto;
  filter:drop-shadow(0 12px 22px rgba(0,0,0,0.28));
}
.hero__tagline{
  font-family:var(--font-script);
  font-size:clamp(1.4rem, 4vw, 1.9rem);
  color:var(--lime);
  margin:18px 0 34px;
  font-weight:700;
}
.hero__actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero__swoosh{
  position:absolute;
  bottom:-2px;
  left:0;
  width:100%;
  line-height:0;
  color:var(--cream);
}
.hero__swoosh svg{width:100%;height:90px;display:block;}

/* =========================================================
   SECTION HEADERS
========================================================= */
.section__head{
  text-align:center;
  max-width:640px;
  margin:0 auto 44px;
  padding:0 24px;
}
.section__eyebrow{
  font-family:var(--font-script);
  color:var(--red);
  font-size:1.35rem;
  font-weight:700;
  margin:0;
}
.section__eyebrow--light{color:var(--lime);}
.section__title{
  font-family:var(--font-display);
  font-size:clamp(2.2rem, 5vw, 3rem);
  letter-spacing:0.02em;
  margin:4px 0 0;
  color:var(--red-dark);
}
.section__title--light{color:var(--white);}

/* =========================================================
   MENU
========================================================= */
.menu{
  padding:80px 24px 30px;
  max-width:1180px;
  margin:0 auto;
}
.menu__group{margin-bottom:52px;}
.menu__groupTitle{
  font-family:var(--font-display);
  color:var(--red);
  font-size:1.3rem;
  letter-spacing:0.04em;
  border-bottom:3px solid var(--lime);
  padding-bottom:10px;
  margin:0 0 22px;
}
.menu__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:22px;
}
.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:26px 24px 22px;
  box-shadow:var(--shadow);
  position:relative;
  display:flex;
  flex-direction:column;
  border-top:5px solid var(--red);
  transition:transform .2s ease;
}
.card:hover{transform:translateY(-5px);}
.card__weight{
  align-self:flex-start;
  background:var(--lime);
  color:#2E4600;
  font-weight:800;
  font-size:0.78rem;
  letter-spacing:0.03em;
  padding:5px 12px;
  border-radius:100px;
  margin-bottom:14px;
}
.card__name{
  font-family:var(--font-display);
  font-size:1.35rem;
  letter-spacing:0.01em;
  margin:0 0 10px;
  color:var(--ink);
}
.card__desc{
  font-size:0.92rem;
  line-height:1.5;
  color:rgba(36,24,19,0.72);
  margin:0 0 20px;
  flex-grow:1;
}
.card__foot{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-top:14px;
  border-top:1px dashed rgba(36,24,19,0.15);
}
.price{
  font-family:var(--font-display);
  font-size:1.5rem;
  color:var(--green);
}
.card__addon{
  margin-top:10px;
  font-size:0.82rem;
  background:rgba(232,163,61,0.18);
  color:#8a5a10;
  padding:8px 12px;
  border-radius:10px;
  text-align:center;
  font-weight:600;
}
.menu__note{
  text-align:center;
  font-size:0.85rem;
  color:rgba(36,24,19,0.55);
  margin-top:36px;
}

/* =========================================================
   LOCATION
========================================================= */
.location{
  position:relative;
  background:linear-gradient(160deg, var(--red-dark) 0%, var(--red-deep) 100%);
  padding:90px 24px 130px;
  margin-top:40px;
}
.location__inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.location__info .section__head{margin:0 0 32px;text-align:left;padding:0;}
.infoList{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-bottom:34px;
}
.infoList li{
  display:flex;
  gap:16px;
  align-items:flex-start;
  color:var(--white);
}
.infoList__icon{
  flex:none;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
}
.infoList__icon svg{width:20px;height:20px;color:var(--lime);}
.infoList strong{
  display:block;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--lime);
  margin-bottom:4px;
}
.infoList p{margin:0;line-height:1.5;color:rgba(255,253,249,0.92);}
.infoList a:hover{text-decoration:underline;}
.infoList__note{opacity:0.65;font-size:0.85em;}
.location__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.location__map{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:4px solid rgba(255,255,255,0.15);
}
.location__map iframe{
  width:100%;
  height:340px;
  border:0;
  display:block;
}
.location__mapLink{
  display:block;
  background:var(--white);
  color:var(--red-dark);
  font-weight:700;
  text-align:center;
  padding:14px;
  font-size:0.92rem;
}
.location__mapLink:hover{background:var(--lime);}
.location__swoosh{
  position:absolute;
  bottom:-2px;
  left:0;
  width:100%;
  line-height:0;
  color:var(--cream);
  transform:scaleY(-1);
}
.location__swoosh svg{width:100%;height:70px;display:block;}

/* =========================================================
   FOOTER
========================================================= */
.footer{
  background:var(--cream);
  text-align:center;
  padding:48px 24px 120px;
}
.footer__logo{height:52px;margin:0 auto 18px;}
.footer__addr{margin:0 0 6px;font-size:0.92rem;color:rgba(36,24,19,0.75);}
.footer__phone{margin:0 0 18px;font-weight:700;}
.footer__phone a:hover{color:var(--red);}
.footer__copy{
  font-size:0.78rem;
  color:rgba(36,24,19,0.45);
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.fab{
  position:fixed;
  bottom:22px;
  right:22px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px -6px rgba(0,0,0,0.4);
  z-index:60;
  animation:pulse 2.4s ease-in-out infinite;
}
.fab .icon{width:28px;height:28px;}
@keyframes pulse{
  0%,100%{box-shadow:0 10px 24px -6px rgba(0,0,0,0.4);}
  50%{box-shadow:0 10px 24px -6px rgba(37,211,102,0.65);}
}
@media (prefers-reduced-motion: reduce){
  .fab{animation:none;}
  html{scroll-behavior:auto;}
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 860px){
  .location__inner{grid-template-columns:1fr;}
  .location__info .section__head{text-align:center;}
  .location__info{text-align:center;}
  .infoList li{text-align:left;}
}

@media (max-width: 700px){
  .nav__links{display:none;}
  .nav__cta{display:none;}
  .nav__burger{display:flex;}
  .hero{padding:44px 20px 100px;}
  .menu{padding:56px 18px 10px;}
  .location{padding:64px 18px 110px;}
  .card{padding:22px 20px 18px;}
}

@media (max-width: 420px){
  .hero__tagline{font-size:1.3rem;}
  .fab{width:52px;height:52px;bottom:16px;right:16px;}
}