@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

/*
Theme Name: Aura Astra
Author: Vishal Singh
Description: Modern astrology and spiritual consultation theme with a premium, calm aesthetic.
Version: 1.0.0
Tags: block-theme, full-site-editing, blog, portfolio
Text Domain: aurastra
*/

:root {
  --midnight: #0a1533;
  --slate: #4b5565;
  --gold: #d7b46a;
  --gold-deep: #b88a32;
  --card: #ffffff;
  --soft-shadow: 0 24px 50px rgba(10, 21, 51, 0.12);
  --font-title: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--midnight);
  background: radial-gradient(circle at 12% 10%, rgba(215, 180, 106, 0.18), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(90, 124, 188, 0.18), transparent 55%),
    linear-gradient(180deg, #f7f4ee 0%, #eef1f7 55%, #f7f4ee 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(10, 21, 51, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.wp-site-blocks {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--midnight);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, 0.88);
  border-bottom: 1px solid rgba(10, 21, 51, 0.08);
  backdrop-filter: blur(14px);
}

.site-header .wp-block-site-logo img {
  max-height: 44px;
  width: auto;
  border-radius: 999px;
  display: block;
}

.site-header .wp-block-site-logo {
  border-radius: 999px;
  overflow: hidden;
}

.header-columns {
  align-items: center;
}

.header-columns .wp-block-column {
  display: flex;
  align-items: center;
}

.header-columns .wp-block-navigation {
  justify-content: center;
}

.header-columns .wp-block-navigation a {
  color: var(--midnight);
  font-weight: 600;
}

.header-columns .wp-block-navigation__container {
  gap: 18px;
}

.header-cta {
  justify-content: flex-end;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold-deep);
  font-weight: 700;
}

.hero {
  padding: 120px 0 90px;
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.card-grid > * {
  height: 100%;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(10, 21, 51, 0.08);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(10, 21, 51, 0.2);
}

.stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 28px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(43, 10, 18, 0.08);
}

.wp-block-button__link {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.button-gold .wp-block-button__link {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 14px 28px rgba(215, 180, 106, 0.35);
}

.button-dark .wp-block-button__link {
  background: var(--midnight);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 21, 51, 0.2);
}

.button-ghost .wp-block-button__link {
  background: transparent;
  color: var(--midnight);
  border: 1px solid rgba(10, 21, 51, 0.2);
}

.testimonial-stars {
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}

.cta-band {
  background: linear-gradient(120deg, rgba(10, 21, 51, 0.95), rgba(45, 78, 122, 0.95));
  color: #fff;
  border-radius: 26px;
  padding: 48px;
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  border: 1px solid rgba(59, 11, 20, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
}

.wp-block-navigation__responsive-container {
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(18px);
}

.wp-block-navigation__responsive-container-content {
  padding: 40px 24px;
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

.floaty {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(10, 21, 51, 0.1);
  background: rgba(247, 244, 238, 0.9);
}

@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 70px;
  }

  .site-header .wp-block-group.container {
    gap: 16px;
  }

  .site-header .wp-block-site-logo img {
    max-height: 38px;
  }

  .header-columns .wp-block-column,
  .header-cta {
    justify-content: center;
  }
}
