@charset "utf-8";

/* ===== GLOBAL RESET & BASE STYLES ===== */

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

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: #3A3A3A;              /* text-dark */
  background-color: #FFFFFF;   /* white */
  line-height: 1.6;
  padding-top: 70px;           /* space for fixed navbar */
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== NAVBAR ===== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #301334; /* deep purple */
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; /* Keep logo + text on one line */
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo a {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

/* Desktop nav */

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
  transition: width 0.2s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
  color: #301334;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  white-space: nowrap;
}

/* Hamburger (mobile only) */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  border-radius: 4px;
}

/* ===== SECTIONS & LAYOUT ===== */

.section {
  padding: 60px 16px;
}

.section-alt {
  background-color: #E9D5F6; /* lavender */
}

.section-gold-soft {
  background-color: #F2E7C9; /* soft gold */
}

.section-dark {
  background-color: #301334; /* deep purple */
  color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HERO SECTION ===== */

.hero {
  min-height: 70vh;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-visual {
  flex: 1 1 260px;
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.55), transparent 55%),
              radial-gradient(circle at bottom, rgba(112, 34, 119, 0.9), #120011);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* If you use a Canva hero image instead of geometry
.hero-image {
  background-size: cover;
  background-position: center;
} banner code */
.hero-image {
  background-image: url("../images/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.hero-text h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #301334;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 22px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(to right, #702277, #301334);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  border: none;
  display: inline-block;
}

.btn-secondary {
  background-color: #F2E7C9;
  border: 1px solid #D4AF37;
  color: #301334;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
}

.hero-tagline {
  font-size: 0.9rem;
  color: #555555;
  margin-top: 8px;
}

/* Hero geometry, only used if no hero image */

.hero-geometry {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

.hero-geometry::before,
.hero-geometry::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.7);
}

.hero-orbit {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

/* beverly image style */
/* too big
.about-photo {
  width: 100%;
  max-width: 420px;     /* keeps it nicely sized
  border-radius: 12px;  /* optional: soft rounded corners - removed as looks funny */
/*  display: block;
  margin: 0 auto;       /* centers inside its column */
/* } */
.about-image-container {
  flex: 0 0 auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}


.about-photo {
  width: 100% !important;
  max-width: 200px !important;   /* adjust this number until it feels right */
  height: auto !important;
  display: block;
  margin: 0 auto;
}



/* ===== SECTION HEADINGS ===== */

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #301334;
}

.section-subtitle {
  font-size: 0.98rem;
  max-width: 640px;
  margin-bottom: 28px;
  color: #555555;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-dark .section-subtitle {
  color: #DDDDDD;
}

/* ===== TWO-COLUMN LAYOUTS ===== */

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.two-column > * {
  flex: 1 1 320px;
}

/* ===== CARDS ===== */

.card-soft {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-soft h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  color: #702277;
  margin-bottom: 8px;
}

.pill-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #F2E7C9;
  color: #702277;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===== SERVICES GRID (FLEX VERSION) ===== */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  flex: 1 1 220px;
}

.service-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  color: #702277;
  margin-bottom: 6px;
}

.service-price {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-price span {
  font-weight: 600;
  color: #702277;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.service-cta {
  margin-top: auto;
}

/* fix image sizes in the service area */
/* Make the content inside each service card stack nicely and center the image */
.service-card > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Control the size and behavior of the service images */
.service-icon {
  width: 100%;
  max-width: 140px;   /* shrink from 180px to 140 or even 120 if you like */
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 12px; /* optional */
}

.service-card > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 100%;
  max-width: 140px;       /* adjust smaller if needed */
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 12px;    /* optional */
}



/* ===== MEMBERSHIP SECTION (FLEX) ===== */

.membership-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.membership-layout > * {
  flex: 1 1 320px;
}

/* removed as no longer using 
.benefits-list {
  list-style: none;
  margin-top: 12px;
}

.benefits-list li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.benefits-list li::before {
  content: "✦";
  color: #D4AF37;
  margin-top: 2px;
} */

