﻿/* Hayvan Ã‡iftliÄŸi Tema CSS */

:root {
  --primary-color: #8B4513;
  --secondary-color: #D2B48C;
  --accent-color: #228B22;
  --dark-color: #2F4F4F;
  --light-color: #F5DEB3;
  --farm-green: #90EE90;
  --farm-brown: #A0522D;

  /* Tema renk değişkenleri */
  --text-primary:   #2c1a00;
  --text-secondary: #5a4030;
  --text-muted:     #7a6050;
  --card-bg:        rgba(255, 252, 245, 0.97);
  --bg-primary:     transparent;
  --border-color:   rgba(139, 69, 19, 0.18);
  --input-bg:       #fffdf8;
  --input-border:   #d4b896;
  --shadow-card:    0 10px 40px rgba(80, 40, 10, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f5dc 0%, #faebd7 100%);
  color: var(--dark-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* ============================================ */
/* ADVANCED BACKGROUND CONTAINER - DETAYLI ARKA PLAN */
/* ============================================ */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Dinamik Gradient Arka Plan */
.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #f5f5dc 0%,
    #faebd7 25%,
    #fffacd 50%,
    #f0e68c 75%,
    #faebd7 100%
  );
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ParÃ§acÄ±klar - Particle System */
.particles-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(139, 69, 19, 0.5),
    inset -2px -2px 5px rgba(0, 0, 0, 0.2),
    inset 2px 2px 5px rgba(255, 255, 255, 0.3);
  filter: blur(0.5px);
}

@keyframes float-up {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
    filter: blur(2px);
  }
  5% {
    opacity: var(--opacity, 0.6);
    filter: blur(0px);
  }
  95% {
    opacity: var(--opacity, 0.6);
    filter: blur(0px);
  }
  100% {
    transform: translateY(-100vh) translateX(var(--offset-x)) scale(0);
    opacity: 0;
    filter: blur(2px);
  }
}

/* Floating Shapes - YÃ¼zen Åekiller */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.08;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #8B4513 0%, #8B4513 100%);
  top: 10%;
  left: 5%;
  animation: float-shape-1 20s ease-in-out infinite;
  filter: blur(40px);
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #228B22 0%, #228B22 100%);
  top: 50%;
  right: 10%;
  animation: float-shape-2 25s ease-in-out infinite;
  filter: blur(50px);
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #D2B48C 0%, #D2B48C 100%);
  bottom: 5%;
  left: 50%;
  animation: float-shape-3 30s ease-in-out infinite;
  filter: blur(45px);
}

@keyframes float-shape-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 50px) scale(0.95);
  }
  75% {
    transform: translate(30px, 30px) scale(1.05);
  }
}

@keyframes float-shape-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-60px, 40px) scale(1.08);
  }
  66% {
    transform: translate(40px, -30px) scale(0.98);
  }
}

@keyframes float-shape-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(50px, 30px) scale(1.05);
  }
  80% {
    transform: translate(-40px, -40px) scale(0.95);
  }
}

/* ============================================ */
/* Ä°Ã§erik z-index ayarlanmasÄ± */
/* ============================================ */
nav {
  position: relative;
  z-index: 100;
}

main {
  position: relative;
  z-index: 2;
}

footer {
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #228B22 0%, #3CB371 50%, #90EE90 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-title {
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
  opacity: 0.95;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: slideInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.6s both;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-size: 1.1em;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--farm-brown);
  border-color: var(--farm-brown);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
  background-color: #6b3410;
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
  outline: none;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-light:active {
  transform: translateY(-1px);
}

.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  outline: none;
}

.hero-image {
  flex: 1;
  min-width: 200px;
  animation: float 3s ease-in-out infinite;
}

.farm-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background: white;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #fffacd 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--accent-color);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.about-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5em;
}

.about-card p {
  color: var(--dark-color);
  line-height: 1.6;
  font-size: 0.95em;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--farm-brown) 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
  font-weight: 600;
}

.btn-light:hover {
  background-color: var(--light-color);
  border-color: var(--light-color);
  transform: translateY(-3px);
}

/* Story Container */
.story-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  flex: 1;
}

.story-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #228B22 0%, #3CB371 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.author {
  font-size: 1.1em;
  opacity: 0.9;
  font-style: italic;
}

.story-content {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-chapter {
  padding: 30px;
  border-bottom: 2px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.story-chapter:last-child {
  border-bottom: none;
}

.story-chapter:hover {
  background-color: #fafaf0;
}

.chapter-title {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chapter-text {
  color: var(--dark-color);
  line-height: 1.8;
  font-size: 1em;
  text-align: justify;
  margin-bottom: 15px;
}

.principles {
  background: linear-gradient(135deg, #fffacd 0%, #f0fff0 100%);
  padding: 20px;
  border-left: 5px solid var(--accent-color);
  border-radius: 5px;
  margin-top: 20px;
}

.principles h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.principles ul {
  list-style: none;
  padding-left: 0;
}

.principles li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--dark-color);
}

.principles li::before {
  content: 'ğŸŒ¾';
  position: absolute;
  left: 0;
}

.moral {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  padding: 20px;
  border-radius: 5px;
  border-left: 5px solid var(--primary-color);
  margin-top: 20px;
  font-style: italic;
  color: var(--dark-color);
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.character-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #fffacd 100%);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.character-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.character-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1em;
}

.character-card p {
  font-size: 0.95em;
  color: var(--dark-color);
  line-height: 1.5;
}

.story-footer {
  text-align: center;
  padding: 30px;
  margin-top: 30px;
}

.story-footer .btn {
  padding: 12px 30px;
  font-size: 1.1em;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5em;
  }

  .hero-subtitle {
    font-size: 1.2em;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .about-section h2 {
    font-size: 2em;
  }

  .story-header h1 {
    font-size: 1.8em;
  }

  .chapter-title {
    font-size: 1.4em;
  }

  .characters-grid {
    grid-template-columns: 1fr;
  }

  .story-chapter {
    padding: 20px;
  }
}

/* Buttons */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

.btn-lg {
  padding: 12px 40px;
  font-size: 1.1em;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================ */
/* STANDARDIZE BUTON STÄ°LLERÄ° - TÃœMLEME BUTONLARI */
/* ============================================ */

/* TÃ¼m Butonlar iÃ§in Ortak TasarÄ±m */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1em;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
}

/* Birincil Buton */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--farm-brown);
  border-color: var(--farm-brown);
}

