/*-----------------------------------*\
  #style.css
\*-----------------------------------*/



/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --rich-black-fogra-29: hsl(210, 26%, 7%);
  --champagne-pink_20: hsla(23, 61%, 86%, 0.2);
  --independence_30: hsla(245, 17%, 29%, 0.3);
  --gray-x-11-gray: hsl(0, 0%, 73%);
  --champagne-pink: hsl(23, 61%, 86%);
  --spanish-gray: hsl(0, 0%, 60%);
  --sonic-silver: hsl(0, 0%, 47%);
  --deep-saffron: hsl(32, 100%, 59%);
  --dark-orange: hsl(28, 100%, 58%);
  --desert-sand: hsl(23, 49%, 82%);
  --isabelline: hsl(38, 44%, 96%);
  --gainsboro: hsl(0, 0%, 87%);
  --tangerine: hsl(31, 84%, 50%);
  --cinnabar: hsl(3, 90%, 55%);
  --black_95: hsla(0, 0%, 0%, 0.95);
  --cultured: hsl(0, 0%, 93%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 27%);

  /**
   * typography
   */

  --ff-shadows-into-light: 'Shadows Into Light', cursive;
  --ff-roboto: 'Roboto', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-1: 3.2rem;
  --fs-2: 2.2rem;
  --fs-3: 1.8rem;
  --fs-4: 1.4rem;
  --fs-5: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * shadow
   */

  --shadow-1: 0 1px 4px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0 1px 2px hsla(0, 0%, 0%, 0.2);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

  /**
   * clip path
   */

  --clip-path-1: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
  --clip-path-2: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

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

a,
img,
svg,
span,
input,
select,
button,
textarea,
ion-icon { display: block; }

img { height: auto; }

input,
select,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.active { overflow: hidden; }

:focus-visible { outline-offset: 4px; }

::selection {
  background-color: var(--deep-saffron);
  color: var(--white);
}

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background-color: var(--cultured); }

::-webkit-scrollbar-thumb { background-color: var(--deep-saffron); }

::-webkit-scrollbar-thumb:hover { background-color: var(--tangerine); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.h1,
.h2,
.h3,
.h4 {
  font-family: var(--ff-rubik);
  color: var(--rich-black-fogra-29);
  line-height: 1.2;
  letter-spacing: -1px;
}

.h1,
.h2 { font-size: var(--fs-1); }

.h2,
.h3,
.h4 { font-weight: var(--fw-600); }

.h3 { font-size: var(--fs-2); }

.h4 { font-size: var(--fs-3); }

.btn {
  background-color: var(--bg-color, var(--deep-saffron));
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  height: var(--height, 45px);
  padding-inline: var(--padding-inline, 35px);
  transition: var(--transition-1);
}

.btn-hover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: 1px;
  height: 1px;
  transform: translate(-50%, 51%) scale(var(--scale, 1));
  border-radius: 50%;
  background-color: var(--rich-black-fogra-29);
  z-index: -1;
  transition: var(--transition-2);
}

.btn-hover:is(:hover, :focus)::after { --scale: 500; }

.section { padding-block: var(--section-padding); }

.section.white { background-color: var(--isabelline); }

.section-divider { position: relative; }

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-repeat: repeat no-repeat;
  background-position: bottom;
  bottom: -1px;
}

.section-divider.white::after { background-image: url("../images/shape-white.png"); }

.section-divider.gray::after { background-image: url("../images/shape-grey.png"); }

.w-100 { width: 100%; }

.has-scrollbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 40px;
}

.has-scrollbar::-webkit-scrollbar { height: 12px; }

.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 40px); }

.has-scrollbar::-webkit-scrollbar-track {
  outline: 2px solid var(--deep-saffron);
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured);
  border-radius: 50px;
}

.section-title > .span {
  display: inline-block;
  color: var(--deep-saffron);
}

.abs-img {
  position: absolute;
  transform: scale(1);
}

.scale-up-anim { animation: scaleUp 1s linear infinite alternate; }

@keyframes scaleUp {
  0% { transform: scale(1);}
  100% { transform: scale(1.05); }
}

