body {
  background-color: #EAE6E2;
  font-family: 'Arimo', sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  text-align: center;
  padding: 20px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 2px;
}

nav a {
  color: #CEC4BB;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 10px;
  padding: 6px 12px;
  border-radius:2px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #fff;
  color: #947F6B;
}

a.sitemap {
  color: #fff ;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

a.sitemap:hover {
  color: #BAADA0;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.5s;
}

/* Overlay Menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(3px);
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.nav-overlay.open {
  display: flex;
  opacity: 1;
}

.nav-overlay a {
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0;
  color: #CEC4BB;
  text-decoration: none;
  transition: color 0.5s;
}

.nav-overlay a:hover {
  color: #947F6B;
}

main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  text-align: left;
  font-size: 24px;
  color: #A79686;
}

h3 {
  text-align: left;
  font-size: 17px;
  color: #000;
}

h4 {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 14px;
  text-align: left;
  color: #BAADA0;
}

h5 {
  font-size: 13px;
  text-align: left;
  font-weight: normal;
  color: #A79686;
}

h6 {
  margin-top: 2px;
  margin-bottom: 0px;
  font-size: 11px;
  text-align: left;
  font-weight: normal;
  color: #CEC4BB;
}

h7 {
  text-align: left;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

h8 {
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.intro, .about {
  text-align: left;
  line-height: 1.6;
  margin-bottom: 20px;
}

.treatment-category {
  margin-bottom: 10px;
}

.treatment-category h3 {
  color: #A79686;
  padding: 0px;
  border-radius: 0px;
  /*box-shadow: 0 1px 4px rgba(0,0,0,0.1);*/
  box-shadow: 0 0px 0px rgba(0,0,0,0);
  text-align: left;
}

.treatment-box {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0.1,0.2);
}

.box-tra {
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0.1,0.2);
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #CEC4BB;
  font-size: 12px;
  color: #eee;
  margin-top: 40px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

.map iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  header {
    padding: 10px 20px;
  }
}

/* Modal Popup */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow-y: auto;             /* allow scroll if needed */
  -webkit-overflow-scrolling: touch; /* smooth scroll for iOS */
}

.modal.open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;             /* never exceed screen height */
  overflow-y: auto;             /* content scrolls if longer */
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 10000;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #555;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

.read-more {
  cursor: pointer;
  background-color: #EAE6E2;
  border-color: #EAE6E2;
  color: #BAADA0;
  border: 0px solid #ddd;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.read-more:hover {
  background-color: #CEC4BB;
  color: #FFF;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Modal Popup */

.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hide {
    display: none;
}

.sound-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(243,230,226,0.06);
    padding: 6px 20px;
    border-radius: 6px;
    font-family: Arimo, sans-serif;
    font-size: 13px;
	font-weight: normal;
	color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Contact Form 

.contact-section {
  padding: 0px;
  max-width: 80%0px;
  margin: 30px auto;
  font-family: 'Arimo', sans-serif;
  font-size: 12px;
  color:#BAADA0;
}

.contact-section h2 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F4F2F0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0.1,0.2);
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 8px;
  font-weight: bold;
  border: 1px solid #5F5245;
  border-radius: 6px;
  font-family: 'Arimo', sans-serif;
  font-size: 12px;
  color:#5F5245;
}

.contact-btn {
  padding: 10px;
  border: 1px solid #BAADA0;
  color:#fff;
  background: #BAADA0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

.contact-btn:hover {
  background: #CEC4BB;
}

*/
