/* Genel Ayarlar */
body {
    background-color: #F9F8F6;
    color: #2C2825;
    font-family: 'Jost', sans-serif;
    scroll-behavior: smooth;
}
h1, h2, h3, .font-serif {
    font-family: 'Italiana', serif;
}
/* Scrollbar Gizleme */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
/* Görsel Geçiş Efektleri */
.img-reveal { overflow: hidden; }
.img-reveal img { transition: transform 1.5s ease; width: 100%; height: 100%; object-fit: cover; }
.img-reveal:hover img { transform: scale(1.05); }
.img-zoom { transition: transform 2s ease; }
.group:hover .img-zoom { transform: scale(1.05); }
/* Link Altı Çizgisi */
.hover-line { position: relative; display: inline-block; padding-bottom: 2px; }
.hover-line::after { content: ''; position: absolute; width: 0; height: 1px; bottom: 0; left: 0; background-color: #2C2825; transition: width 0.4s ease; }
.hover-line:hover::after { width: 100%; }
/* Instagram Scroller */
.insta-scroller { display: flex; overflow-x: auto; gap: 1.5rem; padding-bottom: 2rem; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
.insta-scroller::-webkit-scrollbar { display: none; }
.insta-card { min-width: 300px; height: 500px; position: relative; overflow: hidden; cursor: pointer; flex-shrink: 0; }
@media (min-width: 768px) { .insta-card { min-width: 380px; } }
.insta-card img { transition: transform 0.7s ease; width: 100%; height: 100%; object-fit: cover; }
.insta-card:hover img { transform: scale(1.1); }
.insta-overlay { position: absolute; inset: 0; background: rgba(44, 40, 37, 0.4); opacity: 0; transition: opacity 0.4s ease; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; text-align: center; padding: 2rem; }
.insta-card:hover .insta-overlay { opacity: 1; }
/* Ingredient Cards */
.ingredient-card { transition: all 0.3s ease; }
.ingredient-card:hover { background-color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-5px); }
/* Nav Scroll Efekti */
.nav-scrolled { padding-top: 1rem !important; padding-bottom: 1rem !important; background-color: rgba(249, 248, 246, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
/* Kayan Yazı (Marquee) */
.marquee { animation: scroll 30s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* Mobil Menü Link Efektleri */
.mobile-link { position: relative; }
.mobile-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 50%; background-color: #C8A98B; transition: all 0.3s ease; transform: translateX(-50%); }
.mobile-link:hover::after { width: 100%; }