/* ===========================
   Readings by Psychic Hope
   =========================== */

:root {
  --color-bg: #0a0f14;
  --color-bg-alt: #0f1a20;
  --color-teal: #1a6b6b;
  --color-teal-deep: #0e4040;
  --color-teal-light: #2ad4bf;
  --color-silver: #c0c8d0;
  --color-silver-light: #e0e4e8;
  --color-gold: #c9a84c;
  --color-fog: #6b7a6e;
  --color-moss: #4a5e4a;
  --color-text: #d8dce0;
  --color-text-muted: #8a94a0;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--color-teal-light);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-silver-light);
}

/* ===========================
   Section Title
   =========================== */

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  color: var(--color-silver-light);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

/* ===========================
   Hero
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 107, 107, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(74, 94, 74, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(14, 64, 64, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #080d12 0%, #0a1418 40%, #0c1a1f 100%);
  z-index: 0;
}

/* Subtle star-field effect */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--color-silver);
  animation: twinkle 4s ease-in-out infinite alternate;
}

.hero-bg::before {
  width: 2px;
  height: 2px;
  top: 15%;
  left: 25%;
  box-shadow:
    60vw 10vh 0 0 rgba(192, 200, 208, 0.3),
    20vw 60vh 0 0 rgba(192, 200, 208, 0.2),
    75vw 30vh 0 0 rgba(192, 200, 208, 0.25),
    40vw 80vh 0 0 rgba(192, 200, 208, 0.15),
    10vw 40vh 0 0 rgba(192, 200, 208, 0.2),
    85vw 70vh 0 0 rgba(192, 200, 208, 0.3),
    55vw 50vh 0 0 rgba(192, 200, 208, 0.15),
    30vw 20vh 0 0 rgba(192, 200, 208, 0.25);
}

.hero-bg::after {
  width: 2px;
  height: 2px;
  top: 45%;
  left: 65%;
  animation-delay: 2s;
  box-shadow:
    -30vw 5vh 0 0 rgba(192, 200, 208, 0.2),
    -10vw -20vh 0 0 rgba(192, 200, 208, 0.3),
    15vw -10vh 0 0 rgba(192, 200, 208, 0.15),
    -50vw 30vh 0 0 rgba(192, 200, 208, 0.25),
    25vw 20vh 0 0 rgba(192, 200, 208, 0.2),
    -40vw -15vh 0 0 rgba(192, 200, 208, 0.15);
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}

.hero-symbols {
  font-size: 1.5rem;
  color: var(--color-teal-light);
  letter-spacing: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--color-silver-light);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

/* Glow animation */
.glow {
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow:
      0 0 10px rgba(42, 212, 191, 0.15),
      0 0 30px rgba(42, 212, 191, 0.08);
  }
  100% {
    text-shadow:
      0 0 20px rgba(42, 212, 191, 0.3),
      0 0 50px rgba(42, 212, 191, 0.12),
      0 0 80px rgba(42, 212, 191, 0.06);
  }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-teal-light), #1a9a8a);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(70%); }
}

.cta-button:hover {
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 212, 191, 0.3);
}

.cta-light {
  background: linear-gradient(135deg, var(--color-gold), #d4af37);
  color: var(--color-bg);
}

.cta-light:hover {
  color: var(--color-bg);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* ===========================
   About
   =========================== */

.about {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(14, 64, 64, 0.12) 0%, transparent 60%),
    var(--color-bg-alt);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-symbol {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.about-content p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-size: 1.05rem;
}

/* ===========================
   Services
   =========================== */

.services {
  padding: 6rem 0;
  background: var(--color-bg);
}

.services-intro {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  font-style: italic;
}

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

.service-card {
  background:
    linear-gradient(135deg, rgba(26, 107, 107, 0.08), rgba(14, 64, 64, 0.04));
  border: 1px solid rgba(42, 212, 191, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(42, 212, 191, 0.3);
  transform: translateY(-3px);
}

.service-card.featured {
  border-color: rgba(201, 168, 76, 0.3);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(14, 64, 64, 0.04));
}

.service-card.featured:hover {
  border-color: rgba(201, 168, 76, 0.5);
}

.service-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-teal-light);
}

.service-card.featured .service-icon {
  color: var(--color-gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-silver-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===========================
   Promo Banner
   =========================== */

.promo {
  padding: 5rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.promo-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.promo-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-silver-light);
  margin-bottom: 1rem;
}

.promo-highlight {
  color: var(--color-gold);
  position: relative;
}

.promo-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.promo-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===========================
   Contact / Location
   =========================== */

.contact {
  padding: 6rem 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 0.5rem;
}

.contact-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-silver-light);
  letter-spacing: 0.03em;
}

.contact-link:hover {
  color: var(--color-teal-light);
}

address {
  font-style: normal;
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.walkins {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 212, 191, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* ===========================
   Footer
   =========================== */

.footer {
  padding: 3rem 0;
  text-align: center;
  background:
    linear-gradient(180deg, var(--color-bg), #060a0e);
  border-top: 1px solid rgba(192, 200, 208, 0.08);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-silver);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-copy {
  color: var(--color-fog);
  font-size: 0.8rem;
}

.footer-disclaimer {
     font-size: 0.75rem;
     opacity: 0.6;
     max-width: 600px;
     margin: 1.5rem auto;
     line-height: 1.5;
   }

/* ===========================
   Responsive — Tablet+
   =========================== */

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }

  .contact-info {
    align-items: flex-start;
    text-align: left;
  }
}

/* ===========================
   Accessibility / Reduced Motion
   =========================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
a:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 3px;
}
