/* CSS Variables */
:root {
  --font-size: 16px;
  --background: #0a0e27;
  --foreground: #e8e9ef;
  --card: #1a1f3a;
  --card-foreground: #e8e9ef;
  --primary: #8b5cf6;
  --primary-foreground: #ffffff;
  --secondary: #1e293b;
  --secondary-foreground: #e8e9ef;
  --muted: #1e293b;
  --muted-foreground: #9ca3af;
  --accent: #7c3aed;
  --accent-foreground: #ffffff;
  --border: rgba(139, 92, 246, 0.2);
  --input: rgba(139, 92, 246, 0.1);
  --input-background: #1e293b;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --radius: 0.75rem;
  
  /* Gradients */
  --gradient-cosmic: linear-gradient(135deg, #0a0e27 0%, #1e1b4b 50%, #312e81 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

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

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

h4 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

p {
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  position: relative;
}

.star-icon {
  width: 2rem;
  height: 2rem;
  color: #fbbf24;
}

.glow {
  position: absolute;
  inset: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 50%;
  filter: blur(4px);
  animation: pulse 2s infinite;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #fbbf24, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #c084fc;
}

.desktop-nav {
  display: none;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #fbbf24;
  background: rgba(139, 92, 246, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #fbbf24, #facc15);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.desktop-cta {
  display: none;
  gap: 0.75rem;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(139, 92, 246, 0.1);
}

.mobile-menu {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

.mobile-nav {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #fbbf24;
  background: rgba(139, 92, 246, 0.1);
}

.mobile-cta {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, #f59e0b, #eab308);
  color: #0f172a;
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(to right, #d97706, #ca8a04);
}

.btn-outline {
  border: 1px solid #8b5cf6;
  color: #c084fc;
  background: transparent;
}

.btn-outline:hover {
  background: #8b5cf6;
  color: white;
}

.btn-full {
  width: 100%;
}

.btn-hero-primary {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  background: linear-gradient(to right, #f59e0b, #eab308);
  color: #0f172a;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
  background: linear-gradient(to right, #d97706, #ca8a04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.05);
}

.btn-hero-secondary {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  border: 2px solid #8b5cf6;
  color: #c084fc;
  background: transparent;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary:hover {
  background: #8b5cf6;
  color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.05);
}

.btn-astrology {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
  background: linear-gradient(to right, #7c3aed, #6366f1);
  color: white;
}

.btn-astrology:hover {
  background: linear-gradient(to right, #6d28d9, #4f46e5);
}

/* Main Content */
.main-content {
  padding-top: 4rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #7c3aed 100%);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent, rgba(15, 23, 42, 0.4));
}

.cosmic-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cosmic-dot {
  position: absolute;
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.cosmic-dot-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  opacity: 0.8;
}

.cosmic-dot-2 {
  top: 75%;
  left: 75%;
  width: 4px;
  height: 4px;
  background: #c084fc;
  opacity: 0.6;
}

.cosmic-dot-3 {
  top: 50%;
  left: 16.67%;
  width: 6px;
  height: 6px;
  background: #fde047;
  opacity: 0.7;
}

.cosmic-dot-4 {
  top: 16.67%;
  right: 33.33%;
  width: 4px;
  height: 4px;
  background: #a78bfa;
  opacity: 0.8;
}

.cosmic-dot-5 {
  bottom: 25%;
  right: 25%;
  width: 8px;
  height: 8px;
  background: #facc15;
  opacity: 0.6;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
}

.hero-content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #fbbf24;
}

.hero-icon {
  color: #fbbf24;
}

.hero-icon-main {
  width: 2.5rem;
  height: 2.5rem;
}

.rotating {
  animation: rotate 8s linear infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fde047, #facc15, #fde047);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero-title-accent {
  background: linear-gradient(to right, #c084fc, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-zap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.zap-icon {
  width: 3rem;
  height: 3rem;
  color: #fbbf24;
  animation: bounce 2s infinite;
}

.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-energy {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.energy-glow {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(251, 191, 36, 0.2));
  border-radius: 50%;
  filter: blur(20px);
  animation: pulse 3s infinite;
}

.energy-image {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #0f172a, transparent);
}

/* Astrology Section */
.astrology-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.section-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.section-icon svg {
  width: 3rem;
  height: 3rem;
  color: #fbbf24;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #c084fc, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  max-width: 64rem;
  margin: 0 auto;
}

.section-description p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fbbf24;
  font-size: 1.125rem;
}

.section-tagline svg {
  width: 1.25rem;
  height: 1.25rem;
}

.astrology-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.astrology-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card Styles */
.card {
  background: rgba(26, 31, 58, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.astrology-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 130, 246, 0.3));
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-title {
  font-size: 1.5rem;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}

.card-content p {
  color: #d1d5db;
  line-height: 1.6;
}

.karma-areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.karma-area {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.karma-area:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.karma-area-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.karma-area-icon.confidence {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.karma-area-icon.relationship {
  background: linear-gradient(to right, #ec4899, #f43f5e);
}

.karma-area-icon.career {
  background: linear-gradient(to right, #10b981, #059669);
}

.karma-area-icon.abundance {
  background: linear-gradient(to right, #eab308, #f59e0b);
}

.karma-area-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.karma-area h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.karma-area p {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
}

.life-challenges {
  text-align: center;
  position: relative;
  z-index: 10;
}

.life-challenges h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.challenge-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  text-align: center;
}

.challenge-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.challenge-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fde047;
  margin-bottom: 0.5rem;
}

.challenge-card p {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Loading Styles */
.loading-placeholder {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-top: 2px solid #8b5cf6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.lazy-section {
  min-height: 50vh;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
  
  .karma-areas {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .desktop-cta {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .astrology-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .challenges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* --- Sections & Layout --- */
.section{padding:5rem 0;position:relative}
.section-alt{background:rgba(255,255,255,0.02)}
.section .container{position:relative;z-index:1}
.section-title{font-size:clamp(2rem,5vw,3rem);font-weight:700;margin:0 0 0.5rem}
.section-subtitle{opacity:.8;margin:0 0 2rem}

/* Anchors için sabit header boşluğu */
section[id]{scroll-margin-top:5rem}

/* Grid helpers */
.grid{display:grid;gap:1.25rem}
.cards-3{grid-template-columns:1fr}
@media (min-width:768px){.cards-3{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1100px){.cards-3{grid-template-columns:repeat(3,1fr)}}

/* Two column layout */
.two-col{display:grid;gap:2rem}
@media (min-width:1024px){.two-col{grid-template-columns:1.1fr .9fr}}

/* --- Cards (blog/testimonials) --- */
.card{background:rgba(26,31,58,.35);border:1px solid rgba(139,92,246,.25);
      border-radius:var(--radius);overflow:hidden;backdrop-filter:blur(8px);
      transition:.25s}
.card:hover{transform:translateY(-2px);border-color:rgba(139,92,246,.4)}
.card-media img{display:block;width:100%;height:220px;object-fit:cover}
.card-body{padding:1rem}
.card-title{margin:.25rem 0 .5rem;font-size:1.125rem;line-height:1.35}
.card-text{color:#d1d5db}
.card-meta{opacity:.8;font-size:.875rem;margin-top:.5rem}

/* Badges */
.badge{display:inline-block;padding:.35rem .6rem;border-radius:999px;
       font-size:.75rem;font-weight:600;margin-bottom:.5rem}
.badge-warning{background:#f59e0b1a;color:#f59e0b}
.badge-pink{background:#ff4d8d1a;color:#ff4d8d}
.badge-green{background:#00c8531a;color:#00c853}

/* Links inside cards */
.btn-link{display:inline-flex;align-items:center;gap:.35rem;margin-top:.75rem;
          color:#fbbf24;text-decoration:none}
.btn-link:hover{text-decoration:underline}

/* --- About --- */
.pill-list{display:flex;flex-wrap:wrap;gap:.5rem;margin:12px 0 18px;padding:0;list-style:none}
.pill-list li{background:rgba(255,255,255,.06);padding:.5rem .75rem;border-radius:999px}
.cta-row{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:12px}
.about-photo img{width:100%;border-radius:20px;display:block;border:1px solid var(--border)}
.quote{margin-top:14px;opacity:.9}

/* --- Contact --- */
.form label{display:block;margin:10px 0}
.form input,.form textarea{
  width:100%;padding:12px;border-radius:12px;border:1px solid transparent;
  background:var(--input);color:var(--foreground)
}
.form textarea{resize:vertical}
.form .consent{display:flex;align-items:center;gap:.5rem}
.contact-list{list-style:none;padding:0;margin:12px 0}
.contact-list li{margin:6px 0}

/* --- Footer --- */
.footer{border-top:1px solid var(--border);padding:2rem 0;background:rgba(15,23,42,.6)}
.footer p{opacity:.9;text-align:center}

