:root {
  --sage-green: #b7c4a9;
  --warm-beige: #f5efe6;
  --muted-lavender: #d6cde4;
  --text-dark: #2f2f2f;
  --accent: #7a9e7e;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--warm-beige);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background: var(--sage-green);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  margin-left: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.book-btn {
  background: var(--muted-lavender);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
}

/* Hero Section */
.hero {
  background: url('clinic1.jpg') no-repeat center center/cover;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 20px;
  display: inline-block;
}

/* Sections */
.section {
  padding: 70px 0;
  background: var(--warm-beige);
}

.services-grid, .practitioner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card, .practitioner-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover, .practitioner-card:hover {
  transform: translateY(-5px);
}

.practitioner-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial {
  min-width: 100%;
  text-align: center;
  font-style: italic;
}

.prev, .next {
  position: absolute;
  top: 50%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Contact */
iframe {
  border-radius: 10px;
  margin-top: 15px;
}

/* Footer */
footer {
  background: var(--sage-green);
  color: white;
  text-align: center;
  padding: 20px 0;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