.section-subtitle {
  color: var(--cinnabar);
  font-family: var(--ff-rubik);
  text-align: center;
  font-weight: var(--fw-500);
}

.badge {
  position: absolute;
  background: var(--bg-color, var(--cinnabar));
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  padding: var(--padding-block, 2px) 15px;
}

.rating-wrapper {
  display: flex;
  gap: 5px;
  color: var(--deep-saffron);
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/* .navbar, */
.header-btn-group .btn { display: none; }

.header {
  --color: var(--white);
  --btn-color: var(--champagne-pink);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  border-block-end: 1px solid var(--champagne-pink_20);
  z-index: 4;
}

.header.active {
  --color: var(--rich-black-fogra-29);
  --btn-color: var(--rich-black-fogra-29);

  position: fixed;
  top: -86px;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--color);
  font-family: var(--ff-rubik);
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  letter-spacing: -2px;
}

.logo .span {
  display: inline-block;
  color: var(--deep-saffron);
}

.header-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn {
  color: var(--btn-color);
  font-size: 20px;
}

.search-btn ion-icon { --ionicon-stroke-width: 50px; }

.nav-toggle-btn {
  display: grid;
  gap: 4px;
}

.line {
  width: 10px;
  height: 3px;
  background-color: var(--btn-color);
  border-radius: 5px;
  transition: var(--transition-1);
}

.line.middle { width: 20px; }

.line.bottom { margin-left: auto; }

.nav-toggle-btn.active .line.top { transform: translate(1px, 3px) rotate(45deg); }

.nav-toggle-btn.active .line.middle { transform: rotate(-45deg); }

.nav-toggle-btn.active .line.bottom { transform: translate(-1px, -3px) rotate(45deg); }

.navbar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  background-color: var(--white);
  padding-inline: 20px;
  box-shadow: var(--shadow-1);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: var(--transition-1);
}

.navbar.active {
  height: 236px;
  visibility: visible;
}

.navbar-list { margin-block: 10px; }

.nav-item:not(:last-child) { border-block-end: 1px solid hsla(0, 0%, 0%, 0.04); }

.navbar-link {
  color: var(--rich-black-fogra-29);
  font-size: var(--fs-4);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-500);
  padding: 10px 15px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--dark-orange); }









/*-----------------------------------*\
 #HERO
\*-----------------------------------*/

.hero-banner { 
  display: none; 
}

.hero {
  position: relative;
  padding-block: 145px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-subtitle {
  color: var(--dark-orange);
  font-family: var(--ff-shadows-into-light);
  font-size: var(--fs-3);
  letter-spacing: 1px;
  margin-block-end: 25px;
}

.hero-title {
  color: var(--champagne-pink);
  margin: 0 auto;
}

.hero-text {
  color: var(--desert-sand);
  margin: 15px auto 30px;
  max-width: 600px; /* ch yerine pixel kullanıyoruz */
  text-align: center;
  padding: 0 15px;
  line-height: 1.6;
}

.order-btn {
  display: inline-block;
  background-color: var(--deep-saffron);
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  padding: 12px 35px;
  border-radius: 4px;
  transition: var(--transition-1);
}

.order-btn:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--black);
}

/* Logo'nun mevcut stillerini koruyoruz */
.hero-logo {
  position: absolute;
  top: 50%;
  right: 03%;
  transform: translateY(-50%);
  width: 30%;
  max-width: 400px;
  opacity: 1;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(50% at center);
}




/*-----------------------------------*\
  #PROMO
\*-----------------------------------*/

.promo {
  position: relative;
  margin-top: -30px; /* Üstteki boşluğu kapatmak için negatif margin */
  padding-top: 60px;
  z-index: 2;
}

.promo .container {
  position: relative;
  z-index: 3;
}

.promo-card {
  position: relative;
  background-color: var(--white);
  text-align: center;
  padding: 60px 45px;
  box-shadow: var(--shadow-2);
  z-index: 1;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--deep-saffron);
  clip-path: var(--clip-path-1);
  transform: scaleY(0.3);
  transform-origin: bottom;
  z-index: -1;
  transition: var(--transition-1);
}

