/* Genel Stil */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4; /* Açık gri arka plan */
  margin: 0;
  padding: 0;
  color: #333;
}

.main-content {
  margin-top: 50px; /* Header yüksekliği kadar boşluk bırak */
  margin-left: 250px; /* Sidebar genişliği kadar sola kaydır */
  padding: 20px;
}



/* Header */
header {
  background-color: #2C6B2F; /* Koyu Yeşil */
  color: white;
  padding: 10px 20px; /* Padding biraz artırıldı */
  display: flex;
  justify-content: space-between; /* Menü öğeleri arasında boşluk */
  align-items: center;
  position: relative;
  z-index: 1000;
}

/* Menü */
.nav {
  display: flex;
  gap: 20px; /* Menü öğeleri arasındaki boşluk */
}

.nav a {
  text-decoration: none;
  font-size: 1.8rem; /* Font boyutu masaüstünde ideal */
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 10px 20px; /* Menü öğelerinin iç paddingi */
  border-radius: 5px;
  display: inline-block;
}

/* Hamburger Menü Iconu (Mobilde) */
.menu-icon {
  display: none; /* Masaüstünde görünmesin */
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  color: white;
}

/* Hamburger Menü Iconu (Mobilde) */
.menu-icon {
  display: none; /* Masaüstünde görünmesin */
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  color: white;
}

/* Mobil Menü */
.mobile-menu {
  display: none; /* Başlangıçta gizli */
  position: fixed;
  top: 50px; /* Üstten biraz mesafe bırakıyoruz */
  left: -300px; /* Menüyü başlangıçta ekran dışı yap */
  width: 250px; /* Menü boyutunu küçültük */
  height: auto; /* Yüksekliği içeriğe göre ayarlıyoruz */
  background-color: rgba(44, 107, 47, 0.9); /* Arka plan saydam */
  padding: 20px;
  flex-direction: column;
  align-items: flex-start; /* Sol üst köşeye hizalanması için */
  justify-content: flex-start;
  transition: left 0.3s ease, opacity 0.3s ease; /* Yavaş açılmasını sağlamak için geçiş efekti */
  opacity: 0; /* Başlangıçta görünmez */
  border-radius: 8px; /* Pencereyi daha zarif yapmak için yuvarlatılmış köşeler */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
  z-index: 9999; /* Menü diğer içeriklerin üzerinde görünsün */
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #f5f5f5;
}

/* Menü Açıldığında */
.mobile-menu.active {
  display: flex;
  left: 50px; /* Menü açıldığında ekranın sol üst köşesine kayacak */
  opacity: 1; /* Menü açıldığında görünür olacak */
}

/* Sayfa Kaydırıldığında Menü Kapanacak */
body.touch .mobile-menu.active {
  display: none;
}

/* Sayfa Üzerinde Saydam Overlay (Menü açıldığında arka planı karartır) */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah arka plan */
  z-index: 9998; /* Menüye bir alt katman */
}

/* Sayfa Kaydırıldığında Menü Kapanacak */
body.touch .overlay.active {
  display: block; /* Overlay'ı görünür yap */
}

/* Responsive Tasarım (Mobilde Hamburger Menü) */
@media (max-width: 768px) {
  .nav {
    display: none; /* Mobilde normal menüyü gizle */
  }

  .menu-icon {
    display: block; /* Menü ikonunu göster */
  }

  .mobile-menu {
    left: -300px; /* Menü başlangıçta ekran dışı */
    width: 250px; /* Menü genişliği ayarlanabilir */
  }

  /* Yana doğru açılacak şekilde menüyü yerleştirme */
  .mobile-menu.active {
    left: 50px; /* Menü açıldığında ekranın sol üst köşesine kayacak */
  }
}