.membership-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/*
.membership-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #702277;
  margin-bottom: 6px;
}

.membership-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555555;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px 18px;
  margin-top: 16px;
  align-items: start;
}

.mem-label {
  font-weight: 600;
  color: #301334; /* deep purple */
/* } */

.mem-desc {
  color: #3A3A3A;
  line-height: 1.5;
}

.membership-card {
  background-color: #FFFFFF;                 /* white box */
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}




/* ===== GENERIC FLEX ROW LAYOUTS ===== */

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.flex-row > * {
  flex: 1 1 320px;
}

.events-list {
  list-style: none;
  font-size: 0.92rem;
}

.events-list li {
  margin-bottom: 10px;
}

/* ===== FOOTER ===== */

footer {
  background-color: #301334;
  color: #FFFFFF;
  padding: 30px 16px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
}

.footer-inner > div {
  flex: 1 1 200px;
}

.footer-inner h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: #F0E9FF;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: #CCCCCC;
}
.footer-links {
  list-style: none;
  padding-left: 0; /* Add this */
}


/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 960px) {
  .section {
    padding: 50px 14px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 60px;
  }

  .nav-container {
    padding: 8px 12px;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav as dropdown */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #301334;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    gap: 10px;
    display: none;
  }

  nav.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .services-grid {
    gap: 16px;
  }

  .footer-inner {
    gap: 16px;
  }
}

/* Ensure desktop nav stays horizontal */
@media (min-width: 721px) {
  header nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    width: auto;
  }

  header .nav-cta {
    width: auto;
    text-align: center;
  }

  header nav.open {
    display: flex;
  }
}


/* ===== Privacy Policy Layout Fix ===== */

.policy-section .container {
  max-width: 900px;      /* keeps the text from stretching full width */
  margin: 0 auto;        /* centers the content block */
  padding: 0 16px;       /* adds some space from the left/right edges */
}

/* Make sure headings and text are nicely aligned */
.policy-section h2,
.policy-section h3,
.policy-section p {
  text-align: left;
}

/* Fix bullet lists so they are not at the extreme edge */
.policy-section ul {
  padding-left: 1.5rem;  /* indent the bullet lists */
  margin-left: 0;        /* remove any weird extra margin if present */
  list-style: disc;      /* ensure normal bullet style */
}


/* ===== Site Map Layout Fix ===== */

.sitemap-section .container {
  max-width: 900px;      /* keeps content from stretching too wide */
  margin: 0 auto;        /* centers the content block */
  padding: 0 16px;       /* adds spacing from left/right edges */
}

/* Ensure text and headers align consistently */
.sitemap-section h2,
.sitemap-section p {
  text-align: left;
}

/* Indent the bullet list */
.sitemap-section ul {
  padding-left: 1.5rem;
  margin-left: 0;
  list-style: disc;
}


/* ===== 404 Page Layout Fix ===== */

.error404-section .container {
  max-width: 900px;     /* keeps text readable */
  margin: 0 auto;       /* centers content */
  padding: 0 16px;      /* padding from edges */
}

/* Ensure headings and text align properly */
.error404-section h2,
.error404-section p {
  text-align: left;
}

/* Proper indentation for bullet lists */
.error404-section ul {
  padding-left: 1.5rem;
  margin-left: 0;
  list-style: disc;
}


/* ===== Shell Page Layout Fix ===== */

.shell-section .container {
  max-width: 900px;     /* keeps text readable */
  margin: 0 auto;       /* centers content */
  padding: 0 16px;      /* padding from edges */
}

/* Ensure headings and text align properly */
.shell-section h2,
.shell-section p {
  text-align: left;
}

/* Proper indentation for bullet lists */
.shell-section ul {
  padding-left: 1.5rem;
  margin-left: 0;
  list-style: disc;
}
