body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f4f4f4 0%, #e0e0e0 100%);
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}
nav {

  animation: fadeInNav 0.8s ease forwards;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  z-index: 1000;
}
@keyframes fadeInNav {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================================== */
/* POP-UP AFİŞ STİLLERİ          */
/* ================================== */

/* Arka planı kaplayan yarı saydam katman */
.popup-container {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999; /* Tüm elementlerin üzerinde olmasını sağlar */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Başlangıçta şeffaf */
    visibility: hidden; /* Başlangıçta görünmez ve tıklanamaz */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Pop-up'ın görünür hali için class */
.popup-container.active {
    opacity: 1;
    visibility: visible;
}

/* Afişin içerik kutusu */
.popup-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    width: 90%;
    max-width: 450px; /* Maksimum genişlik */
    text-align: center;
    transform: scale(0.9); /* Başlangıçta biraz küçük */
    transition: transform 0.4s ease;
}

.popup-container.active .popup-content {
    transform: scale(1); /* Aktif olduğunda normal boyutuna döner */
}


/* Kapatma butonu (X) */
.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: 300;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.popup-close-btn:hover {
    color: #000;
}

/* Afiş içindeki resim */
.popup-img {
    width: 120px; /* Logo veya resim boyutu */
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Afiş içindeki başlık */
.popup-content h2 {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

/* Afiş içindeki paragraf */
.popup-content p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 20px;
}

/* Afiş içindeki buton */
.popup-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74c3c; /* Sitenizin konseptine uygun bir renk */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s;
}

.popup-button:hover {
    background-color: #c0392b;
    color: white;
}
.popup-phone {
    display: block; /* Kendi satırında yer alması için */
    margin: 15px 0; /* Üst ve alt boşluk */
    font-size: 1.1rem; /* Yazı boyutu */
    font-weight: 600; /* Yazı kalınlığı */
    color: #1a1a1a; /* Rengi */
    text-decoration: none; /* Altındaki çizgiyi kaldır */
    transition: color 0.3s;
}

/* Telefon numarasının üzerine gelince rengi değişsin */
.popup-phone:hover {
    color: #e74c3c; /* Buton renginizle uyumlu bir renk */
}

/* Telefon ikonunun yanına biraz boşluk */
.popup-phone .fa-phone {
    margin-right: 8px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #426e5a;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #426e5a;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a.active {
  color: #426e5a;
}
.navbar {
  box-sizing: border-box;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 16px 0;
}

.navbar-inner {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.navbar-logo {
  flex: 0 0 auto;
}

.navbar-logo img {
  height: 40px;
  transition: transform 0.3s ease;
}
.navbar-logo:hover img {
  transform: scale(1.05);
  cursor: pointer;
}

.navbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  
}

.navbar-links a {
  white-space: nowrap;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links a:hover {
  color: #426e5a;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #426e5a;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}
    

.hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(120deg, rgba(220, 220, 220, 0.9), rgba(170, 170, 170, 0.9)), /* Daha gri bir ton */
    url('images/bg.jpg') center/cover no-repeat;
    animation: background-animation 20s infinite alternate;
    
}


@keyframes background-animation {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 20px;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-10px); /* Hover efekti ile yukarı kaydırma */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7); /* Hover ile gölgeyi artır */
}

.hero h1 {
    font-size: 60px;
    margin: 0;
    animation: fadeInDown 1s ease forwards;
}

.hero p {
    font-size: 20px;
    margin: 10px 0 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s; /* Metin gecikmeli gelir */
}

.hero .btn {
    padding: 15px 30px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s; /* Buton gecikmeli gelir */
}

.hero .btn:hover {
    background-color: #ff4c3b;
    transform: scale(1.1); /* Düğmeyi hover ile büyüt */
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .popup-content {
        padding: 20px; /* İç boşluğu biraz azaltıyoruz */
    }

    .popup-content h2 {
        font-size: 1.5rem; /* Başlık yazısını küçültüyoruz */
    }

    .popup-content p {
        font-size: 0.9rem; /* Paragraf yazılarını küçültüyoruz */
        line-height: 1.5; /* Satır aralığını artırarak okunabilirliği sağlıyoruz */
    }

    .popup-phone {
        font-size: 1rem; /* Telefon numarası yazısını küçültüyoruz */
    }
    
    .popup-button {
        padding: 10px 20px; /* Butonun boyutunu biraz küçültüyoruz */
        font-size: 0.9rem;
    }
   .navbar-inner {
    padding: 0 16px;
  }

  .navbar-logo img {
    height: 32px;
  }

  .navbar-links {
    gap: 24px;
    padding-left: 80px; /* Logo ile linkler arasında boşluk */
  }

  .navbar-links a {
    font-size: 14px;
  }


     .portfolio-item h3 {
    font-size: 18px;
  }

  .portfolio-item p {
    font-size: 20px; /* Mobilde hâlâ büyük ama orantılı */
  }
    .portfolio {
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); /* 400 yerine 280 */
    gap: 16px;
    padding: 0 10px;
    justify-content: center; /* Ortala */
    box-sizing: border-box;
  }

  .portfolio-item {
    max-width: 100%;
    margin: 0 auto;
    
  }
    .portfolio-item img {
    border-radius: 10px;
  }
     .menu-btn {
    width: 130px; /* Buton boyutu mobilde biraz küçülsün */
    height: 45px;
    font-size: 14px;
    margin: 6px;
  }
    .hero h1 {
        font-size: 40px; /* Küçük ekranlarda daha küçük başlık */
    }

    .hero p {
        font-size: 18px; /* Küçük ekranlarda daha küçük metin */
    }

    .hero .btn {
        padding: 12px 20px; /* Küçük ekranlarda düğme boyutu */
    }
    .section {
        padding: 30px 20px;
    }
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
    .hero {
        height: 50vh; /* Mobilde daha küçük bir yükseklik */
    }
    nav a {
        font-size: 14px; /* Mobilde font boyutunu küçült */
        padding: 8px 10px; /* Mobilde padding değerini küçült */
    }

}

