*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f9fcfa;
  color: #2c3e50;
  overflow-x: hidden;
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar_container {
  width: 100%;
  margin: auto;
  min-height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f9fcfa;
}

.menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 9999;
  background: white;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.reiki_navbar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: #f9fcfa;
  padding-top: 120px;
  transition: right 0.35s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
}

.reiki_navbar.active {
  right: 0;
}

.reiki_navbar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2rem;
  text-align: center;
}

.reiki_navbar li a {
  color: #016B61;
  text-decoration: none;
  font-weight: 500;
}

/* ===== LOGO ===== */
.reiki_logo {
  height: 90px;
  max-height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reiki_logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* MOBILE DRAWER */
.mobile_menu {
  margin-top: 1rem;
  position: fixed;
  top: 105px;
  right: -100%;
  width: 100%;
  height: auto;
  background: #f9fcfa;
  padding-top: 0.5rem;
  transition: right 0.35s ease;
  /* box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15); */
  z-index: 3000;
  text-align: center;
  /* padding-top: 120px; */
}

.mobile_menu.active {
  right: 0;
}

.mobile_menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2rem;
}

.mobile_menu a {
  font-size: 1.2rem;
  color: #016B61;
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero_section {
  background-image: url("pics/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 60vh;
  border-radius: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
}

.hero_section_text {
  width: 90%;
  position: relative;
  padding: 1.5rem;
  background: rgba(235, 191, 191, 0.7);
  border-radius: 12px;
  text-align: center;
}

.hero_section_text h1 {
  color: #1f2a44;
  font-size: 1.5rem;
}

.hero_section_text h3 {
  color: #444444;
  font-size: 1rem;
}

.image {
  position: relative;
  bottom: -3rem;
  width: 90%;
  height: 400px;
  margin: 0.5rem auto 0;
  background-image: url("pics/bg1.webp");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border: 0.4rem solid whitesmoke;
  box-shadow: 0px 3px 12px rgb(94, 93, 93);
}

/* ===== ABOUT FOUNDER ===== */
.about_founder {
  background: linear-gradient(rgba(237, 192, 237, 0.448), white);
  width: 95%;
  min-height: auto;
  margin: 5rem auto;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0px 3px 9px lightgrey;
}

.wrap-img {
  float: none;
  /* no float on mobile */
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 12px;
}

.about_founder h1 {
  color: purple;
  font-size: 1.7rem;
  padding: 0.5rem 0;
  text-align: center;
}

.about_founder p {
  font-size: 0.95rem;
}

.about_founder p b {
  color: rgb(73, 14, 73);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}

th,
td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  background: linear-gradient(rgb(244, 213, 244), white);
}

th {
  background-color: #f672ef3f;
}

/* ===== Footer Base ===== */

.site-footer {
  background: linear-gradient(#f9fcfa, rgb(196, 103, 196));
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

.footer-content h3 {
  color: purple;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-tagline {
  color: #016B61;
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 18px;
}

.footer-copy {
  color: #333;
  font-size: 0.85rem;
  opacity: 0.7;
}