/* ============================================
   TEMA 5: ORGANIC / ANTI-GRID
   Asimetrik, Organik Şekiller, Doğal Akış
   2026 Trend: Breaking Template Uniformity
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --organic-bg: #faf9f6;
  --organic-bg-alt: #f5f3f0;
  --organic-text: #1a1a1a;
  --organic-text-secondary: #4a4a4a;
  --organic-text-muted: #7a7a7a;
  --organic-accent: #2d5a4a;
  --organic-accent-light: #4a8b6f;
  --organic-warm: #c4a77d;
  --organic-coral: #e07a5f;
  --organic-sand: #e6ddd0;
  --organic-radius: 50% 20% / 10% 40%;
  --organic-radius-alt: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--organic-bg);
  color: var(--organic-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Organic Background Pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(196, 167, 125, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45, 90, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.organic-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

/* Organic Header */
.organic-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
}

.organic-header .organic-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.organic-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--organic-accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.organic-logo i { font-size: 1.5rem; color: var(--organic-coral); }

/* Navigation */
.organic-nav { display: flex; gap: 8px; }

.organic-nav a {
  padding: 12px 20px;
  border-radius: 30px;
  color: var(--organic-text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.organic-nav a:hover {
  color: var(--organic-accent);
  background: rgba(45, 90, 74, 0.05);
}

.organic-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--organic-accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.organic-nav a:hover::after { opacity: 1; }

/* CTA Button */
.organic-cta {
  padding: 14px 32px;
  background: var(--organic-accent);
  color: white;
  font-weight: 600;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
}

.organic-cta:hover {
  background: var(--organic-accent-light);
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

/* Main Content */
.organic-main { padding-top: 100px; min-height: 100vh; }

/* Organic Hero - Asymmetric */
.organic-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0;
  align-items: center;
}

.organic-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--organic-text);
}

.organic-hero-content h1 span {
  display: block;
  color: var(--organic-accent);
  font-style: italic;
}

.organic-hero-content p {
  font-size: 1.15rem;
  color: var(--organic-text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

.organic-hero-image {
  position: relative;
  height: 500px;
}

.organic-blob {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--organic-sand) 0%, var(--organic-warm) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
  75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

/* Organic Sections - Staggered */
.organic-section {
  padding: 100px 0;
  position: relative;
}

.organic-section-alt { background: var(--organic-bg-alt); }

.organic-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-align: center;
}

.organic-section-subtitle {
  text-align: center;
  color: var(--organic-text-secondary);
  margin-bottom: 64px;
}

/* Organic Cards - Floating */
.organic-float-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.organic-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
}

.organic-card:nth-child(1) { transform: rotate(-2deg); margin-top: 0; }
.organic-card:nth-child(2) { transform: rotate(1deg); margin-top: 40px; }
.organic-card:nth-child(3) { transform: rotate(-1deg); margin-top: 20px; }

.organic-card:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.organic-card-icon {
  width: 70px;
  height: 70px;
  background: var(--organic-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  color: var(--organic-accent);
}

.organic-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.organic-card p { color: var(--organic-text-secondary); }

/* Organic Features - Wave Layout */
.organic-wave-section {
  position: relative;
  padding: 100px 0;
}

.organic-wave-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--organic-bg-alt);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.organic-feature-row {
  display: flex;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.organic-feature-row:nth-child(even) { flex-direction: row-reverse; }

.organic-feature-image {
  flex: 1;
  height: 400px;
  background: linear-gradient(135deg, var(--organic-warm), var(--organic-coral));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  position: relative;
  overflow: hidden;
}

.organic-feature-content {
  flex: 1;
  padding: 40px;
}

.organic-feature-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.organic-feature-content p {
  color: var(--organic-text-secondary);
  margin-bottom: 24px;
}

/* Organic Stats - Scattered */
.organic-scatter-stats {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 300px;
  margin: 64px 0;
  position: relative;
}

.organic-stat {
  text-align: center;
  position: relative;
}

.organic-stat:nth-child(1) { transform: translateY(0) rotate(-3deg); }
.organic-stat:nth-child(2) { transform: translateY(-30px) rotate(2deg); }
.organic-stat:nth-child(3) { transform: translateY(-10px) rotate(-1deg); }
.organic-stat:nth-child(4) { transform: translateY(-40px) rotate(3deg); }

.organic-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--organic-accent);
}

.organic-stat-label {
  color: var(--organic-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Organic CTA */
.organic-cta-section {
  text-align: center;
  padding: 100px 40px;
  background: var(--organic-accent);
  border-radius: 100px 100px 0 0 / 50px 50px 0 0;
  position: relative;
  overflow: hidden;
}

.organic-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.organic-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
}

.organic-cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.organic-cta-btn {
  padding: 18px 40px;
  background: white;
  color: var(--organic-accent);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.organic-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Organic Footer */
.organic-footer {
  background: var(--organic-text);
  color: white;
  padding: 80px 0 40px;
  border-radius: 50px 50px 0 0 / 20px 20px 0 0;
}

.organic-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
}

.organic-footer a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.organic-footer a:hover { color: white; }

/* Responsive */
@media (max-width: 1024px) {
  .organic-hero { grid-template-columns: 1fr; text-align: center; }
  .organic-hero-content h1 { font-size: 2.5rem; }
  .organic-float-grid { grid-template-columns: repeat(2, 1fr); }
  .organic-feature-row,
  .organic-feature-row:nth-child(even) { flex-direction: column; }
  .organic-scatter-stats { flex-wrap: wrap; height: auto; gap: 32px; }
  .organic-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .organic-nav { display: none; }
}

@media (max-width: 640px) {
  .organic-float-grid { grid-template-columns: 1fr; }
  .organic-card:nth-child(1),
  .organic-card:nth-child(2),
  .organic-card:nth-child(3) { transform: none; margin-top: 0; }
  .organic-footer-grid { grid-template-columns: 1fr; }
  .organic-cta-section { border-radius: 50px 50px 0 0 / 25px 25px 0 0; }
}
