﻿/* ======= HEADER (diğer sayfalarla tutarlı) ======= */
body { margin: 0; font-family: 'Segoe UI', sans-serif; }

header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to right, #c6f1d5 0%, white 30%);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
header.sticky-header.is-sticky {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem 1.5rem;
  gap: 2.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo img { height: 160px; }
.logo-wordmark { display: flex; flex-direction: column; font-family: 'Cinzel Decorative', serif; font-weight: 700; line-height: 1.15; }
.logo-wordmark-top, .logo-wordmark-bottom { text-transform: uppercase; font-size: 25px; letter-spacing: 0.5px; }
.logo-wordmark-top { color: #4E9E58; }
.logo-wordmark-bottom { color: #16301F; }
.menu { display: flex; gap: 1.5rem; align-items: center; }
.menu a { text-decoration: none; font-weight: bold; color: #313131; font-size: 16px; }
.menu a:hover { color: #139607; }
.right-tools { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.language-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  padding: 5px 10px 5px 5px;
  border-radius: 20px;
  border: 1.5px solid #e3e3e3;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.language-selector:hover {
  border-color: #27ae60;
  background: #f4fdf7;
}
.language-selector span {
  font-size: 13px;
  color: #333;
  font-weight: 700;
}
.language-selector img {
  width: 26px;
  height: 19px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.language-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  padding: 8px;
  gap: 6px;
  z-index: 20;
}
.language-dropdown img {
  width: 26px;
  height: 19px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.language-dropdown img:hover {
  transform: scale(1.08);
}

/* ======= HAMBURGER MENÜ ======= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a3d2b;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-container { flex-wrap: nowrap; gap: 0.6rem; padding: 0.6rem 1rem; }
  .logo { order: 1; }
  .logo img { height: 52px; }
  .logo-wordmark { display: none; }
  .right-tools { order: 2; margin-left: auto; gap: 0.6rem; }
  .hamburger-btn { display: flex; order: 3; flex-shrink: 0; }
  .menu {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 10px;
  }
  .menu.open { display: flex; }
  .menu a { width: 100%; padding: 12px 4px; border-top: 1px solid rgba(0,0,0,0.08); }
}

.legal-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  color: #2c2c2c;
  line-height: 1.7;
}
.legal-wrapper h1 {
  font-size: 2rem;
  color: #1a6b34;
  margin-bottom: 8px;
}
.legal-updated {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 32px;
}
.legal-wrapper h2 {
  font-size: 1.25rem;
  color: #1a3d2b;
  margin: 32px 0 12px;
  border-left: 4px solid #27ae60;
  padding-left: 10px;
}
.legal-wrapper p, .legal-wrapper li {
  font-size: 0.97rem;
  color: #3a3a3a;
}
.legal-wrapper ul, .legal-wrapper ol {
  margin: 8px 0 8px 22px;
}
.legal-wrapper a {
  color: #1a6b34;
  font-weight: 600;
}
.legal-note {
  background: #fff8e6;
  border: 1px solid #f0d896;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #8a6d1f;
  margin: 24px 0;
}

/* ======= ÇEREZ ONAY BANDI ======= */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #14311fee;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10000;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
  font-size: 0.9rem;
}
#cookie-consent-banner p {
  margin: 0;
  max-width: 640px;
  color: #eaf3ec;
}
#cookie-consent-banner a {
  color: #7be59a;
  text-decoration: underline;
}
#cookie-consent-banner .cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-consent-banner button {
  border: none;
  border-radius: 20px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
#cookie-consent-banner .cc-accept {
  background: #27ae60;
  color: #fff;
}
#cookie-consent-banner .cc-reject {
  background: transparent;
  color: #eaf3ec;
  border: 1px solid #6a8b76;
}
