/*
Theme Name: Finans Rehberi Yeni Nesil
Theme URI: https://finansrehberi.org
Description: Finans Rehberi - WhatsApp Image 2026-06-01 ve Mobil Uyumlu Özel Tema
Version: 2.3
Author: Finans Rehberi
Text Domain: finans-rehberi-yeni
License: GPL v2 or later
*/

:root {
  --primary-navy: #0f2540;        /* Görseldeki derin lacivert */
  --bg-pastel-blue: #E8F4F8;      /* Görseldeki açık pastel mavi arka plan */
  --accent-blue: #5B9FBE;         /* Detay ve alt menü mavisi */
  --accent-hover: #4a7ba7;
  --border-color: #D0E8F2;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-pastel-blue);
  color: var(--primary-navy);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header & Navigation */
header.site-header {
  background-color: var(--white);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
}

.custom-logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.custom-logo-fallback .logo-icon {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.1rem;
  box-shadow: 0 4px 10px rgba(15, 37, 64, 0.05);
  border: 1px solid var(--border-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-logo-fallback .logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
  margin-top: 1px;
}

/* Navigation - Exactly like the Screenshot */
.site-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.25rem;
}

.site-navigation a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--primary-navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.25s ease;
}

.site-navigation a:hover::after,
.site-navigation .current-menu-item a::after {
  width: 100%;
}

.site-navigation .current-menu-item a {
  color: var(--primary-navy);
  font-weight: 600;
}

/* Landing Page Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 4.5rem auto;
  padding: 0 2.5rem;
  gap: 4rem;
}

.hero-content {
  flex: 1.2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--accent-blue);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-media {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

/* Mascot Sticker card with drop shadow matching the image */
.mascot-card {
  background-color: var(--white);
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(15, 37, 64, 0.06);
  display: inline-block;
  transition: transform 0.3s ease;
}

.mascot-card:hover {
  transform: rotate(1deg) scale(1.02);
}

/* Custom Clean Rounded Button */
.btn-primary {
  background: var(--accent-blue);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(91, 159, 190, 0.15);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(91, 159, 190, 0.25);
}

/* Centered Minimal Footer */
footer.site-footer {
  text-align: center;
  padding: 3.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--accent-blue);
  font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-section {
    margin: 3rem auto;
    gap: 3rem;
  }
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  
  .site-navigation ul {
    gap: 1.25rem;
  }
  .site-navigation a {
    font-size: 0.85rem;
  }

  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
    margin: 2rem auto;
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .mascot-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .site-navigation ul {
    gap: 1rem;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}
