/* Energy Healing & Coaching Website - Main Styles */

/* Color Palette inspired by light golden brown and white */
:root {
  --primary-gold: #C9A86A;
  --light-gold: #E8D7B8;
  --soft-white: #FEFDFB;
  --cream: #F5F1EA;
  --dark-brown: #6B5A47;
  --text-dark: #2C2419;
  --accent-sage: #A8B5A0;
  --shadow: rgba(107, 90, 71, 0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--soft-white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

/* Header & Navigation */
header {
  background: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
}

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

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

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-gold);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 0.7;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-top: 0.1rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--dark-brown);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-brown);
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .tagline {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-sage) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 6rem;
  box-shadow: 0 20px 60px var(--shadow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-gold);
  color: white;
  box-shadow: 0 4px 15px rgba(201, 168, 106, 0.3);
}

.btn-primary:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--dark-brown);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Introduction Section */
.intro-section {
  background: var(--soft-white);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.intro-image {
  background: var(--cream);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-gold);
}

/* Services Grid */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px var(--shadow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.service-card p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  background: var(--soft-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--light-gold);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--dark-brown);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.7;
  margin: 0;
}

.rating {
  color: var(--primary-gold);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-brown) 100%);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: white;
  opacity: 0.95;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--cream);
  padding: 4rem 2rem;
}

.newsletter-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid var(--light-gold);
  border-radius: 50px;
  font-size: 1rem;
  background: white;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-gold);
}

/* Footer */
footer {
  background: var(--dark-brown);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  background: transparent;
  mix-blend-mode: lighten;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gold);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Contact Page */
.contact-section {
  background: var(--soft-white);
}

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

.contact-info {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 20px;
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-top: 0.2rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
}

/* About Page */
.about-hero {
  background: var(--cream);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.about-content {
  margin-top: 3rem;
  display: grid;
  gap: 3rem;
}

.about-section {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.credential-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.credential-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

/* Blog/Resources */
.blog-section {
  background: var(--soft-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-excerpt {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  gap: 1rem;
}

/* Services Detail Page */
.services-detail {
  padding: 8rem 2rem 4rem;
}

.service-detail-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container,
  .intro-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-placeholder {
    height: 300px;
    width: 300px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  nav ul {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--soft-white);
    width: 100%;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: left 0.3s ease;
  }

  nav ul.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .logo img {
    height: 50px;
  }

  .logo-brand-name {
    font-size: 1.1rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
  }

  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Success/Error Messages */
.message {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
  display: none;
}

.message.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--light-gold);
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
  display: none;
}

.spinner.show {
  display: block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
