/* -------------------------------------------------- */
/* GLOBAL RESET + BASE                                */
/* -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Cinzel+Decorative:wght@700&display=swap');



:root {
  --accent: #ff7ac4;
  --gold: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #b8860b 100%);
  --glass-bg: rgba(35,35,35,0.45);
  --glass-strong: rgba(45,45,45,0.55);
  --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-Gold.png");
  background-attachment: fixed;
  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(150px, 15vw, 280px);
  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;
}

.home-hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  margin: 0;
  text-align: center;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.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 (UPDATED)      */
/* -------------------------------------------------- */

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

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

/* BASE BUTTON WRAPPER */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  white-space: normal;
  text-align: center;
  transition: all 0.3s ease;
}

/* -------------------------------------------------- */
/* PREMIUM GLOBAL BUTTON STYLE — MEET SHEILA / BOOK A SESSION */
/* -------------------------------------------------- */

.global-button {
  min-width: 200px;
  padding: clamp(12px, 1.8vh, 22px) clamp(24px, 3vw, 36px);
  border-radius: 10px;

  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: bold;
  font-size: clamp(0.9rem, 1.4vw, 1.4rem);

  /* NEW charcoal glass base */
  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(8px);

  /* Gold border + glow */
  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);

  /* Gold text */
  color: #e8d08b;

  text-decoration: none;
  transition: all 0.3s ease;
}

.global-button:hover {
  background: rgba(30, 30, 45, 0.75);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.55);
  color: #fff4c2;
  transform: scale(1.05);
}

.service-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.service-button {
  min-width: 170px;
  padding: clamp(10px, 1.3vh, 16px) clamp(18px, 2vw, 28px);
  border-radius: 9px;

  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: bold;
  font-size: clamp(0.85rem, 1.15vw, 1.2rem);

  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.22);

  color: #e8d08b;

  text-decoration: none;
  transition: all 0.3s ease;
}

.service-button:hover {
  background: rgba(30, 30, 45, 0.75);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  color: #fff4c2;
  transform: scale(1.05);
}


/* -------------------------------------------------- */
/* HERO BUTTON — UNLOCK THETA BRAINWAVES (GOLD + CHARCOAL TEXT) */
/* -------------------------------------------------- */

.hero-button {
  min-width: 240px;
  padding: clamp(14px, 2vh, 26px) clamp(28px, 3vw, 48px);
  border-radius: 12px;

  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: bold;
  font-size: clamp(0.9rem, 1.4vw, 1.4rem);

  /* NEW charcoal glass base */
  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(8px);

  /* Gold border + glow */
  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);

  /* Gold text */
  color: #e8d08b;

  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: rgba(30, 30, 45, 0.75);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.55);
  color: #fff4c2;
  transform: scale(1.05);
}


/* -------------------------------------------------- */
/* 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;
}

.home-hero-subtitle-card {
  display: inline-block;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 22px;
  border-radius: 10px;

  background: radial-gradient(
    ellipse at center,
    rgba(92, 38, 130, 1) 0%, /* very centre of the card */
    rgba(92, 38, 130, 0.35) 45%, /* inner-middle area */
    rgba(92, 38, 130, 0.15) 78%, /* outer-middle area */
    rgba(92, 38, 130, 0.02) 100% /* very outer edges of the card */
  );

  border: 1px solid rgba(230, 210, 255, 0.22);
  box-shadow: 0 4px 18px rgba(25, 0, 45, 0.28);
  backdrop-filter: blur(6px);
}



/* -------------------------------------------------- */
/* THETA PAGE STACKED INFO CARDS                      */
/* -------------------------------------------------- */

.theta-card-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.theta-card-stack .service-card {
  width: 100%;
}

.theta-card-stack .service-card h2,
.theta-card-stack .service-card h3 {
  margin-top: 0;
}

/* -------------------------------------------------- */
/* LIFE COACHING PAGE STACKED INFO CARDS              */
/* -------------------------------------------------- */

.life-card-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.life-card-stack .service-card {
  width: 100%;
}

.life-card-stack .service-card h2,
.life-card-stack .service-card h3 {
  margin-top: 0;
}

/* -------------------------------------------------- */
/* NLP PAGE STACKED INFO CARDS                        */
/* -------------------------------------------------- */

