/* ===== KAHVALTI REHBERİ — SABAH IŞIĞI TASARIM SİSTEMİ ===== */

/* --- CSS Custom Properties --- */
:root {
  /* Renk Paleti */
  --krem: #FDF6EC;
  --krem-koyu: #F5EBDA;
  --amber: #D4920B;
  --amber-acik: #F0C75E;
  --amber-koyu: #A16E00;
  --lacivert: #1B3A5C;
  --lacivert-acik: #2A5580;
  --lacivert-koyu: #0F2540;
  --terrakota: #C0613A;
  --terrakota-acik: #E08B64;
  --yesil: #5A7A3A;
  --beyaz: #FFFFFF;
  --siyah: #1A1A1A;
  --gri-acik: #E8E0D4;
  --gri: #9E9585;
  --gri-koyu: #6B6358;

  /* Tipografi */
  --font-baslik: 'Georgia', 'Times New Roman', serif;
  --font-govde: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Boyutlar */
  --max-genislik: 1140px;
  --nav-yukseklik: 64px;
  --radius: 12px;
  --radius-kucuk: 6px;

  /* Gölgeler */
  --golge-hafif: 0 2px 8px rgba(27, 58, 92, 0.06);
  --golge-orta: 0 4px 20px rgba(27, 58, 92, 0.10);
  --golge-guclu: 0 8px 32px rgba(27, 58, 92, 0.14);

  /* Geçişler */
  --gecis: 0.25s ease;
  --gecis-yavas: 0.4s ease;
}

/* --- Reset & Temel --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-yukseklik) + 16px);
  font-size: 16px;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-govde);
  color: var(--siyah);
  background-color: var(--krem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-yukseklik);
}

html.menu-acik,
html.menu-acik body {
  overflow: hidden;
}

/* --- Erişilebilirlik: Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--lacivert);
  color: var(--beyaz);
  border-radius: var(--radius-kucuk);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--gecis);
}

.skip-link:focus {
  top: 8px;
}

/* Focus stili */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

a {
  color: var(--lacivert);
  text-decoration: none;
  transition: color var(--gecis);
}

a:hover {
  color: var(--amber-koyu);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Konteyner --- */
.konteyner {
  width: 100%;
  max-width: var(--max-genislik);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAVİGASYON (Sticky) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gri-acik);
  height: var(--nav-yukseklik);
  transition: box-shadow var(--gecis);
  overflow: visible;
}

.nav.scrolled {
  box-shadow: var(--golge-orta);
}

.nav-ic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.nav-logo {
  font-family: var(--font-baslik);
  font-size: 1.15rem;
  color: var(--lacivert);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}

.nav-logo:hover {
  color: var(--amber-koyu);
}

/* Masaüstü: satır içi menü */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-menu a {
  display: block;
  padding: 6px 9px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lacivert);
  border-radius: var(--radius-kucuk);
  transition: background var(--gecis), color var(--gecis);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--krem-koyu);
  color: var(--amber-koyu);
}

.nav-menu a.aktif {
  background: var(--lacivert);
  color: var(--beyaz);
}

/* Hamburger — varsayılan gizli */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 950;
  flex-shrink: 0;
}

/* Tablet ve mobil: hamburger menü */
@media (max-width: 1200px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    background: var(--krem);
    padding: 80px 24px 24px;
    gap: 2px;
    transform: translateX(100%);
    transition: transform var(--gecis-yavas);
    box-shadow: var(--golge-guclu);
    overflow-y: auto;
    z-index: 940;
    visibility: hidden;
  }

  .nav-menu.acik {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu a {
    padding: 11px 16px;
    font-size: 0.95rem;
  }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lacivert);
  border-radius: 2px;
  transition: transform var(--gecis), opacity var(--gecis);
}

