
/* Final site-wide styling for Abell Mind and Body */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  color: #007e94;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Centered logo */
header {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
}

.logo {
  max-width: 240px;
  height: auto;
}

/* Green menu bar */
nav {
  background-color: #49c5e0;
  text-align: center;
  padding: 12px 0;
}

nav a {
  color: white;
  font-weight: bold;
  margin: 0 25px;
  text-decoration: none;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* Main content area */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: white;
}

/* Footer in green */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #49c5e0;
  color: white;
  font-size: 0.9rem;
  line-height: 1.4;
}

footer a {
  color: #f0fdfa;
}

/* Contact form styling */
form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #fff;
  font-family: inherit;
}

form textarea {
  resize: vertical;
}

form button[type="submit"],
form .btn {
  padding: 12px 24px;
  background-color: #007e94;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #49c5e0;
}

/* Responsive tweaks */
@media (max-width: 700px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .container {
    padding: 20px;
  }
}
