/* Base Styles using original font stack and colors */
body {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #660000; /* #600 */
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  color: #1d4f2b;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 1.75em;
  border-bottom: 5px double black;
  text-align: right;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.15em;
}

p {
  margin-bottom: 1em;
  letter-spacing: 1px;
}

a {
  color: #1d4f2b;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #0099ff; /* #09F */
}

a:active {
  color: #00ccff; /* #0CF */
  text-decoration: underline;
}

/* Layout Utilities */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: white; /* Optional: if you want a boxed layout look */
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.logo-left img,
.logo-right img {
  max-width: 100%;
  height: auto;
}

.logo-right {
  text-align: right;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.9em;
  color: #1d4f2b;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  margin: 0 5px;
  font-weight: bold;
}

/* Content Styling */
.pullquote {
  width: 30%;
  float: right;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-style: italic;
  color: #1d4f2b;
  font-size: 1em;
  margin: 0 0 1rem 1.5rem;
  padding: 1rem;
  border: 1px dotted #eee;
  background-color: #fcfcfc;
}

.pullquote cite {
  display: block;
  text-align: right;
  margin-top: 0.5rem;
  font-weight: bold;
}

.align-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.align-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

/* Modalities Section (Home Page) */
.modalities-section {
  overflow: hidden; /* Clear floats */
  margin: 2rem 0;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.modalities-list {
  list-style-type: none;
  padding-left: 0;
  margin-left: 240px; /* Space for the floated image */
}

.modalities-list li {
  margin-bottom: 0.5rem;
}

.modalities-list a {
  font-size: 1.15em;
  font-weight: bold;
  display: block;
  padding: 5px;
}

.profile-img {
  max-width: 200px; /* Ensure it fits nicely */
  height: auto;
}

/* Indented Content (Massage Page) */
.indented {
  margin-left: 20px;
  padding-left: 10px;
  border-left: 2px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-left,
  .logo-right {
    margin-bottom: 1rem;
    text-align: center;
  }

  .pullquote {
    float: none;
    width: 100%;
    margin: 1rem 0;
  }

  .align-left,
  .align-right {
    float: none;
    display: block;
    margin: 1rem auto;
    max-width: 100%;
  }

  .modalities-list {
    margin-left: 0;
    text-align: center;
  }

  .profile-img {
    float: none;
    display: block;
    margin: 0 auto 1rem auto;
  }
}