.nav-hamburger.acik span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.acik span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.acik span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* --- HERO BÖLÜMÜ --- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 146, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-baslik);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--lacivert);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero .alt-baslik {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gri-koyu);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* Dekoratif İznik deseni - SVG */
.iznik-desen {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: 24px;
  opacity: 0.5;
}

/* --- BÖLÜM (Section) Genel --- */
.bolum {
  padding: 72px 0;
}

.bolum:nth-child(even) {
  background: var(--krem-koyu);
}

.bolum-baslik {
  font-family: var(--font-baslik);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--lacivert);
  text-align: center;
  margin-bottom: 12px;
}

.bolum-alt {
  text-align: center;
  color: var(--gri-koyu);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bolum h3 {
  font-family: var(--font-baslik);
  font-size: 1.3rem;
  color: var(--lacivert-koyu);
  margin-bottom: 12px;
  margin-top: 32px;
}

.bolum p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.bolum p + h3 {
  margin-top: 40px;
}

/* --- KARTlar (Seramik Tabak Panelleri) --- */
.kart {
  background: var(--beyaz);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--golge-hafif);
  border: 1px solid var(--gri-acik);
  transition: transform var(--gecis), box-shadow var(--gecis);
}

.kart:hover {
  transform: translateY(-3px);
  box-shadow: var(--golge-orta);
}

.kart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.kart h3 {
  margin-top: 0;
}

/* --- İçerik Görselleri (Metin Yanında) --- */
.gorsel-metin-yatay {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.gorsel-yan {
  flex: 0 1 220px;
  min-width: 160px;
  max-width: 100%;
}

.gorsel-yan-metin {
  flex: 1 1 260px;
  min-width: 0;
}

.icerik-gorsel {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--krem-koyu) 0%, var(--gri-acik) 100%);
  min-height: 140px;
  object-fit: cover;
}

/* --- PLACEHOLDER Görsel Blokları --- */
.gorsel-yer {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--krem-koyu) 0%, var(--gri-acik) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.gorsel-yer svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

/* --- İNTERAKTİF SOFRA PLANLAYICI --- */
.planlayici {
  background: var(--beyaz);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--golge-orta);
  border: 2px solid var(--amber-acik);
}

.planlayici-baslik {
  font-family: var(--font-baslik);
  font-size: 1.4rem;
  color: var(--lacivert);
  margin-bottom: 24px;
  text-align: center;
}

.secim-grup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.secim-btn {
  padding: 10px 22px;
  border: 2px solid var(--lacivert);
  border-radius: 30px;
  background: transparent;
  color: var(--lacivert);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--gecis);
  font-family: var(--font-govde);
}

.secim-btn:hover {
  background: var(--krem-koyu);
}

.secim-btn.secili {
  background: var(--lacivert);
  color: var(--beyaz);
  border-color: var(--lacivert);
}

.kisi-secim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.kisi-secim label {
  font-weight: 600;
  color: var(--lacivert);
}

.kisi-secim select {
  padding: 8px 16px;
  border: 2px solid var(--gri-acik);
  border-radius: var(--radius-kucuk);
  font-size: 1rem;
  background: var(--beyaz);
  color: var(--siyah);
  font-family: var(--font-govde);
}

.oneri-kutu {
  background: var(--krem);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 120px;
  border-left: 4px solid var(--amber);
}

.oneri-kutu h4 {
  font-family: var(--font-baslik);
  color: var(--amber-koyu);
  margin-bottom: 12px;
}

.oneri-kutu ul {
  list-style: none;
  padding: 0;
}

.oneri-kutu li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.oneri-kutu li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: bold;
}

/* --- FAQ / Sık Sorulanlar --- */
.sss-liste {
  max-width: 800px;
  margin: 0 auto;
}

.sss-item {
  border-bottom: 1px solid var(--gri-acik);
}

.sss-soru {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lacivert);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-govde);
  gap: 16px;
  transition: color var(--gecis);
}

.sss-soru:hover {
  color: var(--amber-koyu);
}

.sss-ikon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  transition: transform var(--gecis);
}

