body{
   background-color: #f8edd8;
}

.toplayout{
display: flex;
align-items: center;
background-color: #c78147dc;
margin-bottom: 1rem;


}



.logo{
    width: 14rem;
    height: 14rem;
    margin-right: 2rem;
    margin-left: 1rem;
    margin-top: 1rem;
}


nav ul {
    display: flex;
    list-style: none;
    margin-top: 3rem;
}

nav ul li {
    margin-right: 7rem;
}

nav ul li a {
    color: #362518;
    text-decoration: none;
    font-size: 26px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

nav ul li a:hover {
    color:#cc2a38;
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}


.videokismi{
    
    width: 100%;
    height: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.39); /* Siyah renk, 0.5 opaklık (şeffaflık) */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.overlay-text {
    color: white;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.541);
}

.overlay-subtext {
    color: white;
    font-size: 1.5em;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.video-container {
    position: relative;
    width: 100%; 
    height: 100%; 
    overflow: hidden;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    display: block;
  }
  
 /* Mantı tanıtım kutusu */
.mantitanitim {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff9f3;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);  /* Varsayılan gölge */
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #4a2f20;
    transition: box-shadow 0.3s ease;  /* Geçiş efekti */
}

.mantitanitim:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);  /* Daha belirgin gölge */
}


.tanim-baslik {
    font-size: 2em;
    color: #b13c1e;
    margin-bottom: 20px;
    text-align: center;
}



.tanim-icerik {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}



/* Ürünler başlığı */
.section-title {
    font-size: 2em;  /* Başlık boyutunu küçültüyoruz */
    font-weight: bold;
    color: #b13c1e;
    text-align: center;
    margin-bottom: 30px;  /* Alt boşluğu azaltıyoruz */
    text-transform: uppercase;
    letter-spacing: 1px;  /* Harf aralığını biraz daha daraltıyoruz */
    position: relative;
    margin-top: 2rem;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;  /* Çizgi boyutunu küçültüyoruz */
    height: 2px;
    background-color: #d35400;  /* Alt çizgi */
  }
  
  /* Ürünler grid yapısı (3x3 düzeni) */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolon */
    gap: 15px;  /* Ürünler arasındaki boşluğu azaltıyoruz */
    padding: 15px;  /* Paddingi küçültüyoruz */
    justify-items: center;
    align-items: center;
  }
  
  /* Ürün kartları */
  .product-item {
    background-color: #fff9f3;
    border-radius: 12px;  /* Yuvarlak köşeleri biraz küçültüyoruz */
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Gölgeyi hafifletiyoruz */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-item img {
    width: 100%;
    height: 200px;  /* Resim boyutunu küçültüyoruz */
    object-fit: cover;
    border-bottom: 2px solid #d35400;  /* Çizgiyi ince tutuyoruz */
  }
  
  /* Ürün ismi */
  .product-name {
    font-size: 1em;  /* Yazı boyutunu küçültüyoruz */
    font-weight: normal;
    color: #4a2f20;
    padding: 10px;  /* Paddingi küçültüyoruz */
    background-color: #f7a752;
    text-transform: uppercase;
    border-radius: 0 0 12px 12px;  /* Yuvarlak köşeleri biraz daha küçültüyoruz */
    letter-spacing: 1px;
  }
  
  /* Hover efekti */
  .product-item:hover {
    transform: translateY(-5px);  /* Yükselme miktarını küçültüyoruz */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);  /* Gölgeyi biraz daha belirginleştiriyoruz */
  }
  
  .product-item:hover .product-name {
    background-color: #e67e22;
    color: white;
  }
  





  .about-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    background: #fff8f0;
    max-width: 1000px;
    margin: auto;
    border-radius: 16px;
    margin-top: 2rem;
  }
  
  .about-box {
    background-color: #fff;
    padding: 30px;
    border-left: 6px solid #e67e22;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .about-box:hover {
    transform: translateY(-5px);
  }

  .icon{
    display: flex;
    align-items: center;
  }

  .icon2{
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    margin-right: 6px;
  }
  
  .about-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .about-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
  }








  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff7f0;
    margin: 0;
    padding: 0;
  }
  
  .tarifler {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .tarifler-baslik {
    text-align: center;
    font-size: 2.5em;
    color: #d35400;
    margin-bottom: 40px;
    position: relative;
  }
  
  .tarifler-baslik::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #e67e22;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
  }
  
  .tarif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .tarif-kart {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .tarif-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }
  
  .tarif-kart img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .tarif-isim {
    font-size: 1.5em;
    margin: 15px;
    color: #e67e22;
    font-weight: bold;
  }
  
  .tarif-aciklama {
    padding: 0 15px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #555;
  }

  






  .iletisim {
    padding: 50px 20px;
    background-color: #fefefe;
  }
  
  .iletisim-baslik {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #e67e22;
  }
  
  .iletisim-icerik {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .iletisim-bilgi {
    flex: 1;
    min-width: 250px;
  }
  
  .iletisim-kart {
    background-color: #fff7f0;
    padding: 15px 20px;
    border-left: 5px solid #e67e22;
    margin-bottom: 15px;
    border-radius: 8px;
  }
  
  .iletisim-kart .etiket {
    font-weight: bold;
    color: #333;
  }
  
  .iletisim-kart .deger {
    margin-top: 5px;
    color: #555;
  }
  
  .iletisim-form {
    flex: 1;
    min-width: 300px;
  }
  
  .form-baslik {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #444;
  }
  
  .iletisim-form form {
    display: flex;
    flex-direction: column;
  }
  
  .iletisim-form input,
  .iletisim-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
  }
  
  .iletisim-form button {
    padding: 10px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .iletisim-form button:hover {
    background-color: #cf6d17;
  }
  
  .sosyal-medya-bolumu {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background-color: #fff7f0; /* sıcak, açık arka plan */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .sosyal-baslik {
    font-size: 1.6em;
    font-weight: bold;
    color: #c94c12; /* sıcak turuncu-kahve ton */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .ikonlar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .ikon-link {
    text-decoration: none;
    color: #fff;
    background-color: #e67e22; /* canlı turuncu */
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }
  
  .ikon-link:hover {
    background-color: #d35400; /* daha koyu turuncu */
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  }

  
  
  





 

