body { font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }
.font-serif { font-family: 'Playfair Display', serif; }

/* Akışkan giriş animasyonu */
.reveal {
    opacity: 0;
    animation: revealAnimation 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes revealAnimation {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sayfayı ekrana tam oturtma ayarı */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

/* Mobil Menü Geçişi */
#mobile-menu.hidden {
    display: none;
}

/* Navbar Genel Geçiş Efekti */
#navbar, 
#navbar-content, 
#navbar-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sayfa Kaydırıldığında Devreye Girecek Stil */
body.scrolled #navbar {
    background-color: rgba(255, 255, 255, 0.98); /* Daha opak beyaz */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body.scrolled #navbar-content {
    height: 4rem; /* h-16 değerine tekabül eder */
}

body.scrolled #navbar-logo {
    height: 2.5rem; /* Logonun daralmış hali */
}

/* Kestane Şekeri Al butonunu da biraz ufaltalım */
body.scrolled .nav-button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 10px;
}

/* BLOG İÇERİK STİLLERİ */

.blog-content p {
  margin-bottom: 2rem;
}

.blog-content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.blog-content h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.2;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.blog-content ul {
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  list-style: disc;
}

.blog-content li {
  margin-bottom: 1.25rem;
}

.blog-content strong {
  color: #44403c;
}
/* BLOG İÇERİK STİLLERİ CSS sonu */