/* AydÄ±nlÄ±k Buton */
.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
  font-weight: 600;
}

.btn-light:hover {
  background-color: var(--light-color);
  border-color: var(--light-color);
}

/* Outline Light Buton */
.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--accent-color);
}

/* YeÅŸil BaÅŸarÄ± Butonu */
.btn-success, .btn-green {
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
  color: white;
  border-color: #228B22;
  transition: all 0.3s ease;
}

.btn-success:hover, .btn-green:hover {
  background: linear-gradient(135deg, #1a6b1a 0%, #228B22 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}

.btn-success:active, .btn-green:active {
  background: linear-gradient(135deg, #0d4c0d 0%, #1a6b1a 100%);
  transform: translateY(-1px);
}

.btn-success:focus, .btn-green:focus {
  box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.25);
  outline: none;
}

/* Gri/Geri Butonu */
.btn-secondary, .btn-geri, .btn-outline-dark {
  color: #343a40;
  border: 2px solid #343a40;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-geri:hover, .btn-outline-dark:hover {
  background-color: #343a40;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 58, 64, 0.3);
}

.btn-secondary:active, .btn-geri:active, .btn-outline-dark:active {
  background-color: #212529;
  transform: translateY(-1px);
}

.btn-secondary:focus, .btn-geri:focus, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(52, 58, 64, 0.25);
  outline: none;
}

/* BÃ¼yÃ¼k Buton */
.btn-lg {
  padding: 14px 40px;
  font-size: 1.1em;
}

/* KÃ¼Ã§Ã¼k Buton */
.btn-sm {
  padding: 8px 16px;
  font-size: 0.9em;
}

/* Link Stil Butonu */
.nav-btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.nav-btn:active {
  transform: scale(0.98);
}

/* Focus State */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
  outline: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--farm-brown);
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #6b2800 0%, #8B4513 40%, #7a3200 100%);
  color: white;
  padding: 0;
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.08) inset;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 1.35em;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.nav-brand:hover {
  transform: scale(1.04);
  color: #ffe0b0;
  text-decoration: none;
}

.brand-icon { font-size: 1.3em; }
.brand-text { display: none; }
@media (min-width: 640px) { .brand-text { display: inline; } }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93em;
  padding: 7px 13px;
  border-radius: 8px;
  position: relative;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.13);
  text-decoration: none;
  transform: translateY(-1px);
}
.nav-link.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Underline animasyonu kaldırıldı, arka plan hover var */
.nav-link::after { display: none; }
.nav-link::before { display: none; }

.nav-divider {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.18);
  margin: 0 6px;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: auto;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content p {
  margin: 10px 0;
  font-size: 0.95em;
}

.footer-tagline {
  font-style: italic;
  opacity: 0.9;
}

main {
  flex: 1;
}

/* Error Page */
.error-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.error-content {
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

.error-code {
  font-size: 6em;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.error-title {
  color: var(--farm-brown);
  margin: 20px 0;
}

.error-message {
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Chapters Grid */
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.chapter-link-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border: 2px solid #8B4513;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chapter-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.chapter-link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: #228B22;
}

.chapter-link-card:hover::before {
  left: 100%;
}

.chapter-number-big {
  font-size: 3em;
  font-weight: bold;
  color: #8B4513;
  margin-bottom: 10px;
  display: block;
}

.chapter-link-card h3 {
  font-size: 1.3em;
  color: #8B4513;
  margin: 10px 0;
}

.chapter-link-card p {
  font-size: 1em;
  color: #666;
  margin: 10px 0 20px 0;
  line-height: 1.5;
}

.read-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-btn:hover {
  background: linear-gradient(90deg, #A0522D 0%, #8B4513 100%);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(139,69,19,0.3);
}

.story-header .subtitle {
  font-size: 1.1em;
  margin: 10px 0 0 0;
  opacity: 0.85;
}
/* ============================================ */
/* NAVİGASYON AUTH LİNKLERİ */
/* ============================================ */

.nav-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.nav-user {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
}

.auth-link {
  background: rgba(139, 69, 19, 0.2) !important;
  border: 1px solid rgba(139, 69, 19, 0.4);
  border-radius: 5px;
  padding: 8px 15px !important;
  transition: all 0.3s ease !important;
}

.auth-link:hover {
  background: rgba(139, 69, 19, 0.4) !important;
  border-color: rgba(139, 69, 19, 0.6);
  transform: scale(1.05);
}

.nav-logout {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-size: 1em;
}

.nav-logout:hover {
  background: rgba(220, 53, 69, 0.2);
  border-radius: 5px;
  transform: scale(1.05);
}
