:root{
  --blue:#053f54;
  --blue-dark:#052b39;
  --yellow:#ffc400;
  --yellow-dark:#f0a600;
  --cream:#fff2d3;
  --paper:#fffaf0;
  --ink:#082c3a;
  --muted:#405b66;
  --font-display:"Baloo 2",system-ui,sans-serif;
  --font-body:"Manrope",system-ui,sans-serif;
  --header:110px;
  --marquee:50px;
}

*{box-sizing:border-box}

html,
body{
  margin:0;
  overflow-x:hidden;
}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

button{
  font:inherit;
  cursor:pointer;
}

.container{
  width:min(1180px,calc(100% - 48px));
  margin:auto;
}

/* HEADER */

.site-header{
  height:var(--header);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:0 5vw;
  background:#fff;
  border-bottom:1px solid rgba(5,43,57,.12);
  position:sticky;
  top:0;
  z-index:100;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:112px;
  height:112px;
  object-fit:contain;
}

.brand strong{
  display:block;
  font-family:var(--font-display);
  font-size:2rem;
  line-height:.82;
  color:var(--blue);
  letter-spacing:-1px;
}

.brand small{
  display:block;
  margin-top:5px;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:4.8px;
  color:var(--blue);
  text-transform:uppercase;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:16px;
}

.main-nav a{
  font-weight:900;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}

