/* Judith Morales - Modern Site Styles */
/* Purple-themed, calming, professional */

:root {
  --purple-dark: #5B2C6F;
  --purple-mid: #7D3C98;
  --purple-light: #A569BD;
  --purple-pale: #E8DAEF;
  --purple-wash: #F5EEF8;
  --text-dark: #2C2C2C;
  --text-mid: #555555;
  --text-light: #777777;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(91, 44, 111, 0.1);
  --shadow-hover: 0 8px 30px rgba(91, 44, 111, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 400;
  color: var(--purple-dark);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--purple-mid);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--purple-dark);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--purple-wash);
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple-dark);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  color: var(--text-mid);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-mid);
  border-bottom-color: var(--purple-light);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu span {
  width: 25px;
  height: 2px;
  background: var(--purple-dark);
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--purple-wash) 0%, var(--white) 100%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: none;
  background: linear-gradient(135deg, var(--purple-pale) 0%, #f5e6ff 100%);
  /* margin-bottom: 2rem; */
  border: 0;
  outline: none;
  box-shadow: none;
  filter: none;
}

.hero h1 {
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--purple-mid);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--purple-mid);
  border: 2px solid var(--purple-mid);
}

.btn-outline:hover {
  background: var(--purple-mid);
  color: var(--white);
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple-light);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card .author {
  color: var(--purple-dark);
  font-weight: 500;
}

/* Blog / Insights */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--purple-mid);
}

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

.about-image {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-mid);
}

/* Contact Form */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.contact-note {
  background: var(--purple-pale);
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--purple-pale);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(165, 105, 189, 0.1);
}

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

/* Footer */
footer {
  background: var(--purple-dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

footer p {
  opacity: 0.8;
  font-size: 0.9rem;
}

footer a {
  color: var(--purple-pale);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* All Services Page */
.services-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.service-detail h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--purple-pale);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  section { padding: 3rem 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--purple-pale);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .about-image {
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

/* Animation for scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
