/* assets/css/style.css - Kadın Dünyası Native CSS */
:root {
  --color-primary: #6C4E85;
  --color-primary-dark: #553b6b;
  --color-secondary: #E5A9B4;
  --color-accent: #E94B9B;
  --color-dark: #121018;
  --color-dark-surface: #1A1625;
  --color-light: #FAFAFA;
  --color-text: #2D2533;
  --color-text-muted: #6B7280;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(108, 78, 133, 0.12);
  --shadow-lg: 0 10px 30px rgba(108, 78, 133, 0.18);
  --shadow-neon: 0 0 20px rgba(233, 75, 155, 0.35);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-light);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* Kapsayıcı */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Üst Menü / Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
}

.brand-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
}

.brand-logo span span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: #4A4052;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(108, 78, 133, 0.05);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #F0EDF2;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 110;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #4A4052;
  border-radius: var(--radius-sm);
}

.dropdown-item:hover {
  background: rgba(108, 78, 133, 0.08);
  color: var(--color-primary);
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #E5E7EB;
  color: var(--color-text);
}

.btn-outline:hover {
  background: #F9FAFB;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #1F2937;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  background: radial-gradient(circle at top right, rgba(233, 75, 155, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(108, 78, 133, 0.08), transparent 50%),
              #FFFFFF;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(108, 78, 133, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
}

.badge-pink {
  background: rgba(233, 75, 155, 0.1);
  color: var(--color-accent);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #F3F4F6;
}

.stat-box .num {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
}

.stat-box .label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Bölümler */
.section {
  padding: 70px 0;
}

.section-bg-gray {
  background-color: #F9FAFB;
}

.section-bg-dark {
  background-color: var(--color-dark);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.section-bg-dark .section-header h2 {
  color: #fff;
}

.section-bg-dark .section-header p {
  color: #9CA3AF;
}

/* Izgara Kartlar */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #F3F4F6;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 78, 133, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(108, 78, 133, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Mekan Kartı */
.place-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid #F3F4F6;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.place-img-holder {
  height: 180px;
  background: linear-gradient(135deg, #F3E8FF, #FCE7F3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-primary);
}

.place-body {
  padding: 20px;
}

.place-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: #F3E8FF;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 8px;
}

.place-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 6px;
}

.place-rating {
  font-size: 12px;
  font-weight: 700;
  color: #D97706;
  margin-bottom: 8px;
}

/* Sıkça Sorulan Sorular (Akordeon) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active {
  border-color: var(--color-primary);
  background: #FAF7FC;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #9CA3AF;
  padding: 60px 0 30px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #9CA3AF;
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  padding: 24px 0;
  font-size: 11px;
  line-height: 1.6;
  color: #6B7280;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* Mobil Menü */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
