/* Reset + Base Styles */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Universal Image Styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Modular Image Classes */
.hero-img { max-width: 800px; margin: 0 auto; }
.package-img { max-width: 400px; }
.pillar-img { max-width: 300px; }
.topic-img { max-width: 250px; }
.footer-logo-img { max-width: 180px; margin: 0 auto 20px; display: block; }

/* Buttons */
.cta-button,
.discover-button,
.learn-button,
.book-button {
  background-color: #ff4d4d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover,
.discover-button:hover,
.learn-button:hover,
.book-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 77, 77, 0.3);
}



/* ===== Full-Cover Hero Section ===== */
.hero-wellness {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('/solace-landing/images/solace-image1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6rem 2rem 2rem;
  color: #ffffff;
}

/* Overlay */
.hero-wellness::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Text Box */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 12px;
  color: #f5e9dc;
  margin-top: 2rem;
  margin-left: 8%;
  margin-right: 10%;
}

/* Headline */
.hero-content h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f5e9dc;
}

/* Subheadline */
.hero-content h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #e8d9c5;
}

/* Tagline */
.tagline {
  font-size: 1rem;
  font-weight: bold;
  color: #ffbfa3;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .hero-wellness {
    height: 80vh;
    padding: 4rem 1.5rem 2rem;
    background-position: top center;
  }

  .hero-content {
    max-width: 100%;
    margin: 1rem auto 0;
    padding: 1.5rem;
    text-align: center;
  }

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

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}





/* Section 2 & 3: Wellness Grid */
.wellness-grid {
  padding: 60px 40px;
  background-color: #f9f9f9;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.intro-text h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
  padding: 0 20px;
}

.grid-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  height: 100%;
}


.grid-card img.package-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 12px;
}

.grid-card h3 {
  font-size: 1.5rem;
  color: #ff6f61;
  margin-bottom: 15px;
}

.grid-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.grid-card li {
  margin-bottom: 10px;
}

.grid-card p {
  margin-bottom: 20px;
}

.discover-button {
  margin-top: auto;
  background-color: #ff4d4d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.discover-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 77, 77, 0.3);
}



/* <!-- Section 4: The solace Method --> */

.solace-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.solace-content h2 {
  color: #0077b6;
}


.solace-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}


.solace-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .solace-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  text-align: center;
  padding: 20px;
}

.pillar-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
  transition: box-shadow 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pillar-img:hover {
  box-shadow: 0 0 0 8px rgba(0, 119, 182, 0.25);
}

.pillar-card h4 {
  font-size: 1rem;
  color: #0077b6;
  margin-top: 10px;
}



/* Section 5: Testimonials + Health Guide */
.solace-testimonials {
  padding: 60px 40px;
  background-color: #f0f4f8;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
}
.quote {
  font-style: italic;
  margin-bottom: 10px;
}
.author {
  font-weight: 500;
  color: #0077b6;
}
.stars {
  color: #ffcc00;
  font-size: 1.2rem;
}

.health-guide-expanded {
  text-align: center;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.health-guide-expanded h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.health-guide-expanded h3 {
  font-size: 1.4rem;
  color: #ff6f61;
  margin-bottom: 20px;
}

.guide-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.learn-button {
  background-color: #ff4d4d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 40px;
  display: inline-block;
}

.learn-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 77, 77, 0.3);
}

.guide-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.topic-card {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.topic-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
}

.topic-card p {
  font-size: 1rem;
  color: #0077b6;
  margin: 0;
}



/* Section 6: Visual Pillars */
/* Section Container */
.why-solace {
  padding: 60px 20px;
  background-color: #f0f4f8;
  border-radius: 20px;
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

/* Section Heading */
.why-solace h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 40px;
}

/* Grid Layout */
.solace-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 600px) {
  .solace-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 900px) {
  .solace-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Pillar Card */
.pillar-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover Effect */
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Pillar Image */
.pillar-img {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
}

/* Pillar Title */
.pillar-card h3 {
  font-size: 1.2rem;
  color: #0077b6;
  margin-bottom: 10px;
}

/* Pillar Description */
.pillar-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}
/* Section 6: Visual Pillars */
/* Section Container */
.why-solace {
  padding: 60px 20px;
  background-color: #f0f4f8;
  border-radius: 20px;
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

/* Section Heading */
.why-solace h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 40px;
}

/* Grid Layout */
.solace-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .solace-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Pillar Card */
.pillar-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Hover Effect */
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Pillar Image */
.pillar-img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Pillar Title */
.pillar-card h3 {
  font-size: 1.2rem;
  color: #0077b6;
  margin-bottom: 10px;
}

/* Pillar Description */
.pillar-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}


/* Section 7: Booking Form */
.booking-form {
  padding: 60px 40px;
  background-color: #fefefe;
  text-align: center;
}
.booking-form h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 20px;
}
.booking-intro {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.form-fields input,
.form-fields select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-fields label {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-button {
  background-color: #ff4d4d;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 77, 77, 0.3);
}



/* Footer */
.solace-footer {
  background-color: #f0f4f8;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-links li {
  font-size: 0.95rem;
  color: #0077b6;
}

.footer-links a {
  text-decoration: none;
  color: #0077b6;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff4d4d;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0;
}

.footer-contact a {
  color: #0077b6;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}
