/* -------------------------------------------------- */
/* GLOBAL RESET + BASE                                */
/* -------------------------------------------------- */

:root {
  --accent: #ff7ac4;
  --gold: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #b8860b 100%);
  --glass-bg: rgba(255,255,255,0.15);
  --glass-strong: rgba(255,255,255,0.20);
  --logo-max: 200px;
  --hero-width-max: 1000px;
}

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

html {
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: Arial, sans-serif;
  color: #fff;
  background-image: url("images/Theta-Background-final.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

body.home-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* -------------------------------------------------- */
/* HEADER                                             */
/* -------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 1000;
  padding: clamp(8px, 1vh, 16px) clamp(16px, 2vw, 40px);
  background: transparent;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: clamp(100px, 12vw, 220px);
  height: auto;
  transition: filter 0.3s ease, transform 0.3s ease;
  will-change: transform, filter;
}

.logo img:hover {
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.55));
  transform: scale(1.05);
}

.banner-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 4rem);
  margin: clamp(6px, 1vh, 16px) 0 0;
  padding: 0 clamp(16px, 8vw, 120px);
  line-height: 1.1;
  font-weight: bold;
}

.banner-title span {
  display: block;
}

.banner-title .line-2 {
  font-size: 0.7em;
  margin-top: 4px;
}

/* -------------------------------------------------- */
/* NAVIGATION                                         */
/* -------------------------------------------------- */

.dropdown-nav {
  flex-shrink: 0;
}

.menu-icon {
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  cursor: pointer;
  color: white;
  padding: 8px;
  background: transparent;
  border: none;
}

.dropdown-menu {
  position: absolute;
  top: 60px;
  right: clamp(16px, 2vw, 40px);
  background: rgba(0,0,0,0.75);
  border-radius: 6px;
  padding: 0;
  min-width: 180px;
  max-width: 260px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 3000;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.dropdown-menu.open {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

body.home-page .nav-home,
body.theta .nav-theta,
body.sessions .nav-sessions,
body.experiences .nav-experiences,
body.meet .nav-meet,
body.contact .nav-contact,
body.reiki .nav-reiki {
  display: none !important;
}

/* -------------------------------------------------- */
/* HERO                                               */
/* -------------------------------------------------- */

body.home-page .hero {
  flex: 1 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 60px);
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: var(--hero-width-max);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vh, 40px);
}

/* -------------------------------------------------- */
/* HERO TEXT                                          */
/* -------------------------------------------------- */

.hero-subtitle {
  font-size: clamp(1.2rem, 2.8vw, 3rem);
  margin: 0;
}

.hero-text {
  font-size: clamp(0.95rem, 1.8vw, 2rem);
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  align-self: center;
}

/* -------------------------------------------------- */
/* HERO BUTTONS + GLOBAL BUTTON SYSTEM                */
/* -------------------------------------------------- */

.hero-actions {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  flex-wrap: wrap;
  margin-top: 0;
}

.hero-actions-secondary {
  margin-top: 0;
}

/* GLOBAL BUTTON STYLE — OPTION C */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  width: auto;
  max-width: 100%;

  padding: clamp(10px, 1.5vh, 22px) clamp(16px, 2vw, 32px);
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(0.85rem, 1.4vw, 1.5rem);

  white-space: normal;
  text-align: center;

  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* DEFAULT GOLD BUTTON */
.primary-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #b8860b 100%);
  color: #fff;
}

.primary-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* MAIN ATTRACTION BUTTON — WHITE GOLD GLOW */
.main-attraction-btn {
  background: linear-gradient(135deg, #fff7d9 0%, #f5e7a8 50%, #d4c27a 100%) !important;
  color: #000 !important;

  min-width: 220px;
  padding: clamp(14px, 2vh, 26px) clamp(22px, 3vw, 44px) !important;
  font-size: clamp(1rem, 1.8vw, 1.7rem) !important;

  box-shadow: 0 0 18px rgba(255, 240, 180, 0.55) !important;
}

.main-attraction-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* -------------------------------------------------- */
/* FLOATING CONTENT SECTIONS                          */
/* -------------------------------------------------- */

.home-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  color: #fff;
}

/* -------------------------------------------------- */
/* SERVICES + TESTIMONIALS GRIDS — 4 CARD FIX         */
/* -------------------------------------------------- */

.services-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.service-card,
.testimonial-card {
  background: var(--glass-strong);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  color: #fff;
}

/* -------------------------------------------------- */
/* CONTACT PAGE — SPACING + PREMIUM DROPDOWN          */
/* -------------------------------------------------- */

.contact-container {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.contact-box {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 14px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form label {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 1rem;
  resize: vertical;
}

/* PREMIUM GLASS CUSTOM DROPDOWN */
.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.custom-select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 0 12px rgba(255,255,255,0.10);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-select:hover .custom-select__trigger,
.custom-select.open .custom-select__trigger {
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 20px rgba(255,255,255,0.18);
}

.custom-select__value.placeholder {
  color: rgba(255,255,255,0.55);
}

.custom-select__arrow {
  font-size: 1.1rem;
  opacity: 0.75;
  transition: transform 0.3s ease;
  line-height: 1;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__dropdown {
  list-style: none;
  margin: 6px 0 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 500;
  border-radius: 10px;
  background: rgba(30, 10, 50, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,122,196,0.12);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.custom-select.open .custom-select__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select__option {
  padding: 13px 20px;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.custom-select__option:hover {
  background: rgba(255,122,196,0.18);
  color: #fff;
  padding-left: 26px;
}

.custom-select__option.selected {
  background: rgba(255,122,196,0.28);
  color: #ff7ac4;
}

.custom-select__option + .custom-select__option {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-form button {
  margin-top: 10px;
  padding: 18px;
  font-size: 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.home-section .intro {
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* -------------------------------------------------- */
/* CALENDAR PICKER                                    */
/* -------------------------------------------------- */

.calendar-trigger {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 0 12px rgba(255,255,255,0.10);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.calendar-trigger:hover {
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 20px rgba(255,255,255,0.18);
}

.calendar-popup {
  border-radius: 14px;
  background: rgba(30, 10, 50, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,122,196,0.12);
  padding: 20px;
  margin-top: 6px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cal-month-label {
  font-weight: bold;
  font-size: 1.05rem;
  color: #fff;
}

.cal-nav {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  color: #fff;
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cal-nav:hover {
  background: rgba(255,122,196,0.25);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.cal-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  opacity: 0.6;
  padding: 4px 0;
  color: #fff;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.cal-day:not(.cal-past):not(.cal-empty):hover {
  background: rgba(255,122,196,0.25);
}

.cal-day.cal-selected {
  background: #ff7ac4;
  color: #fff;
  font-weight: bold;
}

.cal-day.cal-past {
  opacity: 0.25;
  cursor: not-allowed;
}

.cal-day.cal-empty {
  cursor: default;
}

.calendar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cal-done-btn {
  background: #ff7ac4;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cal-done-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.selected-dates-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.summary-label {
  font-size: 0.9rem;
  opacity: 0.75;
  white-space: nowrap;
}

.selected-dates-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.date-pill {
  background: rgba(255,122,196,0.25);
  border: 1px solid rgba(255,122,196,0.45);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill-remove {
  cursor: pointer;
  opacity: 0.7;
  font-size: 0.75rem;
  transition: opacity 0.2s;
}

.pill-remove:hover {
  opacity: 1;
}

/* -------------------------------------------------- */
/* ANIMATIONS                                         */
/* -------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------- */
/* GLOBAL WATERMARK OVERLAY (WORK IN PROGRESS)        */
/* -------------------------------------------------- */

html::after {
  content: "WORK IN PROGRESS";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);

  /* Smaller + more readable */
  font-size: clamp(2rem, 8vw, 8rem);
  font-weight: 800;

  /* More visible but still subtle */
  color: rgba(255, 255, 255, 0.25);

  letter-spacing: 0.15em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Ensure all content sits above the watermark */
body {
  position: relative;
  z-index: 1;
}

