/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=The+Seasons:wght@400;700&display=swap');

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f4f5f7;
  color: #171710;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #e1cbcb;
  text-align: center;
  padding: 30px 0; /* Increased for breathing room */
}

header img.logo {
  width: clamp(250px, 40vw, 480px); /* Larger responsive logo */
  height: auto;
}

nav {
  background: #383e48;
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: #f4f5f7;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle; /* ensures all nav links align */
}

nav a:hover {
  color: #eb9db3;
}

/* Shorten consulting link text without breaking alignment */
nav a[href="consulting.html"] {
  max-width: 190px; /* fits text nicely */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

/* Main Content */
.container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 15px;
}

h1, h2, h3 {
  font-family: 'The Seasons', serif;
  margin-bottom: 15px;
  color: #383e48;
}

h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 25px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Forms */
form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

form input, form textarea, form button {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border: 1px solid #6e7075;
  border-radius: 5px;
}

form button {
  background: #eb9db3;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

form button:hover {
  background: #383e48;
}

/* Footer */