.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-indicator {
  font-size: 28px;
  color: #000;
  animation: fadeArrow 1.5s infinite;
  pointer-events: none;
  display: inline-block;
}
@keyframes fadeArrow {
  0% {
    opacity: 0.2;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(10px);
  }
  100% {
    opacity: 0.2;
    transform: translateX(0);
  }
}


.section {
    padding: 50px;
    text-align: center;
}


.menu-categories {
    margin-bottom: 20px;
}
.menu-btn {
    background-color: #f0f0f0; /* Varsayılan renk */
    border: none;
    padding: 0; /* İç boşlukları kaldır */
    cursor: pointer;
    width: 150px; /* Sabit genişlik */
    height: 50px; /* Sabit yükseklik */
    display: inline-block; /* Butonların yan yana durması için */
    text-align: center; /* Metni yatay olarak ortalamak için */
    line-height: 50px; /* Yüksekliğe göre metni dikey olarak ortalamak için */
    margin: 10px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;  
}
.menu-btn:nth-child(1) { animation-delay: 0.2s; }
.menu-btn:nth-child(2) { animation-delay: 0.4s; }
.menu-btn:nth-child(3) { animation-delay: 0.6s; }
.menu-btn:nth-child(4) { animation-delay: 0.8s; }

.menu-btn.active {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background-color: #426e5a;
  color: white;
}
.menu-btn:hover {
    
    color: rgb(0, 0, 0); 
}
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000000;
  margin: 10px auto 0;
  border-radius: 2px;
}


.portfolio {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative; 
    z-index: 0; 
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.portfolio-item:only-child {
    /* Genişliği 450px ile sınırlayarak yayılmasını engelle */
    max-width: 500px; 
    /* grid kullanıldığı için normalde ortalama ihtiyacı olmaz ancak emin olmak için ekleyebiliriz */
    /* margin: 0 auto; */ 
}
.portfolio:has(.portfolio-item:nth-child(2):last-child) {
  justify-content: start; /* Ortalamayı kaldır, sola yasla */
  grid-template-columns: repeat(2, minmax(500px, 500px));
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
/* --- Menü item isimleri ve fiyat stili --- */
.portfolio-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000; /* Menü isimleri siyah */
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.portfolio-item p {
  font-size: 24px;
    font-weight: 700; 
    color: #B8860B; /* Altın rengi fiyat */
    letter-spacing: 0.5px;
}


/* Hover efekti: hafif büyüme ve canlılık */
.portfolio-item:hover h3 {
  transform: scale(1.03);
  transition: transform 0.2s ease;
}

/* Fiyat animasyonu için (premium, yumuşak geçiş) */
#ayran-price {
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

/* Fiyat değişirken uygulanacak stil */
.price-transition {
    opacity: 0.4;
    transform: scale(0.9);
}

.best-seller {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 50px; 
    height: 50px; 
    z-index: 1; 
}

.best-seller img {
    width: 200%; 
    height: auto; 
}
/* Çok Satan (Best Seller) Menü Kartları İçin Özel Stil */
.best-seller-card {
    
    border: 3px solid #000000; /* Canlı bir renk (örneğin turuncu/kırmızı tonu) */
    box-shadow: 0 8px 16px rgba(255, 87, 51, 0.4); 
    transition: all 0.4s ease;
}

/* Mouse ile üzerine gelindiğinde (hover) daha da dikkat çekici hale getirme (isteğe bağlı) */
.best-seller-card:hover {
    border-color: #920057; /* Daha koyu/yoğun bir renge geçiş */
    transform: translateY(-15px); /* Mevcut hover'dan biraz daha fazla kaldırma */
    box-shadow: 0 15px 25px rgba(255, 87, 51, 0.6);
}

.menu-content {
    transition: opacity 0.5s ease;
    opacity: 0;
    display: none;
}

.menu-content.active {
    display: grid;
    opacity: 1;
}
.footer-column p {
    display: flex;
    align-items: center; 
    margin: 10px 0; 
}

.footer-icon {
    width: 20px; /* İkon genişliği */
    height: 20px; /* İkon yüksekliği */
    margin-right: 10px; /* İkon ile metin arasında boşluk */
}

footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: flex-start; /* Yukarıdan hizalama */
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    text-align: left; /* Yazıları sola yasla */
}

.divider {
    width: 1px; /* Çizgi kalınlığı */
    background-color: #fff; /* Çizgi rengi */
    height: 100%; /* Dikey çizgi yüksekliği */
    margin: 0 20px; /* Çizgi ile sütunlar arasındaki boşluk */
}

.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    justify-content: flex-start; /* İkonları sola yasla */
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    color: #333;
}

/* Diğer CSS kodların aynen kalacak */


.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #333;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* Renk ayarları */
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #000;
    color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}

footer p {
    margin-top: 20px;
    font-size: 12px;
}

/* From Uiverse.io by vinodjangid07 */ 
.Btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(#000000, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: fixed; /* Sabit pozisyon */
    bottom: 20px; /* Alt mesafe */
    right: 20px; /* Sağ mesafe */
    border: none;
}

.arrow path {
    fill: white;
}

.text {
    font-size: 0.7em;
    width: 100px;
    position: absolute;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -18px;
    opacity: 0;
    transition-duration: .7s;
}

.Btn:hover .text {
    opacity: 1;
    transition-duration: .7s;
}

.Btn:hover .arrow {
    animation: slide-in-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}




