/* Reset some default styles */
body, h1, h2, p, ul, li {
  margin: 0.5;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #D6E8DD;
  color: #333;
  line-height: 1;
}

/* Header */
header {
  background: #D6E8DD;
  color:#215C52;
  text-align: center;
  padding: 5px 5px;
}

.logo img {
  height: 150px;   /* Adjust size of logo */
  width: 150px;
  display: block;
  margin: 0 auto 20px auto; /* Center + space below */
}

header h1 {
  margin-top: 15px;
  font-size: 3rem;
}

.tagline {
  font-style: italic & bold;
  margin: 5px 0 15px 0;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: green;
margin: 0 25px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative; /* needed for overlay */
  text-align: center;
  padding: 60px 20px;
  background: url("images/background-leaves.png") no-repeat center center;
  background-size: cover;
  color: Blue;
  z-index: 1;
}

/* Optional hazy white overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(355, 355, 355, 0.4); /* adjust transparency (0.5–0.8 looks nice) */
  z-index: -1;
}
.hero h2 {
  font-size: 2rem;
  color: #4a6cf7;
}

.hero p {
  margin: 25px 0;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #4a6cf7;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #d2e6dc;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #195C4C;
  color: white;
  margin-top: 30px;
}

.founder-photo {
  width: 130px;
  height: 130px;
  border-radius: 80%;   /* makes the image round */
  object-fit: cover;    /* crops to fit nicely */
  margin-bottom: 15px;
}


/* About Us Section */
#about-intro {
  background: white;   /* soft green background */
  padding: 60px 270px;
  border-radius: 12px;
  text-align: center;    /* centers heading + text */
  margin: 50px auto;
  max-width: 1000px;     /* keeps block neat in middle */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#about-intro h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2f6d4f; /* dark green */
}

#about-intro p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 15px auto;
}
.blog {
  max-width: 1500px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: justify;
  line-height: 1.6;
}

.blog h2, .blog h3, .blog h4 {
  color: #2b4c3f;
  margin-top: 20px;
}
.blog-title {
  cursor: pointer;
  color: #2e8b57; /* green */
  text-decoration: underline;
}
/* ===== Top Bar styles ===== */
.ms-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e9efe9;
  color: #215C52;
  font: 500 14px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.ms-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ms-topbar__left,
.ms-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ms-topbar a {
  color: #215C52;
  text-decoration: none;
}
.ms-topbar a:hover { text-decoration: underline; }

.ms-hours { opacity: 0.85; }

/* Button */
.ms-book {
  background: Blue; /* warm orange like your reference */
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #E18B22;
}
.ms-book:hover { filter: brightness(0.95); }

/* Optional: smooth scroll when linking to #appointment */
html { scroll-behavior: smooth; }

/* Mobile */
@media (max-width: 768px) {
  .ms-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .ms-book { width: 100%; text-align: center; }
}

/* Optional: make the top bar stick to the top while scrolling */
 /* .ms-topbar { position: sticky; top: 0; z-index: 1000; } */
main {
  background: url("images/background-leaves.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* optional: keeps it still while scrolling */
  padding: 20px 0;
}
body {
  background: url("images/background-leaves.png") no-repeat center top;
  background-size: cover;
  background-attachment: fixed; /* keeps it still when scrolling */
}

/* Optional: add a hazy overlay so text remains clear */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0); /* soft white haze */
  z-index: -1;
}

header {
  background: url("background-leaves.png") no-repeat center center / cover;
}
footer a {
  color: white;          /* makes footer links white */
  text-decoration: none;
  margin: 0 8px;         /* spacing between links */
  font-weight: bold;
}

footer a:hover {
  color: #FFD700;        /* gold on hover (you can pick another color if you want) */
  text-decoration: underline;
}
/* Mobile & Tablet Styles */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  .navbar {
    flex-direction: column;   /* stack menu items */
    align-items: center;
  }

  .hero-section {
    text-align: center;
    padding: 20px;
  }

  .service-card {
    width: 100%;   /* stack services vertically */
    margin-bottom: 20px;
  }

  .contact-form {
    width: 100%;   /* make forms full width */
  }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  p  { font-size: 14px; }
}