/* Genel Konteyner */
.container {
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 30px;
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Form Stilleri */
form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

form button {
  background-color: #2C6B2F;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #388E3C;
}

/* Başlıklar */
h2,
h3 {
  text-align: center;
  color: #2C6B2F;
}

h3 {
  margin-top: 20px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Menü öğeleri arasındaki boşluk daha az */
  background-color: #2C6B2F; /* Daha güçlü bir yeşil tonu */
  padding: 10px 20px; /* Daha geniş padding */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Gölgeyi biraz artırdım */
  z-index: 100;
  border: 2px solid #1b4e1f; /* Hafif koyu yeşil çerçeve */
  transition: all 0.3s ease; /* Animasyon ekledim */
}

/* Metinleri daha belirgin yap */
.sidebar h3, .sidebar p {
  margin: 0;
  color: #ffffff; /* Beyaz yaparak kontrastı artır */
  font-size: 1.3rem; /* Font boyutunu artırdım */
  font-weight: bold; /* Daha güçlü görünmesi için */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Hafif gölge */
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
  .sidebar {
    flex-direction: row; /* Menü öğelerini yatay sıralıyoruz */
    justify-content: space-between; /* Aralarına boşluk bırakıyoruz */
    padding: 10px 15px; /* Mobilde biraz daha küçük padding */
    margin-bottom: 15px; /* Alt boşluğu biraz daraltıyoruz */
  }

  /* Menü öğelerine hover efekti ekleyebiliriz */
  .sidebar h3, .sidebar p {
    font-size: 1.2rem; /* Mobilde okunaklı kalması için */
    text-shadow: none; /* Mobilde gölgeyi kaldırdım */
  }

  /* Sidebar'ın animasyon efekti */
  .sidebar:hover {
    transform: scale(1.05); /* Sidebar biraz büyüsün */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
  }
}

/* Eğer daha küçük ekranlar için (mobil) özel bir düzen isterseniz, medya sorgusunu daha küçük yapabilirsiniz: */
@media (max-width: 530px) {
  .sidebar {
    padding: 8px 12px; /* Daha küçük padding */
    gap: 5px; /* Menü öğeleri arasındaki boşluğu azaltıyoruz */
  }
  .sidebar h3, .sidebar p {
    font-size: 1rem; /* Mobilde okunaklı kalması için */
    text-shadow: none; /* Mobilde gölgeyi kaldırdım */
  }
  /* Sidebar'ın animasyon efekti */
  .sidebar:hover {
    transform: scale(1.05); /* Sidebar biraz büyüsün */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
  }
}

/* Navigasyon */
nav {
  display: flex;
  justify-content: center; /* Menüyü yatayda ortalar */
  align-items: center; /* Menüyü dikeyde ortalar */
  background-color: #2C6B2F;
  padding: 10px;
  width: 100%;
  margin: 20px 0; /* Üst ve alt boşluk ekler */
  position: relative; /* Sabitleme kaldırıldı */
  flex-wrap: nowrap; /* Satır değişimini engeller */
}


nav a {
  color: white;
  padding: 15px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease-in-out;
}

nav a:hover {
  background-color: #388E3C;
}

nav a.active {
  background-color: #1B5E20;
  font-weight: bold;
}


                                                                            /* Hero Bölümü */
.hero {
  position: static;
  width: 100%;
  height: 100vh; /* Tam ekran */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

                                   /* Arka Plan Resmi */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('img/hero.jpg') no-repeat center center/cover;
  z-index: -1;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.2);
}

.hero-logo {
  position: absolute;
  top: 14%; /* Sayfa yüksekliğinin %20'sinde yukarıdan başlasın */
  left: 44%; /* Ekranın ortasında yatayda yer alsın */
  transform: translateX(-50%); /* Yatayda tam ortalamak için */
  width: 12vw; /* Logo boyutu, viewport genişliğine göre dinamik */
}

.hero-logo img {
  width: 200%;
  height: auto;
  display: block;
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.hero-text {
  font-size: 3.8rem; /* Daha ciddi bir görünüm için küçültüldü */
  font-weight: 700; /* Daha güçlü bir his vermesi için */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Daha hafif bir gölge */
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 1px; /* Daha sıkı bir his için azaltıldı */
}

.hero-slogan {
  font-size: 2rem; /* Küçültüldü, daha dengeli bir görünüm */
  font-weight: 500; /* Biraz daha güçlü durması için artırıldı */
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); /* Daha yumuşak gölge */
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.scroll-indicator {
    font-size: 2rem;
    line-height: 1.2;
    opacity: 0.8;
    text-align: center;
    margin-top: 20px;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #fff; /* Okun rengi ve boyutu */
    margin: 0 auto;
    display: inline-block;
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px); /* Daha belirgin hareket */
    }
}

                                             /* Mobil Uyumluluk */
@media (max-width: 768px) {
  .hero-text {
    font-size: 2.2rem; /* 2rem biraz küçük, 2.5rem daha dengeli olur */
  }

  .hero-slogan {
    font-size: 1.2rem; /* 1.5rem yerine biraz daha büyük */
  }

  .scroll-indicator {
    font-size: 1.7rem; /* Küçültme yapılmış ama çok küçük olmamalı */
  }

  .hero-logo {
    width: 30vw; /* Logo boyutunu mobilde viewport genişliğine göre daha büyük yapıyoruz */
    top: 10%;
    left: 35%;
  }


  .hero-image {
    height: 100%; /* Mobilde fazla büyük olmasını engelliyoruz */
  }
}
@media (max-width: 600px) {
  .hero-text {
    font-size: 2rem; /* 2rem biraz küçük, 2.5rem daha dengeli olur */
  }

  .hero-slogan {
    font-size: 1rem; /* 1.5rem yerine biraz daha büyük */
  }

  .scroll-indicator {
    font-size: 1.7rem; /* Küçültme yapılmış ama çok küçük olmamalı */
  }

  .hero-logo {
    width: 30vw; /* Logo boyutunu mobilde viewport genişliğine göre daha büyük yapıyoruz */
    top: 20%;
    left: 36%;
  }


  .hero-image {
    height: 100%; /* Mobilde fazla büyük olmasını engelliyoruz */
  }
}



                                                                         
                                                                    /* Carousel Container */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.carousel-container .carousel-title {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px;
}

                                                                         /* Carousel */
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px;
  justify-content: space-between; /* Resimler arasındaki boşluğu dengeliyoruz */
}

