/* Simple Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Typography */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Navigation Bar */


nav ul li {
  margin-right: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: Tahoma, sans-serif;
}
nav ul li a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background-color: #556B2F;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: Georgia, serif;
}
.hero h1 {
  margin-bottom: 10px;
  font-size: 2.5em;
}
.hero p {
  font-size: 1.2em;
}

/* Section Titles */
.section-title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.8em;
  color: #556B2F;
  font-family: Tahoma, sans-serif;
}

/* Subheading Titles */
.subheading {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.3em;
  color: #333;
  font-family: Georgia, serif;
}

/* Accordion (Conditions & Massage page) */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1em;
  transition: background-color 0.2s ease;
  margin-top: 5px;
}
.accordion.active, .accordion:hover {
  background-color: #ccc;
}
.panel {
  padding: 0 10px;
  display: none;
  background-color: white;
  overflow: hidden;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  font-size: 1em;
}

/* Image Styling */
img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  margin-top: 40px;
  font-size: 0.9em;
}


nav li {
  height: 80px;
  display: flex;
  align-items: center;
}

nav li.logo-li img
nav ul li:not(.logo-li) a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: Tahoma, sans-serif;
  padding: 12px 18px;
  display: block;
  border-radius: 4px;
  transition: background 0.18s;
}
nav ul li:not(.logo-li) a:hover {
  background: #68853a;
}

nav {
  background-color: #556B2F;
  height: 170px;
  min-height: 170px;
  padding: 0;
  margin: 0;
  width: 100vw;
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 170px;
  padding: 0;
  margin: 0;
}
nav li {
  height: 170px;
  display: flex;
  align-items: center;
}
nav li.logo-li {
  margin-left: 18px;
  margin-right: 22px;
  height: 170px;
  padding: 0;
  display: flex;
  align-items: center;
}
nav li.logo-li img.logo {
  height: 150px;
  width: auto;
  display: block;
  background: transparent;
  margin: 10px 8px 10px 8px; /* green buffer all sides */
  border-radius: 12px;
  box-sizing: border-box;
}
nav ul li:not(.logo-li) a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: Tahoma, sans-serif;
  padding: 16px 22px;
  display: block;
  border-radius: 5px;
  transition: background 0.18s;
  font-size: 1.13em;
}
nav ul li:not(.logo-li) a:hover {
  background: #68853a;
}
@media (max-width: 900px) {
  nav, nav ul, nav li { height: auto; min-height: 70px; }
  nav li.logo-li img.logo { height: 54px; margin: 7px; }
}


/* Slideshow */
.slideshow-container { position: relative; margin: auto; max-width: 100%; }
.mySlides { display: none; }
.fade { animation: fadeEffect 1.5s; }
@keyframes fadeEffect { from {opacity: .4} to {opacity: 1} }
.prev, .next { cursor: pointer; position: absolute; top: 50%; padding: 16px; color: white; font-weight: bold; font-size: 18px; transition: 0.6s; user-select: none; }
.next { right: 0; }
.prev { left: 0; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }
.dot { cursor: pointer; height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; }
.active-dot, .dot:hover { background-color: #717171; }

/* Acupuncture panel */
.acu-panel-flex { display: flex; align-items: flex-start; gap: 12px; margin: 10px 0; }
.acu-img { max-width: 200px; border-radius: 8px; margin-left: 12px; box-shadow: 0 1px 6px rgba(0,0,0,0.1); }
@media (max-width: 768px) { .acu-panel-flex { flex-direction: column; } .acu-img { margin: 8px 0; max-width: 100%; } }


/* Center navigation bar items */
nav ul {
  justify-content: center !important;
}


/* Booking Section Styles */
.booking-section {
  text-align: center;
  margin: 30px 0;
}
.booking-section .btn {
  background-color: #556B2F;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1em;
  font-family: Tahoma, sans-serif;
}
.booking-section .btn:hover {
  background-color: #68853a;
}


/* Center navigation tabs */
nav ul { justify-content: center !important; }
