/* style.css */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fffaf7;
  color: #5a4036;
  line-height: 1.7;
}

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

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 250, 247, 0.82), rgba(255, 250, 247, 0.82)),
    url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-content {
  max-width: 850px;
}

.tag {
  display: inline-block;
  background: #dca8a0;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-size: 14px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.95;
  color: #6d3f36;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #be7f84;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 40px;
  transition: .3s;
  font-weight: 600;
}

.primary {
  background: #d89a9f;
  color: white;
}

.primary:hover {
  background: #c7848a;
}

.secondary {
  border: 2px solid #d89a9f;
  color: #b56d75;
}

.secondary:hover {
  background: #f7e4e6;
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #6d3f36;
  margin-bottom: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: 12px;
  color: #b56d75;
}

.therapist {
  background: #fdf1ef;
  padding: 100px 0;
}

.therapist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.therapist-image img {
  width: 100%;
  border-radius: 30px;
}

.mini-title {
  color: #b56d75;
  font-weight: 600;
  letter-spacing: 1px;
}

.therapist-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.therapist-content p {
  margin-bottom: 20px;
}

blockquote {
  margin-top: 30px;
  font-style: italic;
  font-size: 1.3rem;
  color: #b56d75;
}

.location-box {
  background: white;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.location-box h3 {
  margin-bottom: 15px;
  color: #6d3f36;
}

.btn.location {
  display: inline-block;
  margin-top: 30px;
  border: 2px solid #d89a9f;
  color: #b56d75;
}

.btn.location:hover {
  background: #f7e4e6;
}

.cta {
  background: #d89a9f;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.white {
  background: white;
  color: #b56d75;
  display: inline-block;
  margin-top: 25px;
}

footer {
  background: #fff;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

@media(max-width:900px) {

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

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

  .therapist-content h2 {
    font-size: 3rem;
  }

  .cta h2 {
    font-size: 3rem;
  }

}