/* Feyza Öztürk Hukuk ve Arabuluculuk - Ana Stil */
:root {
  --siyah: #1a1a1a;
  --siyah-acik: #2d2d2d;
  --kahve-koyu: #3d2c2e;
  --kahve: #4a3728;
  --kahve-acik: #6b5344;
  --kahve-cream: #8b7355;
  --beyaz: #fafafa;
  --krem: #f5f0e8;
  --sari: #c9a227;
  --sari-acik: #d4af37;
  --sari-soluk: #e8d5a3;
  --golge: rgba(26, 26, 26, 0.08);
  --golge-koyu: rgba(26, 26, 26, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--beyaz);
  color: var(--siyah);
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--kahve-koyu);
  font-weight: 600;
}

a {
  color: var(--kahve);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--sari);
}

/* Header & Nav */
.site-header {
  background: linear-gradient(135deg, var(--siyah) 0%, var(--kahve-koyu) 100%);
  color: var(--beyaz);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--golge-koyu);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sari-acik);
  text-decoration: none;
  display: inline-block;
}

.logo:hover {
  color: var(--sari-soluk);
}

.logo span {
  color: var(--beyaz);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--krem);
  padding: 0.5rem 1rem;
  display: block;
  border-radius: 4px;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--sari-acik);
  background: rgba(201, 162, 39, 0.15);
}

/* Hamburger - sadece mobilde görünür */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  color: var(--beyaz);
  transition: background 0.2s;
}
.hamburger-btn:hover {
  background: rgba(255,255,255,0.1);
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s;
}
.sidebar-open .sidebar-overlay {
  display: block;
  opacity: 1;
}

/* Sidebar panel */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, var(--siyah) 0%, var(--kahve-koyu) 100%);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,0.3);
}
.sidebar-open .sidebar {
  transform: translateX(0);
}
.sidebar .sidebar-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar .sidebar-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sari-acik);
  text-decoration: none;
  display: inline-block;
}
.sidebar .sidebar-logo:hover {
  color: var(--sari-soluk);
}
.sidebar .sidebar-logo span {
  color: var(--beyaz);
  font-weight: 400;
}
.sidebar-close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--krem);
  cursor: pointer;
  border-radius: 6px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--sari-acik);
}
.sidebar-nav {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}
.sidebar-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--krem);
  font-size: 1rem;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sidebar-nav a:hover,
.sidebar-nav a:focus {
  background: rgba(255,255,255,0.08);
  color: var(--sari-acik);
  border-left-color: var(--sari-acik);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--kahve-koyu) 0%, var(--kahve) 50%, var(--kahve-acik) 100%);
  color: var(--beyaz);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero h1 {
  color: var(--sari-acik);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--krem);
  margin-bottom: 1rem;
}

.hero .location {
  font-size: 0.95rem;
  color: var(--sari-soluk);
}

/* Hero full-screen slider - sadece ana sayfada */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider .hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-slider .hero-content h1 {
  color: var(--sari-acik);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.hero-slider .hero-content .tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--krem);
  margin-bottom: 0.75rem;
}

.hero-slider .hero-content .location {
  font-size: 0.95rem;
  color: var(--sari-soluk);
}

.hero-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.hero-slider-dots .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
}

.hero-slider-dots .hero-dot:hover {
  background: rgba(255,255,255,0.4);
}

.hero-slider-dots .hero-dot.active {
  background: var(--sari-acik);
  border-color: var(--sari-acik);
  transform: scale(1.15);
}

/* Hero tam ekran - Hakkımda sayfası (fotoğraf üzerine yazı) */
.hero-cover {
  position: relative;
  height: 100vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beyaz);
  text-align: center;
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-cover-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-cover .hero-cover-content h1 {
  color: var(--sari-acik);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.hero-cover .hero-cover-content .tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--krem);
  margin-bottom: 0.75rem;
}

.hero-cover .hero-cover-content .location {
  font-size: 0.95rem;
  color: var(--sari-soluk);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--sari);
  display: inline-block;
}

.section p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Cards */
.card {
  background: var(--beyaz);
  border: 1px solid var(--golge);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px var(--golge);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px var(--golge-koyu);
}

.card h3 {
  color: var(--kahve);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--kahve);
  color: var(--beyaz) !important;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--sari);
  color: var(--siyah) !important;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--kahve);
  color: var(--kahve) !important;
}

.btn-outline:hover {
  background: var(--kahve);
  color: var(--beyaz) !important;
}

/* Footer */
.site-footer {
  background: var(--siyah);
  color: var(--krem);
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer h4 {
  color: var(--sari-acik);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--krem);
}

.site-footer a:hover {
  color: var(--sari-acik);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--kahve-acik);
  text-align: center;
  font-size: 0.9rem;
  color: var(--kahve-cream);
}

/* Page content typography */
.page-content ul, .page-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content blockquote {
  border-left: 4px solid var(--sari);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--kahve-acik);
  font-style: italic;
}

/* Contact form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--kahve-koyu);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--kahve-acik);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sari);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Article list */
.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--golge);
}

.article-list li:last-child {
  border-bottom: none;
}

.article-list a {
  font-weight: 600;
  color: var(--kahve);
}

.article-list .meta {
  font-size: 0.9rem;
  color: var(--kahve-acik);
  margin-top: 0.25rem;
}

/* Mevzuat / içtihat blokları */
.legal-block {
  background: var(--krem);
  border-left: 4px solid var(--kahve);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border-radius: 0 8px 8px 0;
}

.legal-block h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* Görseller */
.page-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--golge-koyu);
  margin: 1.5rem 0;
  display: block;
}

.hero-img-wrap {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.card-with-img {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.card-with-img .card-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--golge);
}

.card-with-img .card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.section-img {
  width: 100%;
  max-width: 700px;
  margin: 1.5rem auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--golge-koyu);
}

.img-left {
  float: left;
  max-width: 320px;
  margin: 0 1.5rem 1rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--golge);
}

.img-right {
  float: right;
  max-width: 320px;
  margin: 0 0 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--golge);
}

@media (max-width: 768px) {
  .card-with-img {
    grid-template-columns: 1fr;
  }
  .img-left, .img-right {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 1rem;
  }
  .header-inner nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo span {
    display: block;
    font-size: 0.85rem;
  }
  .hero:not(.hero-slider):not(.hero-cover) {
    padding: 2rem 1rem;
  }
  .hero-slider,
  .hero-cover {
    min-height: 380px;
  }
  .hero-cover-content {
    padding: 1.5rem 1rem;
  }
  .hero-slider .hero-content {
    padding: 1.5rem 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .tagline {
    font-size: 1rem;
  }
  .hero .location {
    font-size: 0.85rem;
  }
  .hero-img-wrap {
    margin: 1rem auto;
  }
  .hero-slider-dots .hero-dot {
    width: 10px;
    height: 10px;
  }
  .container,
  .container-narrow {
    padding: 1.25rem 1rem;
  }
  .section {
    padding: 2rem 0;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .card {
    padding: 1.25rem;
  }
  .card h3 {
    font-size: 1.1rem;
  }
  body.sidebar-open {
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .sidebar-overlay,
  .sidebar {
    display: none !important;
  }
}