.main-nav a:hover,
.main-nav a.active{
  background:var(--yellow);
  color:var(--blue-dark);
  clip-path:polygon(3% 18%,95% 0,100% 82%,0 100%);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.call-btn{
  background:var(--yellow);
  border:4px solid var(--blue-dark);
  border-radius:999px;
  padding:16px 30px;
  font-family:var(--font-display);
  font-weight:900;
  box-shadow:6px 6px 0 var(--blue-dark);
  white-space:nowrap;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:4px solid var(--blue-dark);
  background:#fff;
  border-radius:12px;
  font-weight:900;
}

/* HERO */

.hero{
  position:relative;
  height:calc(100vh - var(--header) - var(--marquee));
  min-height:650px;
  display:grid;
  grid-template-columns:40% 60%;
  overflow:hidden;
  background:var(--cream);
}

.hero-left{
  position:relative;
  padding:5.2vh 5vw 110px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    radial-gradient(circle at 94% 78%,rgba(5,43,57,.08),transparent 20%),
    linear-gradient(90deg,#fff7df,#fffaf0);
}

.hero-badge{
  width:max-content;
  margin-bottom:24px;
  padding:16px 52px 16px 30px;
  background:var(--yellow);
  border:4px solid var(--blue-dark);
  box-shadow:6px 6px 0 var(--blue-dark);
  color:var(--blue-dark);
  font-family:var(--font-display);
  font-size:1.3rem;
  font-weight:900;
  letter-spacing:2px;
  transform:rotate(-3deg);
  clip-path:polygon(0 18%,96% 0,100% 78%,4% 100%);
  transition:.35s ease;
}

.hero-badge.is-changing{
  opacity:0;
  transform:translateY(-18px) rotate(-7deg) scale(.92);
}

.hero-slider{
  position:relative;
  min-height:430px;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(28px) scale(.97);
  pointer-events:none;
  transition:.58s ease;
}

.hero-slide.active{
  opacity:1;
  transform:none;
  pointer-events:auto;
}

.hero-slide h1{
  font-family:var(--font-display);
  font-size:clamp(4rem,6.2vw,7.4rem);
  line-height:.82;
  letter-spacing:-3px;
  color:var(--blue-dark);
  margin:0;
  max-width:660px;
}

.hero-slide h1 span{
  display:block;
  color:var(--yellow-dark);
}

.hero-slide.active h1{
  animation:headlinePunch .72s cubic-bezier(.2,.9,.25,1);
}

.hero-slide p{
  font-size:1.22rem;
  line-height:1.55;
  max-width:560px;
  color:#24444f;
  margin:26px 0 0;
}

.hero-slide.active p{
  animation:copyRise .75s ease;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-slide.active .hero-buttons{
  animation:buttonPop .85s ease;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:4px solid var(--blue-dark);
  border-radius:14px;
  padding:18px 32px;
  font-family:var(--font-display);
  font-weight:900;
  font-size:1.06rem;
  transition:.2s ease;
}

.btn:hover{
  transform:translate(-2px,-2px);
}

.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:7px 7px 0 var(--blue-dark);
}

.btn-secondary{
  background:#fff;
  color:var(--blue-dark);
}

/* SOL ALT İLETİŞİM */

.hero-contact-box{
  position:absolute;
  left:5vw;
  right:3vw;
  bottom:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#fff;
  border:4px solid var(--blue-dark);
  border-radius:18px;
  overflow:hidden;
  box-shadow:8px 8px 0 rgba(5,43,57,.16);
  transform:rotate(-1deg);
  z-index:8;
}

.hero-contact-box a{
  padding:16px 10px;
  text-align:center;
  color:var(--blue-dark);
  border-right:1px solid rgba(5,43,57,.16);
  transition:.25s ease;
}

.hero-contact-box a:last-child{
  border-right:none;
}

.hero-contact-box a:hover{
  background:var(--yellow);
}

.hero-contact-box .icon{
  display:block;
  font-size:1.7rem;
  margin-bottom:4px;
}

.hero-contact-box strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.1rem;
  line-height:1;
}

.hero-contact-box small{
  display:block;
  margin-top:5px;
  font-size:.78rem;
  font-weight:800;
  opacity:.78;
}

/* HERO RIGHT */

.hero-right{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 50%,rgba(255,255,255,.08),transparent 20%),
    linear-gradient(135deg,#07445c 0%,#052b39 100%);
  isolation:isolate;
}

.paper-rip{
  position:absolute;
  left:-42px;
  top:0;
  bottom:0;
  width:90px;
  background:#fff8ec;
  clip-path:polygon(
    0 0,
    58% 0,
    100% 8%,
    62% 18%,
    100% 28%,
    60% 40%,
    100% 50%,
    60% 62%,
    100% 76%,
    58% 90%,
    100% 100%,
    0 100%
  );
  z-index:2;
}

.hero-top-text{
  position:absolute;
  top:34px;
  left:50%;
  transform:translateX(-50%) rotate(-3deg);
  width:90%;
  z-index:20;
  font-family:var(--font-display);
  font-size:2.1rem;
  font-weight:800;
  color:#fff;
  text-align:center;
  transition:.35s;
}

.hero-top-text.is-changing{
  opacity:0;
  transform:translateX(-50%) translateY(-20px) rotate(-8deg);
}

.hero-big-text{
  position:absolute;
  top:82px;
  left:50%;
  transform:translateX(-50%);
  width:68%;
  max-width:620px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  font-family:var(--font-display);
  font-size:clamp(3.4rem,5.3vw,6.8rem);
  line-height:.88;
  color:var(--yellow);
  letter-spacing:-2px;
  white-space:normal;
  word-break:break-word;
  overflow-wrap:anywhere;
  text-shadow:0 7px 0 rgba(0,0,0,.18);
  z-index:4;
  transition:.35s;
}

.hero-big-text.is-changing{
  opacity:0;
  transform:translateX(-50%) translateY(-20px) scale(.92);
}

.hero-product{
  position:absolute;
  right:0;
  bottom:-5%;
  width:min(620px,42vw);
  margin:0;
  z-index:10;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  transition:.45s cubic-bezier(.2,.9,.25,1);
}

.hero-product.is-changing{
  transform:translateY(40px) rotate(4deg) scale(.9);
  opacity:.25;
}

.hero-product img{
  width:100%;
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
  object-position:right bottom;
  filter:drop-shadow(0 25px 35px rgba(0,0,0,.40));
}

.fresh-sticker{
  position:absolute;
  right:5%;
  top:56%;
  width:190px;
  height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:var(--font-display);
  font-size:2rem;
  line-height:.9;
  font-weight:900;
  color:var(--blue-dark);
  background:var(--yellow);
  clip-path:polygon(0 14%,100% 0,92% 42%,100% 100%,0 90%,8% 48%);
  transform:rotate(-5deg);
  z-index:15;
}

.fire-glow{
  position:absolute;
  right:-12%;
  bottom:-10%;
  width:420px;
  height:260px;
  background:radial-gradient(circle,rgba(255,120,0,.6),transparent 68%);
  filter:blur(12px);
  z-index:1;
}

.smoke{
  position:absolute;
  right:8%;
  top:36%;
  width:140px;
  height:180px;
  z-index:20;
}

.smoke i{
  position:absolute;
  bottom:0;
  width:30px;
  height:30px;
  border-radius:50%;
  background:rgba(255,255,255,.65);
  filter:blur(12px);
  animation:smoke 3.8s infinite ease-in;
}

.smoke i:nth-child(2){
  left:36px;
  animation-delay:.8s;
}

.smoke i:nth-child(3){
  left:72px;
  animation-delay:1.6s;
}

.smoke i:nth-child(4){
  left:108px;
  animation-delay:2.4s;
}

.food-particles{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:14;
}

.food-particles span{
  position:absolute;
  font-size:42px;
  filter:drop-shadow(0 12px 12px rgba(0,0,0,.22));
  animation:float 5s ease-in-out infinite;
}

.food-particles span:nth-child(1){left:18%;top:28%}
.food-particles span:nth-child(2){right:8%;top:14%;animation-delay:.5s}
.food-particles span:nth-child(3){left:18%;top:52%;animation-delay:1s}
.food-particles span:nth-child(4){left:17%;bottom:24%;animation-delay:1.5s}
.food-particles span:nth-child(5){right:14%;top:38%;animation-delay:2s}
.food-particles span:nth-child(6){right:32%;top:10%;animation-delay:2.5s}

/* SLIDER KONTROL */

.hero-controls{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:50;
  display:flex;
  align-items:center;
  gap:14px;
  padding:8px 12px;
  background:rgba(255,255,255,.88);
  border:3px solid var(--blue-dark);
  border-radius:999px;
  box-shadow:5px 5px 0 rgba(5,43,57,.16);
  backdrop-filter:blur(8px);
}

.hero-prev,
.hero-next{
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:var(--blue-dark);
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-dots{
  display:flex;
  gap:8px;
  align-items:center;
}

.hero-dots button{
  width:11px;
  height:11px;
  padding:0;
  border:none;
  border-radius:999px;
  background:rgba(5,43,57,.25);
  transition:.25s ease;
}

.hero-dots button.active{
  width:34px;
  background:var(--yellow);
  border:2px solid var(--blue-dark);
}

/* MARQUEE */

.marquee{
  height:var(--marquee);
  display:flex;
  align-items:center;
  background:var(--yellow);
  color:var(--blue-dark);
  border-top:4px solid var(--blue-dark);
  border-bottom:4px solid var(--blue-dark);
  overflow:hidden;
}

.marquee-track{
  display:inline-flex;
  align-items:center;
  gap:28px;
  white-space:nowrap;
  animation:marquee 26s linear infinite;
}

.marquee span,
.marquee b{
  font-family:var(--font-display);
  font-weight:900;
  font-size:1.05rem;
  text-transform:uppercase;
}

/* MENU */

.menu-showcase{
  padding:96px 0;
  background:
    radial-gradient(circle at 10% 12%,rgba(255,196,0,.2),transparent 20%),
    radial-gradient(circle at 88% 85%,rgba(5,63,84,.08),transparent 18%),
    var(--paper);
}

.section-head{
  text-align:center;
  margin-bottom:46px;
}

.section-head span{
  display:inline-block;
  background:var(--yellow);
  color:var(--blue-dark);
  border:4px solid var(--blue-dark);
  box-shadow:5px 5px 0 var(--blue-dark);
  border-radius:999px;
  padding:10px 24px;
  font-family:var(--font-display);
  font-weight:900;
  text-transform:uppercase;
}

.section-head h2{
  margin:24px auto 0;
  max-width:820px;
  font-family:var(--font-display);
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:.9;
  color:var(--blue-dark);
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.menu-card{
  position:relative;
  background:#fff;
  border:4px solid var(--blue-dark);
  border-radius:28px;
  overflow:hidden;
  box-shadow:10px 10px 0 rgba(5,43,57,.16);
  transform:rotate(var(--rotate,0deg));
  transition:.28s cubic-bezier(.2,.9,.25,1);
}

.menu-card:nth-child(1){--rotate:-1.5deg}
.menu-card:nth-child(2){--rotate:1deg}
.menu-card:nth-child(3){--rotate:-.8deg}
.menu-card:nth-child(4){--rotate:1.3deg}

.menu-card:hover{
  transform:translateY(-12px) rotate(0deg);
  box-shadow:14px 18px 0 rgba(5,43,57,.2);
}

.menu-card img{
  width:100%;
  height:245px;
  object-fit:cover;
  border-bottom:4px solid var(--blue-dark);
}

.menu-card strong{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
  background:var(--yellow);
  color:var(--blue-dark);
  border:3px solid var(--blue-dark);
  border-radius:999px;
  padding:8px 15px;
  font-family:var(--font-display);
  font-size:1.05rem;
  box-shadow:4px 4px 0 rgba(5,43,57,.2);
}

.menu-card h3{
  margin:22px 22px 8px;
  font-family:var(--font-display);
  font-size:1.55rem;
  line-height:1;
  color:var(--blue);
}

.menu-card p{
  margin:0 22px 26px;
  color:var(--muted);
  line-height:1.5;
}

/* ANIMATIONS */

@keyframes headlinePunch{
  0%{
    opacity:0;
    transform:translateY(34px) scale(.92) rotate(-1deg);
    filter:blur(5px);
  }

  65%{
    opacity:1;
    transform:translateY(-5px) scale(1.025) rotate(0deg);
    filter:blur(0);
  }

  100%{
    transform:none;
  }
}

@keyframes copyRise{
  0%{
    opacity:0;
    transform:translateY(18px);
  }

  100%{
    opacity:1;
    transform:none;
  }
}

@keyframes buttonPop{
  0%{
    opacity:0;
    transform:translateY(18px) scale(.94);
  }

  75%{
    opacity:1;
    transform:translateY(-3px) scale(1.02);
  }

  100%{
    transform:none;
  }
}

@keyframes float{
  0%,100%{
    transform:translateY(0) rotate(-12deg);
  }

  50%{
    transform:translateY(-24px) translateX(16px) rotate(18deg);
  }
}

@keyframes smoke{
  0%{
    opacity:0;
    transform:translateY(0) scale(.5);
  }

  25%{
    opacity:.85;
  }

  100%{
    opacity:0;
    transform:translateY(-130px) scale(1.7);
  }
}

@keyframes marquee{
  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width:1200px){
  .hero{
    grid-template-columns:1fr;
    height:auto;
    min-height:auto;
  }

  .hero-left{
    padding:60px 32px 40px;
  }

  .hero-contact-box{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin-top:30px;
  }

  .hero-right{
    min-height:700px;
  }

  .hero-product{
    width:min(92vw,720px);
    right:0;
    bottom:-4%;
  }

  .hero-product img{
    max-height:620px;
  }

  .hero-big-text{
    top:60px;
    width:78%;
    max-width:90%;
    font-size:clamp(4rem,9vw,6.2rem);
  }

  .hero-top-text{
    top:22px;
  }

  .fresh-sticker{
    width:160px;
    height:96px;
    font-size:1.45rem;
  }

  .menu-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  :root{
    --header:86px;
    --marquee:46px;
  }

  .site-header{
    padding:0 18px;
  }

  .brand img{
    width:72px;
    height:72px;
  }

  .brand strong{
    font-size:1.3rem;
  }

  .brand small{
    font-size:.55rem;
    letter-spacing:2px;
  }

  .main-nav{
    position:fixed;
    top:86px;
    left:0;
    right:0;
    background:#fff;
    display:none;
    flex-direction:column;
    padding:25px;
    border-top:1px solid rgba(0,0,0,.08);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    z-index:999;
  }

  .main-nav.open{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .call-btn{
    display:none;
  }

  .hero-slide h1{
    font-size:3.3rem;
    letter-spacing:-2px;
  }

  .hero-slide p{
    font-size:1rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-contact-box{
    grid-template-columns:1fr;
    transform:none;
  }

  .hero-contact-box a{
    border-right:none;
    border-bottom:1px solid rgba(5,43,57,.12);
  }

  .hero-contact-box a:last-child{
    border-bottom:none;
  }

  .hero-right{
    min-height:520px;
  }

  .hero-product{
    width:96vw;
    right:-10px;
    bottom:-10px;
  }

  .hero-product img{
    max-height:420px;
  }

  .hero-big-text{
    font-size:3.4rem;
    top:54px;
    width:84%;
    max-width:88%;
    letter-spacing:-1px;
  }

  .hero-top-text{
    top:16px;
    font-size:1.3rem;
  }

  .food-particles span{
    font-size:28px;
  }

  .fresh-sticker{
    width:120px;
    height:74px;
    font-size:1rem;
    right:12px;
    top:58%;
  }

  .smoke{
    display:none;
  }

  .hero-controls{
    bottom:10px;
    gap:8px;
  }

  .hero-prev,
  .hero-next{
    width:30px;
    height:30px;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .menu-card{
    transform:none!important;
  }
}/* ANA SAYFA DEVAM ALANLARI */

.popular-section{
  padding:110px 0;
  background:linear-gradient(180deg,#fffaf0,#fff2d3);
}

.section-kicker{
  display:inline-flex;
  background:var(--yellow);
  color:var(--blue-dark);
  border:4px solid var(--blue-dark);
  box-shadow:6px 6px 0 var(--blue-dark);
  border-radius:999px;
  padding:12px 26px;
  font-family:var(--font-display);
  font-weight:900;
  transform:rotate(-2deg);
}

.split-head{
  margin-top:30px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:end;
}

.split-head h2,
.toast-copy h2{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(3rem,6vw,6.5rem);
  line-height:.86;
  color:var(--blue-dark);
  letter-spacing:-3px;
}

.split-head p,
.toast-copy p{
  font-size:1.15rem;
  line-height:1.65;
  color:#39555f;
}

.popular-grid{
  margin-top:55px;
  display:grid;
  grid-template-columns:1.25fr .9fr .9fr;
  gap:26px;
}

.popular-card{
  position:relative;
  min-height:430px;
  border:4px solid var(--blue-dark);
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  box-shadow:12px 12px 0 rgba(5,43,57,.18);
  transition:.3s;
}

.popular-card:hover{
  transform:translateY(-12px);
}

.popular-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.popular-content{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,250,240,.92);
  backdrop-filter:blur(12px);
  border:3px solid var(--blue-dark);
}

.popular-content span{
  font-family:var(--font-display);
  font-weight:900;
  color:var(--yellow-dark);
}

.popular-content h3{
  margin:8px 0 0;
  font-family:var(--font-display);
  font-size:2rem;
  color:var(--blue-dark);
}

.popular-content p{
  margin:10px 0 0;
  color:#39555f;
}

.toast-section{
  padding:120px 0;
  background:var(--blue-dark);
  color:#fff;
}

.toast-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.toast-copy h2{
  color:#fff;
  margin-top:30px;
}

.toast-copy p{
  color:#d8eef4;
  margin:28px 0;
}

.toast-visual{
  position:relative;
  border:4px solid #fff;
  border-radius:42px;
  overflow:hidden;
  transform:rotate(2deg);
  box-shadow:18px 18px 0 var(--yellow);
}

.toast-visual img{
  width:100%;
  height:620px;
  object-fit:cover;
}

.toast-sticker{
  position:absolute;
  right:30px;
  bottom:30px;
  background:var(--yellow);
  color:var(--blue-dark);
  border:4px solid var(--blue-dark);
  box-shadow:7px 7px 0 var(--blue-dark);
  padding:22px 32px;
  font-family:var(--font-display);
  font-size:2rem;
  line-height:.9;
  font-weight:900;
  transform:rotate(-6deg);
  text-align:center;
}

.why-section{
  padding:115px 0;
  background:#fffaf0;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.why-grid article{
  min-height:290px;
  background:#fff;
  border:4px solid var(--blue-dark);
  border-radius:28px;
  padding:28px;
  box-shadow:8px 8px 0 rgba(5,43,57,.16);
  transition:.25s;
}

.why-grid article:hover{
  transform:translateY(-10px);
  background:var(--yellow);
}

.why-grid strong{
  font-family:var(--font-display);
  font-size:3rem;
  color:var(--yellow-dark);
}

.why-grid h3{
  margin:22px 0 12px;
  font-family:var(--font-display);
  font-size:1.8rem;
  color:var(--blue-dark);
}

.why-grid p{
  color:#39555f;
}

@media(max-width:1100px){
  .split-head,
  .toast-wrap{
    grid-template-columns:1fr;
  }

  .popular-grid{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .popular-section,
  .toast-section,
  .why-section{
    padding:75px 0;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .toast-visual img{
    height:420px;
  }
}/* FULL SCREEN SECTION REVIZE */

.popular-section,
.toast-section,
.why-section,
.menu-showcase{
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.popular-section{
  padding:70px 0;
}

.toast-section{
  padding:70px 0;
}

.why-section{
  padding:70px 0;
}

.menu-showcase{
  padding:70px 0;
}

.split-head{
  margin-top:22px;
}

.split-head h2,
.toast-copy h2,
.section-head h2{
  font-size:clamp(2.8rem,5vw,5.4rem);
}

.popular-grid{
  margin-top:36px;
}

.popular-card{
  min-height:360px;
}

.toast-visual img{
  height:520px;
}

.why-grid{
  margin-top:34px;
}

.why-grid article{
  min-height:250px;
}

/* FOOTER */

.mico-footer{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 12% 20%,rgba(255,196,0,.24),transparent 22%),
    linear-gradient(135deg,#052b39,#073f54);
  color:#fff;
  overflow:hidden;
  position:relative;
  padding:80px 0;
}

.mico-footer::before{
  content:"KUMRUCU MİÇO";
  position:absolute;
  left:-4vw;
  bottom:4vh;
  font-family:var(--font-display);
  font-size:12vw;
  line-height:.8;
  font-weight:900;
  color:rgba(255,255,255,.04);
  white-space:nowrap;
}

.footer-wrap{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:stretch;
}

.footer-card{
  background:rgba(255,255,255,.08);
  border:3px solid rgba(255,255,255,.22);
  border-radius:34px;
  padding:34px;
  backdrop-filter:blur(12px);
  box-shadow:14px 14px 0 rgba(0,0,0,.16);
}

.footer-card .section-kicker{
  color:var(--blue-dark);
}

.footer-card h2{
  margin:28px 0 18px;
  font-family:var(--font-display);
  font-size:clamp(3rem,5.6vw,6rem);
  line-height:.85;
  color:#fff;
}

.footer-card p{
  color:#d8eef4;
  font-size:1.08rem;
  line-height:1.65;
}

.footer-actions{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.footer-actions a{
  min-height:118px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:#fff;
  color:var(--blue-dark);
  border:4px solid var(--blue-dark);
  border-radius:24px;
  box-shadow:6px 6px 0 var(--yellow);
  transition:.25s ease;
}

.footer-actions a:hover{
  transform:translateY(-8px) rotate(-1deg);
  background:var(--yellow);
}

.footer-actions span{
  font-size:2rem;
  margin-bottom:8px;
}

.footer-actions strong{
  font-family:var(--font-display);
  font-size:1.2rem;
  line-height:1;
}

.footer-actions small{
  margin-top:5px;
  font-weight:800;
  opacity:.78;
}

.footer-map{
  position:relative;
  min-height:620px;
  border:4px solid #fff;
  border-radius:34px;
  overflow:hidden;
  box-shadow:18px 18px 0 var(--yellow);
  transform:rotate(1.2deg);
}

.footer-map iframe{
  width:100%;
  height:100%;
  min-height:620px;
  border:0;
  filter:saturate(1.15) contrast(1.05);
}

.footer-map-badge{
  position:absolute;
  left:24px;
  top:24px;
  z-index:3;
  background:var(--yellow);
  color:var(--blue-dark);
  border:4px solid var(--blue-dark);
  box-shadow:6px 6px 0 rgba(0,0,0,.22);
  border-radius:999px;
  padding:12px 22px;
  font-family:var(--font-display);
  font-weight:900;
}

.footer-bottom{
  margin-top:24px;
  color:#b9dde7;
  font-size:.9rem;
}

/* RESPONSIVE FULL SCREEN */

@media(max-width:1100px){
  .popular-section,
  .toast-section,
  .why-section,
  .menu-showcase,
  .mico-footer{
    min-height:auto;
    overflow:visible;
  }

  .footer-wrap{
    grid-template-columns:1fr;
  }

  .footer-actions{
    grid-template-columns:1fr;
  }

  .footer-map,
  .footer-map iframe{
    min-height:420px;
  }
}

@media(max-width:640px){
  .popular-card{
    min-height:420px;
  }

  .toast-visual img{
    height:380px;
  }

  .mico-footer{
    padding:60px 0;
  }

  .footer-card{
    padding:24px;
  }
}/* POPÜLER MENÜLER EKRANA SIĞDIRMA */

.popular-section{
  min-height:calc(100vh - var(--header));
  padding:42px 0 48px;
}

.popular-section .section-kicker{
  padding:8px 20px;
  font-size:.95rem;
}

.popular-section .split-head{
  margin-top:18px;
  gap:28px;
}

.popular-section .split-head h2{
  font-size:clamp(2.8rem,4.4vw,4.8rem);
  line-height:.86;
}

.popular-section .split-head p{
  font-size:1rem;
  line-height:1.5;
}

.popular-grid{
  margin-top:30px;
  gap:22px;
}

.popular-card{
  min-height:0;
  height:clamp(390px,48vh,520px);
}

.popular-content{
  left:18px;
  right:18px;
  bottom:18px;
  padding:18px;
  border-radius:20px;
}

.popular-content h3{
  font-size:clamp(1.5rem,2vw,2rem);
}

.popular-content p{
  font-size:.95rem;
  line-height:1.35;
}

/* SEO / AI okunabilir yerel bilgi alanı */
.seo-local-block{
  padding:34px 0;
  background:#fffaf0;
  color:var(--blue-dark);
}
.seo-local-block h2{
  margin:0 0 10px;
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3vw,3rem);
  line-height:.95;
}
.seo-local-block p{
  margin:0;
  max-width:980px;
  color:#39555f;
  line-height:1.65;
}

.seo-link-hub{
  padding:42px 0;
  background:var(--blue-dark);
  color:#fff;
}
.seo-link-hub h2{
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,4rem);
  line-height:.9;
  margin:0 0 22px;
}
.seo-link-hub div div{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.seo-link-hub a{
  background:var(--yellow);
  color:var(--blue-dark);
  border:3px solid #fff;
  border-radius:999px;
  padding:10px 16px;
  font-family:var(--font-display);
  font-weight:900;
}
