﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    color: #333;
}

.header-bottom {
    background-color: #1a202c;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Taşma durumunda alt satıra geç */
    gap: 15px; /* Öğeler arası boşluk */
    min-height: 50px; /* Minimum yükseklik */
    border-bottom: 2px solid #e2e8f0;
}

.header-bottom a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    font-size: clamp(14px, 1.8vw, 20px); /* Responsive yazı boyutu */
    white-space: nowrap; /* Metni tek satırda tut */
    flex-shrink: 0; /* Küçülmeyi engelle */
}

.site-header {
  position: relative;
  height: 80px;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;  /* Logo solda, menü sağda */
  align-items: center;
  padding: 7px 30px; /* Soldan ve sağdan boşluk */
  background-color: #2f354f; /* Koyu mavi arka plan */
  z-index: 999; /* Üstte kalması için yüksek z-index */
}

/* LOGO Görseli */
.logo img {
   height: 65px;
}

/* NAV MENÜ - DESKTOP */
.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0; 
  padding: 0;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: #fff; /* Banner üstünde okunur olması için beyaz */
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
  color: #f0f0f0;
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* MOBILE NAVIGATION */
.mobile-nav {
  display: none;
  background-color: rgba(47, 53, 79, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 998;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 15px 20px;
  transition: background-color 0.3s ease;
}

.mobile-nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* VIP SHOWCASE SECTION */
.vip-showcase {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.showcase-content {
  padding: 20px;
}

.showcase-title {
  font-size: 36px;
  color: #2f354f;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.showcase-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.category-tag {
  background: white;
  color: #2f354f;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  text-decoration: none;
}

.category-tag:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  background: #2f354f;
  color: white;
}

.showcase-contact {
  text-align: center;
  padding: 25px;
  background: #2f354f;
  border-radius: 15px;
  color: white;
}

.contact-label {
  font-size: 16px;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.contact-number {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.contact-number:hover {
  color: #ffd700;
  transform: scale(1.05);
}

.showcase-images {
  padding: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vip-showcase {
    padding: 40px 15px;
  }
  
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .showcase-title {
    font-size: 24px;
    text-align: center;
  }
  
  .category-tag {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .category-tag:hover {
    transform: none;
  }
  
  .showcase-contact {
    padding: 20px;
  }
  
  .contact-number {
    font-size: 18px;
  }
  
  .image-grid {
    gap: 15px;
  }
  
  .grid-item {
    border-radius: 10px;
  }
}

/* ——— Avantajlar Bölümü ——— */
.benefits-section {
  background: #f8f9fa;
  padding: 40px 20px;
}

.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.benefits-title {
  font-size: 24px;
  color: #2f354f;
  margin-bottom: 30px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 16px;
  color: #2f354f;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 30px 15px;
  }
  
  .benefits-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .benefit-card {
    padding: 20px 15px;
  }
  
  .benefit-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .benefit-card h3 {
    font-size: 14px;
  }
  
  .benefit-card p {
    font-size: 12px;
  }
}

/* ——— Arama Bölümü ——— */
.search-section {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 20px auto;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-title {
  font-size: 28px;
  font-weight: bold;
  color: #2f354f;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.search-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.search-info {
  font-size: 14px;
  color: #7c8ba1;
  margin-top: 15px;
  font-style: italic;
}

/* ——— Anasayfa Arama Çubuğu ——— */
.home-search-form{
  display:flex;
  gap:6px;
  align-items:center;
  margin: 20px auto;          /* ortala */
  max-width:460px;            /* masaüstü için */
}

#homeSearchInput{
  flex:1 1 180px;
  padding:8px 10px;
  font-size:15px;
  border:1px solid #ccc;
  border-radius:4px;
}

.home-search-form button{
  padding:8px 14px;
  background:#0d6efd;
  border:none;
  border-radius:4px;
  color:#fff;
  cursor:pointer;
}

.home-search-form i{ font-size:18px; }

/* Mobil: tam genişlik + üstten biraz boşluk */
@media (max-width:768px){
  .search-section {
    margin: 15px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  
  .search-title {
    font-size: 22px;
  }
  
  .search-subtitle {
    font-size: 14px;
  }
  
  .home-search-form{
    width:100%;
    padding:0;
    margin:15px auto;
  }
  
  .search-info {
    font-size: 13px;
  }
}


/* Kategoriler ana bölüm */
.categories {
    padding: 40px 20px;
    background-color: #f3f3f3;
    text-align: center;
}

.categories h2 {
    color:#000;
    margin-bottom: 20px;
    font-size: 28px;
}

/* Kategori konteyneri */
.category-container {
    /* Grid Layout ile otomatik sütun sayısı */
    display: grid;
    /* Her sütun min 250px, daha fazla alan varsa 1fr ile doldurur */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    /* 4 sütundan fazlasını engellemek için toplam genişlik kısıtı */
    max-width: 1200px;
    margin: 0 auto;

    /* Kutular arası boşluk */
    gap: 20px;
}

/* Kutu her bir kategori */
.category-box {
    position: relative; /* h3'ü konumlandırmak için relative */
    width: 280px;       /* Gerekirse 200px, 220px vs. */
    background-color: #fff;
    border: none;       /* İsterseniz 1px solid #ddd bırakabilirsiniz */
    border-radius: 4px;
    overflow: hidden;   /* h3 alt kısımda taşarsa kesilsin */
    cursor: pointer;
    transition: box-shadow 0.2s;
    text-align: center;
}

/* Hover efekti */
.category-box:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Resmi tam kutuya oturtma */
.category-box img {
    display: block;       /* Tarayıcının alt boşluk eklemesini önlemek için */
    width: 100%;
    height: auto;
    margin-bottom: 0;     /* Arada boşluk olmasın */
}

/* Metin şeridi (kategori adı) altta sabit */
.category-box h3 {
    position: absolute;
    bottom: 0;        /* Kutunun altına yapış */
    left: 0; 
    width: 100%;
    margin: 0;        /* Varsayılan margin'i sıfırla */
    padding: 10px 0;
    background-color: #2f354f; /* Pembe/taupe bant rengi */
    color: #fff;               /* Yazı rengi beyaz */
    font-size: 18px;
    /* Yazıyı büyük harfle isterseniz: text-transform: uppercase; */
    /* Metin gölgeli olsun isterseniz:
       text-shadow: 1px 1px 2px rgba(0,0,0,0.3); 
    */
}


.site-footer {
  background: #13182b; 
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.footer-logo img {
  width: 120px; /* Logo Boyutu */
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid gray;
  padding-top: 10px;
}


/* MOBİL STİLLERİ (max-width: 768px) */
@media screen and (max-width: 768px) {
  .header-container {
    padding: 10px 15px; /* Daha dar padding */
  }

  .logo img {
    height: 50px; /* Logo boyutu küçültüldü */
  }

  /* DESKTOP NAV GİZLE */
  .desktop-nav {
    display: none;
  }

  /* HAMBURGER MENU GÖSTER */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* HEADER YÜKSEKLİĞİ AYARLA */
  .site-header {
    height: 70px;
  }

  /* BANNER MOBİL */
  .banner {
    height: 400px; /* Yükseklik mobil için düşürüldü */
  }

  /* KATEGORİLER MOBİL */
  .categories {
    padding: 30px 15px;
  }

  .category-container {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 15px;
  }

  .category-box {
    width: 100%; /* Tam genişlik */
    max-width: 280px; /* Maksimum genişlik */
    margin: 0 auto; /* Ortala */
  }

  .category-box h3 {
    font-size: 16px; /* Başlık boyutu küçültüldü */
    padding: 8px 0;
  }

  .footer-logo img {
    width: 50px; /* Logo Boyutu */
  }
}

/* Animasyonlar */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.categories {
  animation: fadeIn 1s ease-out;
}

.site-header , .banner{
  animation: fadeIn 1s ease-out;
}

/* Fixed WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}