.promo-card:hover::after {
  clip-path: var(--clip-path-2);
  transform: scaleY(1);
}

.promo-card .card-icon svg { margin-inline: auto; }

.promo-card:hover .card-icon path { fill: var(--white); }

.promo-card:hover :is(.card-title, .card-text) { color: var(--white); }

.promo-card .card-title {
  margin-block: 15px;
  transition: var(--transition-1);
}

.promo-card .card-text {
  margin-block-end: 15px;
  transition: var(--transition-1);
}

.promo-card .card-banner {
  max-width: max-content;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}

.promo-item {
  min-width: 100%;
  scroll-snap-align: start;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about { text-align: center; }

.about-banner {
  position: relative;
  aspect-ratio: 1 / 0.9;
}

.about-img {
  max-width: max-content;
  margin-inline: auto;
}

.about-banner .abs-img {
  top: 0;
  left: 100px;
}

.about .section-title {
  max-width: 15ch;
  margin-block: 40px 10px;
  margin-inline: auto;
}

.about-list { margin-block: 20px 30px; }

.about-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.about-item:not(:last-child) { margin-block-end: 10px; }

.about-item ion-icon {
  background-color: var(--deep-saffron);
  color: var(--white);
  font-size: 1.2rem;
  padding: 4px;
  border-radius: 50%;
  --ionicon-stroke-width: 110px;
}

.about-item .span {
  color: var(--rich-black-fogra-29);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-500);
}

.about .btn { margin-inline: auto; }








/*-----------------------------------*\
  #BANNER
\*-----------------------------------*/

.banner { color: var(--white); }

.banner-list {
  display: grid;
  gap: 10px;
}

.banner-lg { height: 430px; }

.banner-sm { height: 200px; }

.banner-md { height: 240px; }

.banner-card {
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.banner-card .banner-img {
  background-color: var(--gainsboro);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: var(--transition-2);
}

.banner-card:is(:hover, :focus-within) .banner-img { transform: scale(1.05); }

.banner-item-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  right: 20px;
  max-height: calc(100% - 30px);
}

.banner-md .banner-item-content { left: 50%; }

.banner-subtitle,
.banner-title {
  font-family: var(--ff-rubik);
  font-weight: var(--fw-600);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.banner-lg .banner-subtitle {
  font-size: var(--fs-2);
  margin-block-end: 10px;
}

.banner-lg .banner-title {
  font-size: var(--fs-1);
  max-width: 16ch;
}

:is(.banner-md, .banner-sm) .banner-title {
  font-size: var(--fs-2);
  max-width: 10ch;
}

.banner-card .banner-text { margin-block: 10px 15px; }

.banner-card .btn {
  --bg-color: var(--dark-orange);
  --height: 40px;
  --padding-inline: 25px;
}

.banner-card .btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29); }








/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer { overflow: hidden; }

.footer-top {
  position: relative;
  padding-block: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  border-block-end: 2px solid var(--independence_30);
}

/* .footer-top::after {
  content: url(../images/delivery-boy.svg);
  position: absolute;
  bottom: -11px;
  left: -160px;
  width: 160px;
  animation: running-cycle 20s linear infinite;
} */



@keyframes running-cycle {
  0% { left: -160px; }
  100% { left: 100%; }
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.footer .logo {
  color: var(--rich-black-fogra-29);
  font-size: 3.2rem;
}

.footer-text { margin-block: 15px 25px; }

.social-list {
  display: flex;
  gap: 5px;
}

.social-link {
  background-color: var(--dark-orange);
  color: var(--white);
  font-size: 1.5rem;
  padding: 10px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) { background-color: var(--rich-black-fogra-29); }

.footer-list-title {
  position: relative;
  max-width: max-content;
  color: var(--rich-black-fogra-29);
  font-family: var(--ff-rubik);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  letter-spacing: -1px;
  margin-block-end: 20px;
}

.footer-list-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 15px);
  background-color: var(--deep-saffron);
  width: 40px;
  height: 4px;
  border-inline-end: 5px solid var(--deep-saffron);
  box-shadow: inset -5px 0 0 var(--white);
}

