/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Navbar CSS */
#mainNavbar {
  background-color: rgb(255, 255, 255); /* Sen burada opacity’yi kontrol edebilirsin */
  backdrop-filter: blur(1px); /* Hafif cam efekti */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 80px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  z-index: 1050;
}
#mainNavbar .navbar-nav .nav-link {
  padding-left: 12px;
  padding-right: 12px;
  color: #463b3b;
}
#mainNavbar .navbar-nav .nav-link:hover {
  color: #e2201b !important; /* mause hover olduğunda menü üzerinde */
}

.navbar-brand img {
  height: 120px;
  margin-top: 3rem; /* aşağı taşır */
  transition: all 0.3s ease;
}

.custom-logo {
  position: relative;
  z-index: 1001;
}
/* Navbar container içinde konumlama */
.navbar-brand {
  position: relative;
  left: 50%;
  padding: 0; /* default padding'i sıfırla */
}

/* Scroll sonrası görünüm */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 1); /* Tam opak */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Navbar ayarı - logo ile menü arası mesafeyi azaltır */
#mainNavbar .navbar-collapse {
  justify-content: center;
}

/* Menü öğeleri arası boşluğu sıklaştır */
#mainNavbar .nav-link {
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 500;
  font-size: 18px;
}
/* Sol ve sağ menüyü logoya yaklaştır */
.left-nav {
  margin-left: 15rem;
}
.right-nav {
  margin-right: 15rem;
}
.nav-link.active {
  color: #dc3545 !important; /* kırmızı */
  font-weight: bold;
}

/* Carousel Captions */
.carousel-inner{
  position: relative;
  overflow: visible;
}
.carousel-caption {
  position: relative;
  top: 49%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 3;
  color: #fff;
}
.carousel-item {
  position: relative;
  z-index: 1; /* İçeriğin altında kalanları kontrol eder */
  overflow: visible;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}


/* Responsive image full height */
.carousel-item img {
  height: 100vh;
  object-fit: cover;
}

/* Halftone CSS */
.halftone-overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px !important;
  display: flex;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.halftone-half {
  width: 50%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
}
/* Halftone CSS End */

/* Carousel Caption Box CSS */
.caption-box {
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  display: inline-block;
  color: #e2201b; /* okunabilir koyu renk metin */
  font-weight: 600;
  border: 1px solid #e2201b;
}

/* Üst Telefon Barı */
.phone-topbar {
  z-index: 1060; /* Navbar'dan yüksek olmalı */
  position: sticky;
  top: 0;
}

