@charset "utf-8";
/* Healing Spot CSS - v4.5  */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@500;700&display=swap');

/* Global styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    background-color: #FAF7F4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #333333;
}

/* Top Navbar */
.navbar {
    position: relative; /* Default — on desktop */
    background-color: #FAF7F4;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Open Sans', sans-serif;
}

.navbar-brand {
    color: #333333;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar-brand:hover {
    color: #6b7f73;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #555555;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #3E5347;
    background-color: #E9D8C6;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.dropdown-menu {
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.dropdown-item {
    color: #333333;
}

.dropdown-item:hover {
    background-color: #F3E9E5;
    color: #333333;
}

/* Make navbar sticky on mobile */
@media (max-width: 767.98px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

/* Hero Image Section */
.hero-image {
    position: relative;
    background-image: url('/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Responsive tweak for hero */
@media (max-width: 767px) {
    .hero-image {
        height: 14vh;
        padding: 10px;
    }
}

/* Hero text */
.hero-text h1 {
    font-family: 'Fleur De Leah', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #3E5347;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-text {
        padding-top: 20px; /* adds space above text on mobile */
    }
}

.hero-text p.lead {
    font-size: 1rem;
    font-weight: 400;
    color: #4E5347;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Section backgrounds */

.section-pale-green {
    background-color: #F7F9F7;
}

.section-gradient {
    background: linear-gradient(to bottom, #FAF7F4, #F7F9F7);
}

.section-featured {
    background: linear-gradient(to bottom, #B9CFA1, #EBE6BC);
}

.section-green-yellow {
    background: linear-gradient(to right, #B9CFA1, #EBE6BC);
}

/* Buttons */
.btn-primary {
    background-color: #A8BBA5;
    border-color: #A8BBA5;
}

.btn-primary:hover {
    background-color: #90a894;
    border-color: #90a894;
}

.btn-outline-primary {
    color: #A8BBA5;
    border-color: #A8BBA5;
}

.btn-outline-primary:hover {
    background-color: #A8BBA5;
    color: #fff;
}

/* Blockquotes */
blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #3E5347;
}

blockquote footer {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    color: #555555;
}

/* Cards + containers */
.container-fluid .z-depth-2,
.container .card {
    background: linear-gradient(to bottom, #ffffff, #F9FAF9);
    border-radius: 8px;
    border: 1px solid #E9D8C6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
}

/* Newsletter form */
form .form-control {
    border-radius: 6px;
    padding: 10px 12px;
}

form button {
    border-radius: 6px;
}

/* Lead text */
.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4E5347;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}
/* Make navbar fixed on mobile */
@media (max-width: 767.98px) {
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1050;
        background-color: #FAF7F4;
        border-bottom: 1px solid #e0e0e0;
    }

    .hero-image {
        padding-top: 70px; /* This is the key fix! */
        height: auto; /* Optional: let content flow naturally */
    }
}
/* Remove hero bottom space on small screens */
@media (max-width: 767.98px) {
  .hero-image {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}


/* Explore More on Thank You page */
.thankyou-explore .card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.thankyou-explore .card:hover {
  transform: translateY(-4px);
}
/* Page Footer — Healing Spot */
.page-footer {
    background-color: #F7F9F7;   /* pale green to match section-pale-green */
    color: #555555;              /* muted text color */
    font-size: 0.9rem;
    line-height: 1.4;
    border-top: 1px solid #E9D8C6; /* subtle gold/neutral border */
    margin-top: 40px;
}

.page-footer .container {
    max-width: 800px;
    margin: 0 auto;
}

.page-footer a {
    color: #3E5347;              /* deep sage for links */
    text-decoration: none;
    margin: 0 8px;
}

.page-footer a:hover {
    text-decoration: underline;
    color: #6b7f73;              /* lighter sage on hover */
}
/* Call-out box for key quotes */
.quote-box {
  max-width: 600px;
  border: 1px solid #B9CFA1;       /* soft sage outline */
  border-radius: 8px;
  background-color: #FFFFFF;       /* crisp white to pop off the page */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.quote-box p {
  color: #3E5347;                  /* deep sage text for calm contrast */
  font-style: italic;
  margin: 0;                       /* removes default blockquote spacing */
}