.footer-list > li:not(:last-child) { margin-block-end: 15px; }

.footer-list address { max-width: 20ch; }

.footer-form {
  background-color: var(--white);
  padding: 30px;
  border: 1px solid var(--cultured);
  box-shadow: var(--shadow-2);
}

.input-wrapper {
  display: grid;
  gap: 10px;
  margin-block-end: 10px;
}

.input-field {
  color: var(--spanish-gray);
  font-size: var(--fs-4);
  border: 1px solid var(--cultured);
  padding: 8px 12px;
}

.input-field::placeholder { color: var(--spanish-gray); }

.input-field::-webkit-calendar-picker-indicator { opacity: 0.5; }

textarea.input-field {
  min-height: 50px;
  max-height: 150px;
  height: 100px;
  resize: vertical;
  margin-block-end: 10px;
}

.footer-form .btn {
  font-size: var(--fs-15);
  --height: 40px;
  --padding-inline: 25px;
}

.footer-form .btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29); }

.footer-bottom {
  padding-block: 20px;
  text-align: center;
}

.copyright-link { display: inline-block; }

.copyright-link:is(:hover, :focus) { text-decoration: underline; }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--deep-saffron);
  color: var(--white);
  padding: 15px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29); }





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 480px screen
 */

@media (min-width: 480px) {

  /**
   * HEADER
   */

  .header-btn-group .btn {
    display: block;
    --bg-color: var(--dark-orange);
  }
  
}





/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
  }

  .has-scrollbar > li { min-width: calc(50% - 5px); }



  /**
   * HERO
   */

  .hero-title { --fs-1: 4.2rem; }



  /**
   * FOOTER
   */

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

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }



  /**
   * HERO
   */

  .hero {
    position: relative;
    text-align: left;
    overflow: hidden;
    z-index: 1;
  }

  .hero-content > :is(*, .btn) { margin-inline: 0; }

  .hero-banner {
    display: block;
    position: absolute;
    top: calc(50% + 86px);
    transform: translateY(-50%);
    right: 50px;
    max-width: 40%;
    aspect-ratio: 1 / 0.9;
  }

  .hero-img {
    position: absolute;
    bottom: 0;
  }

  .hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero-bg-shape.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
    z-index: -1;
  }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about { text-align: left; }

  .about .section-title { margin-block-start: 0; }

  .about :is(.section-title, .btn) { margin-inline: 0; }

  .about-item { justify-content: flex-start; }




 



  /**
   * BANNER
   */

  .banner-list { grid-template-columns: repeat(4, 1fr); }

  .banner-lg {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .banner-md {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    height: 220px;
  }





  /**
   * FOOTER
   */

  .input-wrapper { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .has-scrollbar > li { min-width: calc(33.33% - 6.66px); }

  .h2 { --fs-1: 4.2rem; }



  /**
   * HEADER
   */

  .nav-toggle-btn { display: none; }

  .header .container { gap: 20px; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    margin-block: 0;
    display: flex;
    gap: 5px;
  }

  .nav-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    --fs-4: 1.5rem;
    color: var(--btn-color);
    letter-spacing: -0.5px;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 660px;
    display: grid;
    align-items: center;
  }

  .hero-subtitle { --fs-3: 3.2rem; }

  .hero-title {
    --fs-1: 7rem;
    letter-spacing: -2.5px;
  }

  .hero-text { font-size: var(--fs-3); }

  .hero-banner {
    max-width: 45%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }

  .hero-img-bg { transform: scale(1.4) translate(20px, -20px); }




  /**
   * BANNER
   */

  .banner-lg .banner-title {
    --fs-1: 3.6rem;
    letter-spacing: -2px;
  }

  :is(.banner-md, .banner-sm) .banner-title,
  .banner-lg .banner-subtitle { --fs-2: 3.2rem; }






  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 1fr 1fr 1.6fr; }

  .footer-form { margin-block-start: -170px; }



  /**
   * BACK TO TOP
   */

  .back-top-btn {
    bottom: 20px;
    right: 30px;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HERO
   */

  .hero { min-height: 770px; }


  /**
   * BANNER
   */

  .banner-md .banner-item-content { left: 55%; }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; }

}

