body {
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  padding-top: 140px; /* Menü yüksekliğini hesaba kat */
  font-family: 'Baloo 2', cursive; /* ya da istediğin font */
  background-color: #fffdf9;
  color: #333;
  padding-top: 140px; /* menü yüksekliğine göre */
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #f6be55;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 120px;
}
/* Masaüstü (Web) İçin Menü ve Hover Davranışı */
@media (min-width: 769px) {
  /* Topbar düzenlemeleri */
  .topbar {
    display: flex;
    justify-content: center; /* Logoyu ve menüyü ortalayacak */
    align-items: center;
    padding: 0 20px;
    height: 120px;
    position: relative; /* Menü öğelerinin üstte görünmesini sağlamak için */
  }

  /* Logo kısmı */
  .topbar .logo {
    height: 80px;
    width: auto;
    position: absolute;  /* Logoyu tam ortada konumlandır */
    left: 50%;
    transform: translateX(-50%); /* Tam ortalamak için */
  }

  /* Menü dropdown */
  .dropdown {
    display: none;  /* Başlangıçta gizli */
    flex-direction: column;  /* Menü öğelerini dikey sıralama (alt alta açılacak) */
    align-items: center;  /* Menü öğelerini dikeyde ortalama */
    gap: 20px;  /* Menü öğeleri arasındaki boşluk */
    background-color: #f6be55;
    width: auto; /* Menü öğeleri içerik kadar geniş olacak */
    position: absolute;  /* Logonun hemen altına yerleştirilecek */
    top: 100%; /* Menüyü logo altında konumlandır */
    left: 50%;
    transform: translateX(-50%); /* Menü öğelerini de ortalar */
    transition: height 0.3s ease;
    overflow: hidden;
    height: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Menü öğeleri üzerine gelindiğinde menüyü aç */
  .topbar:hover .dropdown {
    display: flex;  /* Menü öğelerini görünür yap */
    height: auto;   /* Yükseklik otomatik olacak */
    padding: 10px 0; /* Yükseklik ayarı */
  }

  /* Menü öğeleri */
  .dropdown a {
    padding: 10px 15px;
    color: #333;
    font-size: 18px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;  /* Menü öğelerini ortalar */
    transition: all 0.3s ease; /* Hover efekti için yumuşak geçiş */
  }

  /* Menü öğesi üzerine gelindiğinde */
  .dropdown a:hover {
    background-color: #ff8c00;
    color: #fff;
  }

  /* Son öğe alt sınırını kaldır */
  .dropdown a:last-child {
    border-bottom: none;
  }
}



.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 120px;
}

.logo {
  height: 90px;
}
.topbar .logo {
  height: 80px;
  width: auto;
}

.dropdown {
  background-color: #f6be55;
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: height 0.4s ease-in-out;
  top: 8%; /* menünün hemen altı */

}

.menu-container:hover .dropdown {
  height: 60px;
}

.dropdown a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  background-color: transparent !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-family: 'Comic Sans MS', 'Baloo 2', cursive;
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.dropdown a:hover {
  background-color: #ff8c00;
  color: #fff;
}

/* Logo kısmı */
.topbar {
  display: flex;
  justify-content: center; /* Ortala */
  align-items: center;
  height: 110px; /* Logo yüksekliği kadar */
  padding: 10px 0;
  background-color: #f6be55;
}

.topbar .logo {
  height: 130px;
  width: auto;
}

.dropdown {
  background-color: #f6be55;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.menu-container:hover .dropdown {
  height: 60px;
}

.dropdown a {
  color: white;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  font-size: 20px; /* ← Yazı büyüklüğü burası */
}

.dropdown a:hover {
  color: gold;
}

/* Slider */
.slider {
  margin: 0 auto;
  width: 80%;
  max-width: 1400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
  margin-top: 60px; /* Menü yüksekliği kadar yukarıdan boşluk */

}

/* Resimler */
.slides img {
  width: 100%;
  display: none;
  object-fit: cover;
}

/* Aktif resim görünür */
.slides img.active {
  display: block;
}

.banner-btn {
  background-color: orange;
  border: none;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner-btn:hover,
.banner-btn.active {
  background-color: #CC7000;
  color: white;
}

/* Butonlar */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  background-color: white;
  border-radius: 0 0 12px 12px;
}

.btn {
  background-color: orange;
  border: none;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #CC7000;
}

.btn.active {
  background-color: #CC7000;
}

/* İçerik */
.content {
  padding: 40px 20px;
}

/* Renk kutuları */
.pink {
  background-color: #ffc1cc;
  color: #6a1032;
}

.blue {
  background-color: #b2ebf2;
  color: #004d40;
}

.yellow {
  background-color: #fff9c4;
  color: #795548;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin: 15px 0;
}

@media (max-width: 768px) {
  .box {
    padding: 20px;
  }

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 16px;
  }
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 50px 20px;
}

