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


header {
  background: #8bd0d1;
  color: white;
  padding: 10px 150px 10px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
}

header h1 {
  font-weight: 600;
  font-size: 2.2em;
  margin: 0;
}



.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 30px 20px;
}

.hero img {
  /* width: 100%; */
  max-width: 600px;
  border-radius: 10px;
  margin: 26px;
}

.hero-text {
  max-width: 600px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #8bd0d1;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.button:hover {
  background: #6db6b7;
}

.intro, .about, .treatments, .contact {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-images img {
  width: 45%;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #8bd0d1;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #6db6b7;
}

footer {
  text-align: center;
  padding: 15px;
  background: #8bd0d1;
  color: white;
  margin-top: 40px;
}

footer a {
  color: white;
}

.form-status {
      padding: 15px 20px;
      border-radius: 5px;
      margin-bottom: 20px;
      max-width: 500px;
      border: 1px solid transparent;
    }
    .form-success {
      background-color: #d4edda;
      color: #155724;
      border-color: #c3e6cb;
    }
    .form-error {
      background-color: #f8d7da;
      color: #721c24;
      border-color: #f5c6cb;
    }
    .form-status h3 {
      margin-top: 0;
    }

    .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }



    /* --- Header --- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}

.logo {
  position: relative;
  width: 40px;
  margin-right: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 48px;
  color: var(--gold1);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; /* Fixed height for consistent vertical centering */
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* This ensures your logo fits perfectly inside the 40x40px box */
}

.logoCap { 
  display: inline-block; 
  transform: scale(1.2); 
  transform-origin: bottom; 
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}


nav a,
nav a:link,
nav a:visited {
  text-decoration: none;
  color: white;
  font-weight: 500;
  text-underline-offset: 4px;
}

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

/* Mobile styles */
@media (max-width: 768px){
  .site-head {
    padding: 8px;
    gap: 8px;
  }
  
  .logo {
    font-size: 38px;
    letter-spacing: 0.15em;
    height: 50px; /* Slightly smaller but still centered */
  }
  
  nav {
    font-size: 14px;
    gap: 15px;
  }

  header {
  padding: 10px 10px 10px 10px; 
  }
}

@media (max-width: 480px){
  .site-head {
    padding: 6px;
    gap: 6px;
  }
  
  .logo {
    font-size: 22px;
    letter-spacing: 0.14em;
    height: 40px; /* Maintain vertical centering */
  }
  
  nav {
    font-size: 10px;
    gap: 10px;
  }

  header {
  padding: 10px 10px 10px 10px;
  }

}