/* Healing Guide Hub - Wellness Website Styles */

:root {
  --primary-color: #2e7d5f;
  --secondary-color: #5d9c7f;
  --accent-color: #c2a36f;
  --light-bg: #f9f6f0;
  --dark-text: #2c3e2e;
  --light-text: #f9f6f0;
  --card-bg: #ffffff;
  --border-radius: 12px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

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

a:hover {
  color: var(--secondary-color);
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, #2e7d5f 0%, #5d9c7f 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(46, 125, 95, 0.2);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: white;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(46, 125, 95, 0.65), rgba(46, 125, 95, 0.45)), url('../img/bg/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #2c3e2e;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #d4b87f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(194, 163, 111, 0.3);
}

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

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

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-text);
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Why Choose Us */
.why-choose {
  background: white;
  padding: 5rem 0;
}

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

.why-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(46, 125, 95, 0.15);
}

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

.service-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.8rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.service-card p {
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: #f4f0e8;
  padding: 5rem 0;
}

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

.testimonial-card {
  background: white;
  padding: 2.2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--accent-color);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #444;
}

.testimonial-card h5 {
  font-weight: 600;
  color: var(--primary-color);
}

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

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

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

.blog-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.07);
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 1.3rem;
  border: 2px solid #e4e0d8;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Service Detail Pages */
.service-detail {
  background: white;
  padding: 4rem 0;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.service-detail img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 2.5rem;
}

.services-list {
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.services-list ul {
  list-style: none;
  padding-left: 0;
}

.services-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e4e0d8;
  position: relative;
  padding-left: 2rem;
}

.services-list li:before {
  content: '✦';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

/* Footer */
footer {
  background: #2c3e2e;
  color: #d4d0c6;
  padding: 3rem 0 1.5rem;
  text-align: center;
  margin-top: 50px;
}

footer a {
  color: #d4d0c6;
  margin: 0 12px;
}

footer p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.6rem;
    background: #2e7d5f;
    position: absolute;
    top: 70px;
    right: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
  }

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

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

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

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

.mt-4 {
  margin-top: 2rem;
}

.blog-content img{
  width: 100%;
}

.blog-content {
  width: 750px;
  text-align: justify;
}

.logo img{
  width: 250px;
}