.sss-ikon::before,
.sss-ikon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.sss-ikon::before {
  width: 10px;
  height: 2px;
}

.sss-ikon::after {
  width: 2px;
  height: 10px;
  transition: transform var(--gecis);
}

.sss-item.acik .sss-ikon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sss-cevap {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--gecis-yavas);
}

.sss-cevap-ic {
  padding: 0 0 20px;
  color: var(--gri-koyu);
  line-height: 1.8;
}

/* --- FOOTER --- */
.footer {
  background: var(--lacivert-koyu);
  color: var(--gri-acik);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}

.footer h4 {
  font-family: var(--font-baslik);
  color: var(--beyaz);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--gri-acik);
  font-size: 0.9rem;
  transition: color var(--gecis);
}

.footer-links a:hover {
  color: var(--amber-acik);
}

.footer-alt {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: var(--gri);
}

/* --- Dekoratif Çizgiler / İznik Bordür --- */
.bordur {
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--amber-acik) 15%,
    var(--amber) 30%,
    var(--lacivert) 50%,
    var(--amber) 70%,
    var(--amber-acik) 85%,
    transparent 100%
  );
  border-radius: 2px;
  margin: 0 auto;
  max-width: 300px;
}

.bordur-genis {
  max-width: 100%;
}

/* --- Cookie Banneri --- */
.cerez-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--beyaz);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: 24px;
  transform: translateY(100%);
  transition: transform var(--gecis-yavas);
}

.cerez-banner.gorunur {
  transform: translateY(0);
}

.cerez-banner-ic {
  max-width: var(--max-genislik);
  margin: 0 auto;
}

.cerez-metin {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--siyah);
  line-height: 1.6;
}

.cerez-metin a {
  color: var(--lacivert);
  text-decoration: underline;
}

.cerez-butonlar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cerez-btn {
  padding: 12px 28px;
  border-radius: var(--radius-kucuk);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--lacivert);
  font-family: var(--font-govde);
  transition: all var(--gecis);
}

.cerez-btn-kabul {
  background: var(--lacivert);
  color: var(--beyaz);
}

.cerez-btn-kabul:hover {
  background: var(--lacivert-acik);
  border-color: var(--lacivert-acik);
}

.cerez-btn-reddet {
  background: var(--beyaz);
  color: var(--lacivert);
}

.cerez-btn-reddet:hover {
  background: var(--krem-koyu);
}

.cerez-btn-ayarlar {
  background: var(--beyaz);
  color: var(--lacivert);
}

.cerez-btn-ayarlar:hover {
  background: var(--krem-koyu);
}

/* Cookie Ayarlar Modalı */
.cerez-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--gecis), visibility var(--gecis);
}

.cerez-modal-overlay.gorunur {
  opacity: 1;
  visibility: visible;
}

.cerez-modal {
  background: var(--beyaz);
  border-radius: var(--radius);
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--golge-guclu);
}

.cerez-modal h2 {
  font-family: var(--font-baslik);
  color: var(--lacivert);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.cerez-modal p {
  font-size: 0.9rem;
  color: var(--gri-koyu);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cerez-kategori {
  padding: 16px 0;
  border-top: 1px solid var(--gri-acik);
}

.cerez-kategori-baslik {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cerez-kategori-baslik span {
  font-weight: 600;
  color: var(--siyah);
}

.cerez-kategori small {
  display: block;
  color: var(--gri);
  font-size: 0.85rem;
  margin-top: 4px;
  line-height: 1.5;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gri-acik);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--gecis);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--beyaz);
  top: 3px;
  left: 3px;
  transition: transform var(--gecis);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle-slider {
  background: var(--lacivert);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cerez-modal-butonlar {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* --- İLETİŞİM FORM --- */
.form-alan {
  margin-bottom: 20px;
}

.form-alan label {
  display: block;
  font-weight: 600;
  color: var(--lacivert);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-alan label .zorunlu {
  color: var(--terrakota);
}

.form-alan input,
.form-alan textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gri-acik);
  border-radius: var(--radius-kucuk);
  font-size: 1rem;
  font-family: var(--font-govde);
  transition: border-color var(--gecis), box-shadow var(--gecis);
  background: var(--beyaz);
  color: var(--siyah);
}

.form-alan input:focus,
.form-alan textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 146, 11, 0.15);
  outline: none;
}

