/* ====== Header with Logo & Navigation ====== */
header {
    background-color: #d2e6dc; /* mint */
    text-align: center;
    padding: 20px;
    position: relative;
}
body {
  font-family: Arial, sans-serif;
  background-color: #D6E8DD;
  color: #333;
  line-height: 1;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
    color: #064F11; /* dark green text */
}

.logo img {
  height: 150px;   /* Adjust size of logo */
  width: 150px;
  display: block;
  margin: 0 auto 20px auto; /* Center + space below */

}
.tagline {
  font-style: italic & bold;
  margin: 5px 0 15px 0;
color:#064F11

}


/* Navigation */
nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;   /* spacing between nav links */
    text-decoration: none;
    color: green;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* ====== Contact Form ====== */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.contact-container h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold; center
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

form button {
    background-color: #2E7D6F;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #256d60;
}


footer {
    background-color:#195C4C; /* same mint green */
    text-align: center;color: white;
    padding: 15px;
    margin-top: 30px;
}
.form-wrapper {
    display: flex;
    justify-content: center;  /* center horizontally */
    align-items: center;      /* center vertically */
    min-height: 80vh;         /* push to vertical center */
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;  /* form width */
}
/* 1. Add space between heading and tagline */
header h1 {
    margin-bottom: 20px; /* increase or decrease as needed */
}

/* Reduce space below the navigation */
nav {
    margin-bottom: 0; /* remove extra gap */
    padding-bottom: 0px; /* small padding if needed */
}

/* Reduce extra padding/margin above the Contact Us form */
.contact-section {
    margin-top: 10px;  /* reduce gap above the form section */
    padding-top: 10px; /* optional */
}

/* Adjust the section where form is placed */
.contact-section {
    padding-top: 20px;  /* reduce space at top */
}


/* Reset some defaults */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e6f2eb; /* page background (light green tint) */
}

/* Header */
header {
  background: #D6E8DD; /* dark green */
  color: white;
  text-align: center;
  padding: 20px;
}

header nav a {
  color: green;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Contact form section */
.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;   /* pushes it down nicely */
}

.contact {
  background: #d8f3dc; /* light green outer box */
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  margin: auto;
}

.contact h2 {
  text-align: center;
  color: #004d26; /* dark green heading */
  font-weight: bold;
  margin-bottom: 20px;
}

.contact form {
  background: white; /* inner form is white */
  padding: 20px;
  border-radius: 8px;
}

.contact input,
.contact textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  width: 100%;
  padding: 12px;
  background: #004d26; /* match header */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact button:hover {
  background: #006633;
}

/* ===== 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; } */
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.4); /* soft white haze */
  z-index: -1;
}
header {
  background: url("background-leaves.png") no-repeat center center / cover;
}