/*-----------------------------------*\
 #MENU PAGE
\*-----------------------------------*/

.menu-page {
  background-color: var(--isabelline);
  margin-top: -30px;
  position: relative;
  z-index: 1;
 }
 
 .menu-page .container {
  padding-top: 20px;
 }
 
 /* Hero/Header stili */
 .hero {
  position: relative;
  text-align: center;
  padding-block: 145px 60px;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
 }
 
 .hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero-bg-shape.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  pointer-events: none;
  z-index: -1;
 }
 
 .hero-title {
  color: var(--champagne-pink);
  font-family: var(--ff-rubik);
  font-size: 5rem;
  font-weight: var(--fw-700);
  margin-bottom: 80px;
 }
 
/* Kategori Butonları */
.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  padding-top: 0; /* 20px'ten 0'a düşürdük */
}
 
 .menu-button {
  padding: 15px 45px;
  border: 4px solid #780b10; /* border rengi değişti */
  background: transparent;
  color: #780b10; /* yazı rengi değişti */
  font-size: 2.4rem;
  font-weight: var(--fw-500);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-1);
 }
 
 .menu-button:hover,
 .menu-button.active {
  background: #780b10; /* hover/active rengi değişti */
  color: var(--white);
  transform: translateY(-3px);
 }
 
 /* Kategori Başlıkları */
 .category-title {
  color: #780b10;
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--ff-rubik);
 }
 
 .category-divider {
  width: 100%;
  height: 1px;
  background-color: #780b10;
  margin: 40px 0;
 }
 
 /* Menu Grid ve Kartlar */
 .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
 }
 
 .menu-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  cursor: pointer;
  position: relative;
  height: 100%;
 }
 
 .menu-item:hover {
  transform: translateY(-5px);
 }
 
 .item-content {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: auto;
 }
 
 .item-img {
  width: 100%;
  padding-top: 133.33%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
 }
 
 .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
 }
 
 .item-info {
  padding: 15px 0;
  margin-bottom: 40px;
 }
 
 .item-title {
  font-size: 2.4rem;
  color: var(--rich-black-fogra-29);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-600);
  margin-bottom: 12px;
 }
 
 .item-desc {
  color: var(--sonic-silver);
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 15px;
 }
 
 .item-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--deep-saffron);
  color: var(--white);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-600);
  font-size: 2.4rem;
  padding: 8px 20px;
  border-radius: 20px;
 }
 
 /* Modal Styles */
 .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: auto;
  animation: fadeIn 0.3s;
 }
 
 .modal-content {
  position: relative;
  background-color: var(--white);
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
  animation: slideIn 0.3s;
 }
 
 .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--sonic-silver);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-1);
  z-index: 10;
 }
 
 .close-modal:hover {
  color: var(--rich-black-fogra-29);
 }
 
 .modal-img {
  width: 70%;
  padding-top: 93.33%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 20px;
 }
 
 .modal-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
 }
 
 .modal-info {
  text-align: center;
  padding: 20px;
 }
 
 .modal-title {
  font-size:4rem;
  color: var(--rich-black-fogra-29);
  margin-bottom: 15px;
 }
 
 .modal-desc {
  font-size: 2.2rem;
  color: var(--sonic-silver);
  margin-bottom: 15px;
  line-height: 1.6;
 }
 
 .modal-price {
  font-size: 3.5rem;
  color: var(--deep-saffron);
  font-weight: var(--fw-600);
 }
 
 /* Placeholder Image */
 .item-img img[src*="placeholder"] {
  background-color: var(--gainsboro);
  object-fit: cover;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 
 /* Animasyonlar */
 @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
 }
 
 @keyframes slideIn {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
 }
 
 /* Menu Section Responsive */
 @media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
  }

  .hero-logo {
    width: 30%;
    opacity: 0.01;
    position: absolute;
     top: 50%;
    right: 03%;

  }
 
  .menu-buttons {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .menu-button {
    width: calc(50% - 10px);
    padding: 12px 25px;
    font-size: 1.2rem;
  }
 
  .category-title {
    font-size: 2.2rem;
  }
 
  .menu-grid {
    grid-template-columns: 1fr;
  }
 
  .item-img {
    padding-top: 133.33%;
  }
  
  .item-title {
    font-size: 2rem;
  }
 
  .item-desc {
    font-size: 1.3rem;
  }
 
  .item-price {
    font-size: 1.6rem;
    padding: 6px 15px;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: 400px;
    padding: 15px;
  }
 
  .modal-img {
    width: 80%;
    padding-top: 106.66%;
  }
  
  .modal-title {
    font-size: 2.2rem;
  }
 
  .modal-desc {
    font-size: 1.4rem;
  }
 }
 
 @media (min-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
 }

 /*-----------------------------------*\
  #ABOUT PAGE
\*-----------------------------------*/