.carousel-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex-shrink: 0;
  width: 300px;
  box-sizing: border-box;
  text-align: center;
}

.carousel-image {
  width: 100%; /* Resmin genişliği %100 olacak şekilde ayarlanıyor */
  height: 200px; /* Sabit bir yükseklik veriyoruz */
  object-fit: cover; /* Resmin boyutunu kapsayıcıya uyduruyor */
  border-radius: 10px; /* Kenarları yuvarlatıyoruz */
  transition: transform 0.3s ease; /* Hover efekti için geçiş ekliyoruz */
}

.carousel-image:hover {
  transform: scale(1.05);
}

.carousel-item p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.carousel-title {
  font-size: 2rem;
  color: #388E3C;
  margin-bottom: 20px;
  text-align: center;
}

                               /* Image Section */
.image-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 10%;
}

.image-box {
  position: relative;
  width: 48%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px; /* Daha köşeli ve ciddi görünüm */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.image-box:hover {
  transform: scale(1.02); /* Hafif büyütme */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
}

.image-box a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s ease-in-out;
}

.image-box a:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* WELCOME TEXT */
.welcome-text {
  text-align: center;
  font-size: 32px; /* Daha dengeli boyut */
  color: #1e5631; /* Daha koyu bir yeşil tonu (ciddi görünüm) */
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* Hoş geldiniz mesajı */
.welcome-message {
  text-align: center;
  font-size: 18px;
  color: #2c2c2c; /* Daha koyu bir ton */
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  font-family: "Roboto", sans-serif;
  text-shadow: none; /* Hafif gölgeyi kaldırdım */
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
  .carousel-container {
    max-width: 100%;
    padding: 10px;
  }

  .carousel-title {
    font-size: 1.4rem;
    padding: 6px 12px;
  }

  .carousel-item {
    width: 180px;
  }

  .carousel {
    gap: 12px;
  }

  .image-section {
    flex-direction: column;
    gap: 12px;
    padding: 18px 4%;
  }

  .image-box {
    width: 100%;
    height: 240px;
  }

  .welcome-text {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .welcome-message {
    font-size: 15px;
    padding: 0 8px;
    line-height: 1.5;
    max-width: 85%;
    margin: 0 auto 25px auto;
  }
}



                                                                            /* Ürünler */
.product-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.product {
  width: 30%;
  text-align: center;
  background: #f8f9fa; /* Hafif bir arka plan rengi eklendi */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge eklendi */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product:hover {
  transform: translateY(-5px); /* Hafif yukarı kaydırma efekti */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.product-info h3 {
  font-size: 1.3rem;
  color: #2c5f2d; /* Daha koyu ve ciddi bir yeşil tonu */
  font-weight: 600;
  margin-top: 12px;
}

.product-info p {
  font-size: 0.95rem;
  color: #444;
  margin-top: 5px;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column; /* Ürünleri alt alta dizer */
    align-items: center;
    gap: 12px; /* Ürünler arasındaki boşluk optimize edildi */
  }

  .product {
    width: 90%;
    max-width: 380px;
    padding: 12px;
  }

  .product img {
    height: auto;
    max-width: 100%;
  }

  .product-info h3,
  .product-info p {
    text-align: center;
  }
}


                                                                  /* Footer */
footer {
  background-color: #2C6B2F;
  color: white;
  padding: 20px;
  text-align: center;
}
.footer-contact a {
    color: white; /* Bağlantı rengini beyaz yapar */
    text-decoration: none; /* Alt çizgiyi kaldırır */
}

.footer-contact a:hover {
    color: #007bff; /* Üzerine gelindiğinde bağlantı mavi olur */
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi ekler */
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  padding: 10px;
}

                                 /* İletişim bilgileri - SOL */
.footer-contact {
  text-align: left;
  flex: 1;
}

                                       /* Logo - ORTA */
.footer-logo-container {
  flex: 1;
  text-align: center;
}

                                /* Sosyal medya ikonları - SAĞ */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex: 1;
}

                                  /* Sosyal medya ikon stilleri */
.footer-social img,
.social-logo {
  width: 40px;
  transition: transform 0.3s ease-in-out;
}

.footer-social img:hover,
.social-logo:hover {
  transform: scale(1.1);
}

                                     /* Logo */
.footer-logo {
  width: 200px;
  margin-bottom: 5px;
}

/* Tüm hakları saklı yazısı */
.no-copy {
  font-size: 1rem;
  opacity: 0.7;
}

                               /* --- Mobil uyumluluk --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
    order: 1;
    margin-bottom: 10px;
  }

  .footer-logo-container {
    order: 2;
    margin-bottom: 10px;
  }

  .footer-social {
    justify-content: center;
    order: 3;
    margin-bottom: 10px;
  }

  .no-copy {
    display: block;
    margin-top: 10px;
  }
}


                                                                       /* İletişim Sayfası */

.contact-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-container h2 {
  color: #2C6B2F;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 1rem;
  color: #555;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.contact-box {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
  color: #2C6B2F;
  margin-bottom: 5px;
}
.contact-box a {
  color: #2C6B2F; /* Bağlantı rengini yeşil yap */
  text-decoration: none; /* Alt çizgiyi kaldır */
  transition: color 0.3s ease; /* Renk geçişi ekle */
}

.contact-box a:hover {
  color: #1B5E20; /* Hover durumunda rengi daha koyu yeşil yap */
  text-decoration: underline; /* Hover durumunda alt çizgi ekle */
}

.contact-box p {
  margin-bottom: 10px; /* Her p etiketi arasına boşluk ekle */
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.contact-form label {
  text-align: left;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background: #2C6B2F;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1B5E20;
}

.contact-social {
  margin: 20px 0;
}

.contact-social a {
  color: #2C6B2F;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.contact-social a:hover {
  transform: scale(1.1);
}

.contact-social,
.contact-whatsapp {
  display: inline-block;
  margin-right: 20px;
}

.contact-social a,
.contact-whatsapp a {
  color: #2C6B2F;
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-social a:hover,
.contact-whatsapp a:hover {
  color: #388E3C;
}

                                           /* Mobil uyumluluk için düzenlemeler */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr; /* Mobilde tek sütuna düşür */
  }

  .contact-form {
    padding: 10px;
  }

  .contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .contact-social a {
    font-size: 1.2rem; /* Daha küçük font boyutu */
  }

  .contact-box {
    margin-bottom: 20px; /* Kutular arasında daha fazla boşluk */
  }
}
@media (max-width: 280px) {
  /* Genel */
  body {
    font-size: 14px; /* Yazıları küçült */
  }

  .main-content {
    margin-left: 0; /* Sidebar olmadığında sola kayma yapma */
    padding: 10px; /* Daha az padding kullan */
  }

  /* Header */
  header {
    padding: 8px 15px; /* Daha küçük padding */
  }

  .nav a {
    font-size: 1.2rem; /* Küçük ekranlarda daha küçük yazılar */
    padding: 8px 15px; /* Padding azalt */
  }

  /* Sidebar */
  .sidebar {
    flex-direction: column; /* Menü dikey sıralansın */
    text-align: center;
    padding: 8px 10px;
    gap: 5px;
  }

  .sidebar h3, .sidebar p {
    font-size: 1rem; /* Daha küçük yazı */
  }

  /* Hero Bölümü */
  .hero-text {
    font-size: 2rem; /* Başlığı küçült */
  }

  .hero-slogan {
    font-size: 1.2rem; /* Sloganı küçült */
  }

  .hero-logo {
    width: 35vw; /* Küçük ekranlarda logo daha büyük olsun */
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Mobil Menü */
  .mobile-menu {
    padding: 40px 10px;
  }

  .mobile-menu a {
    font-size: 1.3rem; /* Linkleri küçült */
    margin-bottom: 15px;
  }

  /* Form */
  form {
    grid-template-columns: 1fr; /* Tek sütuna düşür */
  }

  form input,
  form textarea {
    font-size: 0.9rem; /* Daha küçük giriş alanı */
  }

  form button {
    font-size: 1rem; /* Küçük buton */
    padding: 12px;
  }

  /* Carousel */
  .carousel {
    flex-direction: column; /* Resimleri dikey sırala */
  }

  .carousel-item {
    width: 100%; /* Tüm genişliği kaplasın */
  }

  .carousel-image {
    height: 180px; /* Yükseklik biraz daha az */
  }

  /* Resim Bölümü */
  .image-section {
    flex-direction: column; /* Dikey hizalama */
    padding: 20px 5%;
  }

  .image-box {
    width: 100%;
    height: 250px; /* Daha az yükseklik */
  }
}