/* Telefon kutusu */
.phone-box {
  background-color: #e2201b;
  color: white;
  padding: 6px 14px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-weight: bold;
  font-size: 15px;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.discover-link {
  margin-top: 1rem;
  font-weight: 600;
  color: #444;
  font-size: 14px;
}
/* İkon hover animasyonu */
.feature-box:hover .feature-icon {
  transform: translateY(-8px) scale(1.1);
  transition: transform 0.4s ease;
}

/* İkon başlangıç durumu (önlem için) */
.feature-icon {
  transition: transform 0.4s ease;
}
/* Features Section End*/


/* Sosyal Medya Top Bar */
.social-topbar {
  position: absolute;
  right: 5rem;
  top: 35px; /* Telefon barın yüksekliği kadar */
  z-index: 1;
}

/* Sosyal ikonlar (üst bar) */
.social-topbar .social-icon {
  background-color: #bfbfbf; /* açık gri */
  color: #ffffff; /* ikon rengi */
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-topbar .social-icon:hover {
  background-color: #e2201b;
  color: #fff;
}
/* Sosyal Medya Top Bar End */

/* Contact CTA Section CSS */
.contact-cta-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.contact-cta-section .overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.contact-cta-section .container {
  position: relative;
  z-index: 2;
}

.contact-cta-form {
  max-width: 450px;
  margin-left: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.contact-cta-form:hover {
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta-form input,
.contact-cta-form textarea {
  border-radius: 0.4rem;
  border: 1px solid #ccc;
  font-size: 14px;
}

.custom-danger {
  background-color: #e2201b;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.custom-danger:hover {
  background-color: #bb1c17;
  color: #fff;
}
/* Contact CTA Section CSS End */

/* About Section */
.about-section {
  background-color: #fff;
}

.section-subtitle {
  color: #e2201b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.experience-ribbon {
  grid-column: span 2;
  align-self: center;
  justify-self: center;
  background-color: #e2201b;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  transform: rotate(-10deg);
  z-index: 2;
  text-align: center;
}

/* About Feature Boxes */
.about-feature {
  gap: 1rem;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #e2201b;
}

.about-feature h6 {
  font-size: 1.2rem;       /* Paragraftan belirgin şekilde büyük */
  font-weight: 600;        /* Bold ama çok kalın değil */
  color: #2c2c2c;          /* Koyu, profesyonel bir ton */
  margin-bottom: 0.4rem;   /* Paragrafla araya boşluk */
}
.about-feature p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
/* About Image Hover Effects */
.about-img {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.about-img img {
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.about-img:hover img {
  transform: scale(1.05);
}

@keyframes shake {
  0% { transform: rotate(-10deg) translateX(0); }
  25% { transform: rotate(-10deg) translateX(-3px); }
  50% { transform: rotate(-10deg) translateX(3px); }
  75% { transform: rotate(-10deg) translateX(-2px); }
  100% { transform: rotate(-10deg) translateX(0); }
}

.experience-ribbon:hover {
  animation: shake 0.4s ease-in-out;
}
/* About Section End */

/* Product Category Section */
.product-category-section {
  background-color: #fff;
}

.product-category-menu .category-btn {
  border: 1px solid #e2201b;
  background-color: #fff;
  color: #e2201b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-category-menu .category-btn:hover,
.product-category-menu .category-btn.active {
  background-color: #e2201b;
  color: #fff;
}

/* Product Card Section */
.product-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  object-fit: contain;
}

.product-card h5 {  
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
}

/* "Hemen Bilgi Al" Butonu */
.product-card .btn {
  transition: all 0.3s ease;
  font-weight: 500;
}

.product-card .btn:hover {
  background-color: #e2201b;
  color: #fff;
  border-color: #e2201b;
}
/* Product Card Section End*/

/* Store Hours Section */
.store-hours-section {
  position: relative;
  height: 400px;
  overflow: visible;
}

.store-bg-image {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.store-hours-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  perspective: 1000px;
  overflow: hidden;
}

.hours-card {
  position: absolute;
  top: -5%;
  right: 1.5%;
  transform: translateY(-50%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  max-width: 100%;
  width: 400px;
  height: 450px;
  background-color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 12px;
  z-index: 3;
}
.hours-card:hover {
  transform: rotateY(10deg)!important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}
.store-content-box {
  padding: 2rem;
  background-color: rgba(97, 112, 138, 0.499);
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: 1rem; /* sağa yasla */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.store-content-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* Store Hours Section End */

/* Blog Section */
.blog-section {
  background-color: #f8f9fc;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
  max-height: 300px;
}
.blog-card a:hover {
  color: #e2201b !important;
}
/* Blog Section End */

/* Footer Section */
.footer-logo{
  max-width: 90px;
  height: auto;
}
/* Page Header Section */
.page-header-section {
  background-color: #f8f9fa;
  padding-top: 7rem; /* önceki değerden fazlası */
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-header-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-header-section .container {
  position: relative;
  z-index: 2;
  transform: translateY(2.5rem);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* veya ">" ya da "/" */
  color: #f7f3f3;
  padding: 0 8px;
}

.breadcrumb-link {
  color: #fff;
}
.breadcrumb-link:hover {
  color: #e2201b; /* İstersen hover’da kırmızı olur */
}
/* Page Header Section End*/
/* 3D Object Section */
.floating-scroll-container {
  position: absolute;
  top: 500px; /* Nerede başlamasını istiyorsan o kadar aşağıya */
  left: 8vw;
  z-index: 10;
  will-change: transform;
  pointer-events: none;
  max-width: 100px;
}
.floating-pomegranate{
  top: 450px;
  left: 50vw;
}
.floating-free {
  animation: floatUpDown 6s ease-in-out infinite;
}
/* Yaprak için özel boyut */
.floating-leaf {
  width: 90px;
  height: auto;
}

/* Nar için özel boyut */
.floating-nar {
  width: 150px;
  height: auto;
}
/* Nar-2 için konum ve boyut */
.floating-pomegranate-2 {
  top: 300px;
  left: 70vw;
}
.floating-nar-2 {
  width: 150px;
  height: auto;
}
/* Nar-3 için konum ve boyut */
.floating-pomegranate-3 {
  top: 180px;
  left: 25vw;
}
.floating-nar-3 {
  width: 150px;
  height: auto;
}
/* Nar-4 için konum ve boyut */
.floating-pomegranate-4 {
  top: 180px;
  left: 80vw;
}
.floating-nar-4 {
  width: 80px;
  height: auto;
}

/* Süzülme efekti */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}
/* 3D Object Section End */

/* Turkish Delight Anima */
@keyframes spinFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.animate-lokum-spin {
  animation: spinFadeIn 1.2s ease-out forwards;
}
.lokum-wrapper {
  position: absolute;
  top: 100px;   /* İstediğin pozisyona göre değiştir */
  left: 3vw;    /* Yatay pozisyon */
  width: 350px;  /* Tabağın boyutu */
  z-index: 5;
  pointer-events: none;
}

/* Scroll sırasında dönerken hareket edebileceği stil */
.lokum-wrapper.scroll-animated {
  transition: transform 0.1s linear;
}
/* Turkish Delight Anima End */
/* Blog Inner Section CSS */
.blog-inner-section .row{
  padding: 0.5rem;
}
.blog-inner-section img.img-thumbnail {
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.blog-inner-section h2 {
  color: #e2201b;
}

.blog-inner-section .other-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.blog-inner-section .other-article-card{
  transition: all 0.3s ease-in-out;
  padding: 0.5rem;
}

.blog-image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.blog-main-img {
  max-width: 100%;
  width: 750px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.blog-thumbnail {
  width: 100px;            /* İstediğin genişliği belirle */
  height: 80px;           /* Yükseklik orantılı olarak ayarlanır */
  padding: 0.25rem;
  margin-right: 1rem;
  object-fit: cover;      /* Görseli kırparak konteynere sığdırır */
  border: 1px solid #dee2e6;
  border-radius: 4px;     /* Köşeleri yuvarlatmak için */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Opsiyonel gölge */
}
.blog-content-wrapper {
  max-width: 750px;
}
/* Blog Inner Section CSS */

/* Contact - Section */
@keyframes float-logo {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(4px, -4px);
  }
  50% {
    transform: translate(0, -8px);
  }
  75% {
    transform: translate(-4px, -4px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.contact-logo-box {
  position: absolute;
  bottom: 100px;
  left: 60px;
  width: 600px;
  max-width: 15vw;
  z-index: 2;
  animation: float-logo 7s ease-in-out infinite;
}

.contact-logo-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* İletişim Sekmesi - Section Sonu */
/* Contact - Section */
@keyframes float-logo {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(4px, -4px);
  }
  50% {
    transform: translate(0, -8px);
  }
  75% {
    transform: translate(-4px, -4px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.contact-logo-box-en {
  position: absolute;
  bottom: 100px;
  left: 100px;
  width: 600px;
  max-width: 15vw;
  z-index: 2;
  animation: float-logo 7s ease-in-out infinite;
}

.contact-logo-box-en img {
  width: 120px;
  height: auto;
  display: block;
}
.contact-section iframe {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
/* Contact Section End */

/* Single Product Section */
.single-product-section h2 {
  font-size: 2rem;
}

.icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #fff;
  border: 2px solid #e2201b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2201b;
  font-size: 1.2rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.product-feature p {
  margin: 0;
  color: #444;
}
/* Singe Product Section End */

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: transparent; /* Arka planı kaldırdık */
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1061;
  padding: 0;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.2);
}
.back-to-top .drop-icon {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.back-to-top:hover .drop-icon {
  transform: scale(1.1);
}

/* Back To Top Button End */

/* 🌐 Tüm ekranlar için görünür dil değiştirici */
.lang-switcher-global {
  position: fixed;
  top: 1.5rem;
  left: 3rem;
  z-index: 1060;
  display: flex;
  gap: 6px;
}

.flag-icon {
  width: 36px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.1);
}
/* 🌐 Tüm ekranlar için görünür dil değiştirici END */