body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFDAB9; /* Yavruağzı */
  color: #333;
}

.site-header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff6600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.online-count {
  font-weight: bold;
  color: #555;
}

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.switch input {display:none;}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 20px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:checked + .slider:before {
  transform: translateX(20px);
}

/* Hero */
.hero {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}
.hero-content {
  background: white;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}
.chat-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}
.btn {
  padding: 10px 20px;
  background: linear-gradient(to right, #2196F3, #00bfff);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.or {
  font-weight: bold;
}

.interest-box {
  margin: 20px 0;
}
.interest-box input {
  width: 70%; /* Daha dar yapıldı */
  padding: 14px; /* Yükseklik artırıldı */
  font-size: 1em;
  border: 2px solid #2196F3;
  border-radius: 5px;
  outline: none;
}


/* Content */
.content-section {
  background: white;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 8px;
}

/* FAQ */
.faq-section {
  background: white;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  background: none;
  border: none;
  font-size: 1em;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq-answer {
  display: none;
  padding: 5px 0 10px;
}
.faq-answer.show {
  display: block;
}

/* Footer */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Dark Mode */
.dark-mode {
  background-color: #222;
  color: white;
}
.dark-mode .site-header {
  background: #333;
  color: white;
}
.dark-mode .hero-content,
.dark-mode .content-section,
.dark-mode .faq-section {
  background: #444;
  color: white;
}
.logo {
  display: flex;
  align-items: center; /* ortalamak için */
}

.logo img {
  width: 260px;   /* istediğin genişlik */
  height: 67px;   /* oranı korur */
  max-height: 50px; /* en fazla yüksekliği sınırla */
}
.language-flags {
  margin: 10px 0;
  font-size: 1.8em;
}

.language-flags i {
  margin-right: 10px;
  color: #ff6600;
}

.language-flags span {
  margin: 0 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.language-flags span:hover {
  transform: scale(1.2);
}
.warning-box {
  display: flex;
  align-items: center;    /* dikey ortalar */
  justify-content: center; /* yatay ortalar */
  gap: 10px;               /* ikon ile yazı arası boşluk */
  padding: 10px;
  background-color: #e0f7ff; /* açık mavi arka plan */
  border-radius: 5px;
  font-size: 1em;
}
/* Genel başlık stilleri */
.home-intro h1,
.home-intro h2,
.home-intro h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}

/* H1 Gradient: Turuncu -> Mavi */
.home-intro h1 {
  font-size: 1.6em;
  background-image: linear-gradient(90deg, #FF6600, #1E90FF);
}

/* H2 Gradient: Koyu Turuncu -> Açık Mavi */
.home-intro h2 {
  font-size: 1.6em;
  background-image: linear-gradient(90deg, #CC5200, #00BFFF);
}

/* H3 Gradient: Turuncu -> Mavi Tonları, daha ince */
.home-intro h3 {
  font-size: 1.1.6em;
  background-image: linear-gradient(90deg, #FF7F32, #3399FF);
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
  .home-intro h1 { font-size: 1.6em; }
  .home-intro h2 { font-size: 1.6em; }
  .home-intro h3 { font-size: 1.6em; }
}
.content-image {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.content-image img {
  width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  border: 4px solid transparent;
  background-image: linear-gradient(90deg, #FF6600, #1E90FF);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

/* Hover efekti */
.content-image img:hover {
  transform: scale(1.05) rotate(-1deg); /* hafif zoom ve tilt */
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 20px rgba(255,102,0,0.6), 0 0 20px rgba(30,144,255,0.6);
  filter: brightness(1.1);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .content-image img {
    width: 100%;
  }
}
/* Blog section genel */
.blog-section {
  padding: 60px 0;
  background-color: #f9f4f0; /* gündüz modu */
  transition: background-color 0.4s ease;
}

/* Dark mode */
body.dark-mode .blog-section {
  background-color: #1a1a1a; /* gece modu koyu arka plan */
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-section h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  background-image: linear-gradient(90deg, #FF6600, #1E90FF);
  -webkit-background-clip: text;
  color: transparent;
}

.blog-section {
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}

.blog-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.blog-preview {
  padding: 40px 20px;
  text-align: center;
}

.blog-preview h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.blog-card {
  display: block;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-5px);
  background: #f9f9f9;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7); /* yarı saydam */
  color: #fff;
  padding: 12px 15px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  backdrop-filter: blur(5px); /* arka planı hafif bulanık yapar */
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.cookie-consent .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.cookie-consent .buttons button {
  flex: 1 1 45%;
  max-width: 120px;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.cookie-consent .buttons #acceptCookie {
  background: #4caf50;
  color: #fff;
}

.cookie-consent .buttons #acceptCookie:hover {
  background: #45a049;
}

.cookie-consent .buttons #declineCookie {
  background: #f44336;
  color: #fff;
}

.cookie-consent .buttons #declineCookie:hover {
  background: #d32f2f;
}

/* Küçük ekranlar için */
@media (max-width: 480px) {
  .cookie-consent .buttons button {
    flex: 1 1 100%;
    max-width: none;
  }
  .cookie-consent p {
    font-size: 13px;
  }
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icons a.instagram:hover { background: #E1306C; }
.social-icons a.facebook:hover { background: #1877F2; }
.social-icons a.linkedin:hover { background: #0A66C2; }
.social-icons a.pinterest:hover { background: #E60023; }
.social-icons a.youtube:hover { background: #FF0000; }
.social-icons a.tiktok:hover { background: #000000; }
.social-icons a.twitter:hover { background: #1DA1F2; }
.social-icons a.reddit:hover { background: #FF4500; }
.social-icons a.tumblr:hover { background: #36465D; }