.form-alan textarea {
  min-height: 140px;
  resize: vertical;
}

.form-alan.hata input,
.form-alan.hata textarea {
  border-color: var(--terrakota);
}

.form-hata-metin {
  color: var(--terrakota);
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-onay {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-onay input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--lacivert);
}

.form-onay label {
  font-size: 0.9rem;
  color: var(--gri-koyu);
  line-height: 1.5;
  cursor: pointer;
}

.form-gonder {
  padding: 14px 40px;
  background: var(--lacivert);
  color: var(--beyaz);
  border: none;
  border-radius: var(--radius-kucuk);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--gecis);
  font-family: var(--font-govde);
}

.form-gonder:hover {
  background: var(--lacivert-acik);
}

.form-gonder:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-sonuc {
  padding: 16px 20px;
  border-radius: var(--radius-kucuk);
  margin-top: 16px;
  font-weight: 500;
  display: none;
}

.form-sonuc.basarili {
  background: rgba(90, 122, 58, 0.1);
  color: var(--yesil);
  border: 1px solid var(--yesil);
  display: block;
}

.form-sonuc.hatali {
  background: rgba(192, 97, 58, 0.1);
  color: var(--terrakota);
  border: 1px solid var(--terrakota);
  display: block;
}

/* Honeypot */
.form-bal {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Sayfa İçerik (Tekil Sayfalar) --- */
.sayfa-hero {
  padding: 48px 0 36px;
  text-align: center;
  background: var(--krem-koyu);
}

.sayfa-hero h1 {
  font-family: var(--font-baslik);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--lacivert);
  margin-bottom: 8px;
}

.sayfa-hero p {
  color: var(--gri-koyu);
  font-size: 1.05rem;
}

.sayfa-icerik {
  padding: 48px 0 72px;
}

.sayfa-icerik h2 {
  font-family: var(--font-baslik);
  font-size: 1.5rem;
  color: var(--lacivert);
  margin: 36px 0 12px;
}

.sayfa-icerik h3 {
  font-family: var(--font-baslik);
  font-size: 1.2rem;
  color: var(--lacivert-koyu);
  margin: 24px 0 8px;
}

.sayfa-icerik p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.sayfa-icerik ul,
.sayfa-icerik ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.sayfa-icerik li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* İletişim Bilgi Kartları */
.iletisim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.iletisim-kart {
  background: var(--beyaz);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--golge-hafif);
  border: 1px solid var(--gri-acik);
}

.iletisim-kart svg {
  width: 36px;
  height: 36px;
  color: var(--amber);
  margin-bottom: 12px;
}

.iletisim-kart h3 {
  font-size: 1rem;
  color: var(--lacivert);
  margin: 0 0 4px;
}

.iletisim-kart p {
  color: var(--gri-koyu);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Site Haritası Sayfa --- */
.site-haritasi-liste {
  list-style: none;
  padding: 0;
}

.site-haritasi-liste li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gri-acik);
}

.site-haritasi-liste a {
  font-weight: 500;
  font-size: 1.05rem;
}

/* --- REVEAL ANİMASYON --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.gorunur {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .bolum {
    padding: 48px 0;
  }

  .kart {
    padding: 24px;
  }

  .planlayici {
    padding: 24px;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .cerez-butonlar {
    flex-direction: column;
  }

  .cerez-btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .konteyner {
    padding: 0 16px;
  }

  .kart-grid {
    grid-template-columns: 1fr;
  }
}