.box {
  width: 90%;
  max-width: 800px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h2 {
  margin-top: 0;
  font-size: 32px;
}

/* Genel carousel görünümü */
#productCarousel  {
  margin: 60px auto;
  max-width: 95%;
  background-color: #fff8f0; /* ← arka plan rengi */
  border-radius: 0px;
  padding: 20px 80px 60px 80px; /* top, right, bottom, left */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-card {
  flex: 1 0 auto;
  max-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; /* ← BURASI ÖNEMLİ */
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* İstersen 15px de yapabilirsin */
  object-fit: contain; /* or cover */
  image-rendering: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;       /* ← gölge kaldırıldı */
  overflow: hidden;

}

.image-card:hover img {
  transform: scale(1.03); /* Hafif yakınlaştır */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Kontrol butonları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #FFA500;
  border-radius: 50%;
  padding: 20px;
  background-size: 70% 70%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .image-card {
    max-width: 120px;
  }

  .image-card img {
    height: 120px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 15px;
  }
}

.Urunlerimiz {
  display: block;
  margin: 80px auto 0 auto; /* üst:20px, sağ:otomatik, alt:0, sol:otomatik */
  max-width: 100%;
}

.Etkinliklerimiz {
  display: block;
  margin: 80px auto 0 auto; /* üst:20px, sağ:otomatik, alt:0, sol:otomatik */
  max-width: 100%;
}

#eventCarousel {
  margin: 60px auto;
  max-width: 95%;
  background-color: #fff8f0; /* ← arka plan rengi */
  border-radius: 0px;
  padding: 20px 80px 60px 80px; /* top, right, bottom, left */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Kontrol butonları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #FFA500;
  border-radius: 50%;
  padding: 20px;
  background-size: 70% 70%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.custom-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.custom-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

header {
  text-align: center;
  background-color: transparent; /* veya background-color: white; */
  padding: 30px 20px;
}

header h1 {
  font-size: 36px;
  margin: 0;
  color: #d65a00;
}

header p {
  font-size: 18px;
  margin-top: 10px;
}

.season-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
}

.season {
  border-radius: 20px;
  padding: 30px;
}

.season h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.age-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  color: #ff6600;
}

.summer { background-color: #fff4cc; }
.autumn { background-color: #ffe6cc; }
.winter { background-color: #e0f7fa; }
.spring { background-color: #e6ffe6; }

footer {
  position: static; /* veya hiç position verme */
  padding: 20px;
  text-align: center;
  background-color:   #f6be55;;
  border-top: 4px solid   #f6be55;;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.card img {
  width: 80%;
  height: 200px;
  object-fit: cover; /* Görselin düzgün görünmesini sağlar */
  border-radius: 16px 16px 0 0; /* Üst kısmı oval */
  margin-bottom: 10px;
  margin: 0 auto 10px auto; /* Yatayda ortalar, altta 10px boşluk */
  display: block; /* Ortalamayı garanti altına alır */
}
.card h3 {
  text-align: center;
}

.text-center {
  text-align: center;
}

.heading-primary {
  color: #ff8c00;
  margin-top: 40px;
  font-size: 2.8rem;
  text-shadow: 1px 1px 3px #e07b00aa;
}

.heading-secondary {
  color: #ff7a00;
  margin-bottom: 12px;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.text-muted {
  color: #666;
  line-height: 1.5;
  font-size: 1.1rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.25s ease;
  cursor: default;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5);
}

/* Responsive ayarlar */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  .heading-primary {
    font-size: 2rem;
  }
  .heading-secondary {
    font-size: 1.3rem;
  }
  .text-muted {
    font-size: 1rem;
  }
}
.card-img-etkinlik {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}

.heading-primary {
  margin-top: 40px; /* varsa artır */
}


/*İLETİŞİM*/
.contact-header {
  text-align: center;
  background-color: #ffd95a;
  padding: 40px 20px;
  border-bottom: 4px solid #ffa500;
  color: #333;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #e05a00;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #fff9ec;
}

.contact-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
  text-align: center;
}

.contact-card h2 {
  color: #ff7a00;
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 1.1rem;
  color: #555;
}
.floating-social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-social-icons a {
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-social-icons a:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  background-color: #25D366;
}

.instagram-icon {
  background-color: #E1306C;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
  .menuToggle {
    display: none; /* Menü butonu GİZLİ */
  }
  .dropdown {
    display: none;  /* Başlangıçta gizli */
    flex-direction: column;    /* ALT ALTA */
    align-items: center;
    gap: 0;
    padding: 140px 0;
    background-color: #f6be55;
  }
  .dropdown a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-top: 1px solid #fdd77e;
  }
  .dropdown a:last-child {
    border-bottom: 1px solid #fdd77e;
  }
  .topbar {
    display: flex;
    justify-content: center; /* logoyu ortala */
    align-items: center;
    padding: 10px 15px;
  }
  .topbar .logo {
    height: 60px;
  }
  .slider {
    width: 95%;
  }
  .dropdown.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .dropdown a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-top: 1px solid #fdd77e;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #333;
    padding: 10px;
    cursor: pointer;
  }
  .dropdown a:last-child {
    border-bottom: none;
  }
.slider {
    width: 95%;
  }

.image-card {
    max-width: 100%;
    margin-bottom: 10px;
    display: block; /* Görsellerin düzgün şekilde sıralanmasını sağlar */
  }

  .image-card img {
    height: auto;
  }

  .carousel-item .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .topbar {
    display: flex;
    justify-content: center;  /* Logo'yu tam ortalar */
    align-items: center;
    padding: 10px 15px;
  }

  .topbar .logo {
    height: 100px;
  }
}
#mobileMenu {
  display: none;
  flex-direction: column; /* Menü başlıklarının dikey sırada durmasını sağlarız */
}

#mobileMenu.show {
  display: flex; /* Menü açıldığında görünür olmasını sağlarız */
}