.about-page {
  background-color: var(--isabelline);
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.about-page .container {
  padding-top: 30px;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.slider-container {
  position: relative;
  max-width: 600px; /* Konteyner genişliğini azalttık */
  margin: 0 auto 40px;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-top: 133.33%; /* 201/151 ≈ 133.33% - aspect ratio korunması için */
}

.slide {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 151/201; /* Belirtilen oran */
}

/* Slider düğmelerini resme göre konumlandırma */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px; /* Düğmeleri biraz küçülttük */
  background-color: rgba(120, 11, 16, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.slider-btn:hover {
  background-color: rgba(120, 11, 16, 0.9);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-1);
}

.dot.active {
  background-color: #780b10;
}

/* About Text */
.about-text {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: var(--rich-black-fogra-29);
}

/* Responsive */
@media (max-width: 768px) {

  .slider-container {
    max-width: 300px; /* Mobilde daha küçük */
  }

  .slide img {
    height: 400px;
  }
  
  .about-text {
    padding: 15px;
  }
  
  .about-text p {
    font-size: 1.4rem;
  }
}


/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/

.contact-page {
  background-color: var(--isabelline);
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.contact-page .container {
  padding-top: 30px;
}

/* Section Başlıkları */
.section-title {
  color: #780b10;
  font-size: 3.4rem;
  font-weight: var(--fw-700);
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--ff-rubik);
}

/* Contact Section */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Bilgi Kartları */
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-2);
}

.info-item ion-icon {
  font-size: 24px;
  color: #780b10;
}

.info-item span,
.info-item a {
  color: var(--rich-black-fogra-29);
  font-size: 1.8rem;
  transition: var(--transition-1);
}

.info-item a:hover {
  color: #780b10;
}

/* Çalışma Saatleri */
.working-hours p {
  margin-bottom: 5px;
}

/* Adres Bilgileri */
.address-text p {
  margin-bottom: 5px;
}

/* Harita Container */
.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

/* Ayırıcı Çizgi */
.category-divider {
  width: 100%;
  height: 1px;
  background-color: #780b10;
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-section {
    padding: 20px;
  }

  .info-item {
    padding: 15px;
  }

  .info-item span,
  .info-item a {
    font-size: 1.4rem;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* 28.06.2025 Updates */

/* Mevcut CSS'e eklenecek yeni stiller */

/*-----------------------------------*\
  #ORDER PLATFORMS SECTION
\*-----------------------------------*/

.order-platforms {
  text-align: center;
}

.order-platforms .section-title {
  margin-bottom: 50px;
}

.platform-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.platform-item {
  transition: var(--transition-1);
}

.platform-item:hover {
  transform: translateY(-10px);
}

.platform-link {
  display: block;
  padding: 20px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
}

.platform-link:hover {
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.2);
}

.platform-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: var(--transition-1);
}

.platform-logo:hover {
  transform: scale(1.05);
}

/*-----------------------------------*\
  #SOCIAL FOLLOW SECTION
\*-----------------------------------*/

.social-follow {
  text-align: center;
}

.social-follow .section-title {
  margin-bottom: 50px;
}

.social-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-item {
  transition: var(--transition-1);
}

.social-item:hover {
  transform: translateY(-10px);
}

.social-platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 40px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  text-decoration: none;
}

