/* styles.css */
body {
  font-family: 'Georgia', serif;
  background-color: #f9f6f3;
  color: #3e3e3e;
  padding: 40px;
  line-height: 1.6;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 4px;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: 100%;
  background-color: #fff8f0;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  padding-top: 80px;
  transition: left 0.3s ease;
  z-index: 999;
}

.side-menu a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #6b4f3b;
  font-weight: bold;
  border-bottom: 1px solid #e0d4c0;
}

.side-menu a:hover {
  background-color: #f0e6d8;
}

.site-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  max-width: 180px;
  height: auto;
}

h1 {
  font-size: 2.5em;
  color: #6b4f3f;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  color: #5a3e2b;
  font-size: 1.8em;
  margin-top: 40px;
}

.intro, .services, .treatments {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 40px;
}

ul {
  padding-left: 20px;
}

.footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9em;
  color: #888;
}

.cta-box {
  background-color: #F0F9F6;
  padding: 20px;
  border-left: 4px solid #007B5E;
  margin: 60px auto 0 auto;
  max-width: 800px;
}

.cta-box a {
  color: #007B5E;
  font-weight: bold;
  text-decoration: none;
}

/* New styles for enquiry form */
.enquiry-form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.enquiry-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Georgia', serif;
}

.enquiry-form button {
  margin-top: 20px;
  background-color: #007B5E;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.enquiry-form button:hover {
  background-color: #005f4a;
}
.therapy {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
}

.therapy img {
  max-width: 300px;
  border-radius: 6px;
  margin-right: 20px;
  flex-shrink: 0;
}

.therapy-text {
  flex: 1;
  min-width: 250px;
}
.wisdom-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wisdom-block h2 {
  text-align: center;
  color: #5a3e2b;
  font-size: 1.8em;
  margin-bottom: 20px;
}


.sutra-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.sutra-line {
  flex: 1;
  min-width: 250px;
  font-size: 1.05em;
  font-family: 'Georgia', serif;
  color: #5a3e2b;
}

.sutra-line.devanagari {
  font-family: 'Noto Serif Devanagari', serif;
}

.sutra-line.telugu {
  font-family: 'Noto Sans Telugu', sans-serif;
}

.translation {
  margin-top: 20px;
  font-size: 0.95em;
  color: #7a6a4f;
  font-style: italic;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.contact-form input[type="submit"] {
  background-color: #007B5E;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
/* Dosha Check – Three Column Trait Layout */
.trait-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
  gap: 20px;
}

.trait-option {
  flex: 1 1 30%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  text-align: left;
  transition: background-color 0.3s ease;
}

.trait-option:hover {
  background-color: #eef;
}

.trait-option label {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
}

.trait-option input[type="radio"] {
  margin-right: 8px;
}