.nlp-card-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.nlp-card-stack .service-card {
  width: 100%;
}

.nlp-card-stack .service-card h2,
.nlp-card-stack .service-card h3 {
  margin-top: 0;
}

/* -------------------------------------------------- */
/* ABOUT PAGE STACKED INFO CARDS                      */
/* -------------------------------------------------- */

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.about-card-stack .service-card {
  width: 100%;
}

.about-card-stack .service-card h2,
.about-card-stack .service-card h3 {
  margin-top: 0;
}

/* -------------------------------------------------- */
/* REIKI PAGE STACKED INFO CARDS                      */
/* -------------------------------------------------- */

.reiki-card-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.reiki-card-stack .service-card {
  width: 100%;
}

.reiki-card-stack .service-card h2,
.reiki-card-stack .service-card h3,
.reiki-card-stack .service-card h4 {
  margin-top: 0;
}


/* -------------------------------------------------- */
/* 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;
  border: 1px solid rgba(212, 175, 55, 0.75);
  box-shadow: 0 8px 26px rgba(0,0,0,0.28), 0 0 14px rgba(212, 175, 55, 0.25);
  color: #fff;
}

.contact-card-bottom-text {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
}

.contact-card-bottom-text p {
  margin: 0;
}



.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:not(.global-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:not(.global-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;
}

/* -------------------------------------------------- */
/* BOTTOM BUTTON PAIR — SHARED LAYOUT FOR ALL PAGES   */
/* -------------------------------------------------- */

.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  margin-top: 40px;
  flex-wrap: wrap;
}

.bottom-buttons .btn {
  min-width: 220px; /* matches Book a Session button size */
  text-align: center;
}


footer {
  padding: clamp(6px, 1.5vh, 20px) 0;
}

}


.contact .home-section h2 {
  text-align: center;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');

/* -------------------------------------------------- */
/* HERO HEADINGS - IVORY GOLD LIKE MOCKUP             */
/* -------------------------------------------------- */

.banner-title,
.banner-title span,
.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  text-align: center;
  
  -webkit-text-stroke: 0.6px rgba(255, 244, 191, 0.75);

  color: #fff4bf;
  -webkit-text-fill-color: #F7D34A;

  text-shadow:
    0 1px 0 #d7a72f,
    0 2px 0 #8d5a12,
    0 0 5px rgba(255, 255, 235, 0.9),
    0 0 12px rgba(255, 220, 115, 0.65),
    0 4px 8px rgba(25, 0, 45, 0.85);

  letter-spacing: 0.01em;
  line-height: 1.08;
}

/* Main title: brighter and closer to the image */
.banner-title .line-1 {
  color: #fff8d8;
  -webkit-text-fill-color: #F7D34A;

  text-shadow:
    0 1px 0 #e1b23d,
    0 2px 0 #9b6819,
    0 0 6px rgba(255, 255, 240, 1),
    0 0 16px rgba(255, 225, 120, 0.75),
    0 5px 10px rgba(25, 0, 45, 0.9);
}

/* Second / smaller heading lines */
.banner-title .line-2,
.hero-subtitle {
  color: #fff0b8;
  -webkit-text-fill-color: #F7D34A;

  text-shadow:
    0 1px 0 #c79525,
    0 2px 0 #7a4a10,
    0 0 5px rgba(255, 250, 225, 0.8),
    0 0 12px rgba(255, 215, 100, 0.55),
    0 4px 8px rgba(25, 0, 45, 0.8);
}

.story-image {
    width: 50%;
    max-width: 200px;
    border-radius: 12px;
    margin: 0 0 20px 20px; /* space on the left so text doesn't touch the image */
    float: right;
}

/* -------------------------------------------------- */
/* PRIVACY POLICY PAGE                                */
/* -------------------------------------------------- */

.privacy-policy-card {
  line-height: 1.7;
}

.privacy-policy-card h2 {
  margin-top: 0;
  text-align: center;
}

.privacy-policy-card h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: #e8d08b;
}

.privacy-policy-card p {
  margin: 0 0 18px;
}

.privacy-policy-card ul {
  margin: 0 0 20px 22px;
  padding: 0;
}

.privacy-policy-card li {
  margin-bottom: 8px;
}

.privacy-policy-card ul ul {
  margin-top: 8px;
  margin-bottom: 0;
}