.social-platform-link:hover {
  box-shadow: 0 15px 40px hsla(0, 0%, 0%, 0.2);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
}

.social-platform-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  transition: var(--transition-1);
}

.social-platform-logo:hover {
  transform: scale(1.1);
}

.platform-name {
  color: var(--rich-black-fogra-29);
  font-family: var(--ff-rubik);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  transition: var(--transition-1);
}

.social-platform-link:hover .platform-name {
  color: var(--white);
}

/*-----------------------------------*\
  #RESPONSIVE FOR NEW SECTIONS
\*-----------------------------------*/

/* Mobile responsive */
@media (max-width: 768px) {
  .platform-list {
    gap: 30px;
  }
  
  .platform-logo {
    width: 100px;
    height: 100px;
  }
  
  .platform-link {
    padding: 15px;
  }
  
  .social-platform-link {
    padding: 25px 30px;
  }
  
  .social-platform-logo {
    width: 60px;
    height: 60px;
  }
  
  .platform-name {
    font-size: var(--fs-4);
  }
}

/* Tablet responsive */
@media (max-width: 992px) {
  .platform-list {
    gap: 40px;
  }
}

/* Large screen adjustments */
@media (min-width: 1200px) {
  .platform-list {
    gap: 80px;
  }
  
  .platform-logo {
    width: 140px;
    height: 140px;
  }
}

/*-----------------------------------*\
  #MENU PAGE UPDATES - NO PRICES
\*-----------------------------------*/

/* Fiyat alanını gizle */
.item-price {
  display: none !important;
}

/* Item content'i fiyat olmadan düzenle */
.item-content {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.item-info {
  padding: 15px 0;
  margin-bottom: 0; /* Alt margin'i kaldırdık çünkü fiyat yok */
}

/* Modal'da fiyat alanını gizle */
.modal-price {
  display: none !important;
}

/* Modal info düzenlemesi */
.modal-info {
  text-align: center;
  padding: 20px;
}

.modal-desc {
  font-size: 2.2rem;
  color: var(--sonic-silver);
  margin-bottom: 0; /* Alt margin'i kaldırdık */
  line-height: 1.6;
}

/*-----------------------------------*\
  #SPECIFIC SANDWICH STYLING - SADECE BOŞNAK SUCUKLU
\*-----------------------------------*/

/* Sadece Boşnak Sucuklu Sandviç için özel görsel boyutlandırma */
.menu-item img[alt="Boşnak Sucuklu Sandviç"] {
  object-fit: cover;
  object-position: center;
  /* Düşük kaliteli görseller için yumuşatma */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter: contrast(1.2) brightness(1.1) saturate(1.1);
  transform: scale(0.8); /* Görseli %80 boyutuna küçült */
  transform-origin: center;
  border-radius: 12px;
}

/* Boşnak Sucuklu için item-img container'ı da ayarla */
.menu-item:has(img[alt="Boşnak Sucuklu Sandviç"]) .item-img {
  padding-top: 106.66%; /* Biraz daha küçük aspect ratio */
  overflow: visible; /* Transform görünmesi için */
}

/* Modal'da da sadece Boşnak Sucuklu için */
#modalImage[alt="Boşnak Sucuklu Sandviç"] {
  transform: scale(0.7); /* Modal'da daha da küçük */
  filter: contrast(1.2) brightness(1.1) saturate(1.1);
  border-radius: 12px;
}

/* Responsive - mobilde biraz daha büyük */
@media (max-width: 768px) {
  .menu-item img[alt="Boşnak Sucuklu Sandviç"] {
    transform: scale(0.85);
  }
  
  #modalImage[alt="Boşnak Sucuklu Sandviç"] {
    transform: scale(0.75);
  }
}

/*-----------------------------------*\
  #FOOTER ICONS STYLING
\*-----------------------------------*/

/* Footer'daki özel iconlar için stil */
.footer-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Beyaz yapmak için */
  transition: var(--transition-1);
}

/* Hover durumunda */
.social-link:hover .footer-icon {
  filter: brightness(0) invert(0); /* Siyah yapmak için hover'da */
  transform: scale(1.1);
}