

/* ===== Base ===== */

:root {
  /* Core ocean palette */
  --sea-deep: #071726;
  --sea-mid: #123047;
  --sea-mist: #c9d5dd;
  --sea-foam: #e2f0f4;
  --header-overlay-offset: 96px;

  /* Accent / magical tones */
  --shell-rose: #f5c1d5;
  --moon-gold: #f2d58b;
  --lavender-mist: #d5c8f0;

  /* Text colors */
  --ink: #1e2834;
  --ink-soft: #3e4a5a;
  --ink-on-dark: #fdfbff;

  /* Buttons / interactive */
  --btn-main: #0d3c4f;
  --btn-main-hover: #11556f;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    'Josefin Sans',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #222222;
  background: radial-gradient(
    circle at top,
    #0d233c 0%,
    #050811 40%,
    #02030a 100%
  );
}

/* Utility containers */

.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 800px;
}

/* Color bands like Flourishing Goddess */

.section-light {
  background: #ffffff;
}

.section-colored {
  background: #1A9B9A;
  color: #f8f1ff;
}

.section-colored-light {
  background: #e0fffb;
}

/* Top Bar */

.top-bar {
  background: #efd89f;
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem 1rem;
}

.top-bar-link {
  color: #ffffff;
  margin-left: 0.75rem;
  text-decoration: underline;
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.logo-mark {
  width: 120px;
  max-width: 32vw;
  height: auto;
  object-fit: contain;
  display: block;
  margin-right: 0.75rem;
  filter: none;
  mix-blend-mode: multiply;
}

.logo-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin: 0;
}

.logo-text p {
  margin: 0;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Desktop nav */

.main-nav {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.85rem;
}

.main-nav a {
  color: #f5f2ff;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(253, 223, 155, 0.1);
  color: #ffe7b9;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 70%;
  margin: 0 auto;
  background: #ffffff;
}

/* Hero */

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1 * var(--header-overlay-offset));
  padding: calc(4rem + var(--header-overlay-offset)) 1.5rem 4rem;
  color: #ffffff;
  text-align: center;
  /*background-image:
    linear-gradient(to bottom, rgba(4, 6, 20, 0.7), rgba(4, 6, 20, 0.9)),
    radial-gradient(circle at 10% 0, rgba(55, 117, 187, 0.65), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(151, 93, 191, 0.7), transparent 60%);
  background-size: cover;
  background-position: center;*/
  background-image: url(images/background_1.jpg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 50% 0,
    rgba(255, 255, 255, 0.16),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.65;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary {
  background: #efd89f;
  color: #3b223d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 240, 219, 0.7);
  color: #ffe7c1;
}

.btn-ghost:hover {
  background: rgba(255, 240, 219, 0.08);
}

.btn.full-width {
  width: 100%;
}

/* Section styles */

.section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section p {
  line-height: 1.6;
}

.lead {
  font-size: 1rem;
  max-width: 640px;
  margin: 0.5rem auto 2rem;
}

/* Split sections */

.section-split .split-inner,
.split-list {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.profile-image {
  width: 100%;
  max-width: 350px;
  border-radius: 999px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.split-content p {
  margin-top: 1rem;
}

/* Lists */

.split-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.split-list li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.3rem;
}

.split-list li::before {
  content: '✧';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: #c16de0;
}

.personal-growth-stack {
  display: grid;
  gap: 1rem;
}

.personal-growth-photo {
  width: 100%;
  min-height: 340px;
  max-height: 62vh;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  opacity: 0.84;
}

/* Newsletter form */

.newsletter-form {
  background: rgba(7, 11, 25, 0.75);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.25rem;
  border: 1px solid rgba(252, 223, 172, 0.5);
  color: #fdf1ff;
  margin-bottom: 2.5rem;
}

.newsletter-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.required {
  color: #ffd19e;
  margin-left: 0.15rem;
}

.form-group input {
  width: 100%;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 8, 20, 0.95);
  color: #fdf7ff;
  font-size: 0.9rem;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Home cards */

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.home-card {
  background: rgba(4, 7, 20, 0.8);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(248, 220, 168, 0.4);
}

.home-card.photo-placeholder {
  min-height: 240px;
  padding: 0;
  border: 1px dashed rgba(248, 220, 168, 0.55);
  background:
    linear-gradient(135deg, rgba(13, 36, 61, 0.88), rgba(39, 21, 70, 0.88)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 20px
    );
}

.home-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-family: 'Cinzel', serif;
}

.home-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

/* Store cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: #fbf7ff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid #efe1ff;
  box-shadow: 0 10px 20px rgba(48, 32, 89, 0.08);
}

.card-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-top: 1rem;
  cursor: zoom-in;
  transition: transform 240ms ease, box-shadow 240ms ease;
  transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
  .card-photo:hover {
    transform: scale(1.04);
    box-shadow: 0 18px 28px rgba(18, 48, 71, 0.24);
  }
}

.card-photo-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 1200;
}

body.photo-overlay-open .card-photo-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.card-photo.is-expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(88vw, 920px);
  max-height: 84vh;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.45);
  z-index: 1300;
  cursor: zoom-out;
}

.card h3 {
  margin-top: 0;
  font-family: 'Cinzel', serif;
}

/* Footer */

.site-footer {
  background: #EFD89F;
  color: #f5f0ff;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-social {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-decoration: none;
  color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.instagram-link {
  border: none;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.instagram-link svg {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.youtube-link {
  border: none;
  background: #ff0033;
}

.youtube-link svg {
  fill: #ffffff;
}

.youtube-link .yt-play {
  fill: #ff0033;
}

.tiktok-link {
  border: none;
  background: #111111;
}

.tiktok-link svg {
  fill: #ffffff;
  filter: drop-shadow(-1px -1px 0 #25f4ee) drop-shadow(1px 1px 0 #fe2c55);
}

.footer-right p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .section-split .split-inner,
  .split-list {
    grid-template-columns: 1fr;
  }

  .newsletter-form .form-row {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding-inline: 1rem;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: transparent;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.2rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .main-nav a {
    padding: 0.35rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.open {
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 65vh;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }
}

  /* =========================================================
   BLOG / LATEST OFFERING
   ========================================================= */

  .blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
  }

  .latest-offering-card {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: 1.5rem;
    background: #fbf7ff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #efe1ff;
    box-shadow: 0 10px 20px rgba(48, 32, 89, 0.08);
  }

  .latest-image-placeholder {
    border-radius: 14px;
    background: linear-gradient(135deg, #c4d8ff, #f7d1ff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #28324a;
    font-size: 0.8rem;
    padding: 0.75rem;
  }

  .latest-image-placeholder span {
    max-width: 90%;
  }

  .latest-content h3 {
    margin-top: 0;
    font-family: 'Cinzel', serif;
    margin-bottom: 0.4rem;
  }

  .latest-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .latest-excerpt {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
  }

  /* Mini list of recent posts */

  .blog-mini-list h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
  }

  .blog-mini-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .blog-mini-list li + li {
    margin-top: 0.4rem;
  }

  .blog-mini-list a {
    font-size: 0.9rem;
  }

  /* Search block under Water Wisdom */

  .blog-search {
    margin-top: 2.5rem;
    text-align: center;
  }

  .blog-search input {
    max-width: 320px;
    width: 100%;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #d5c8f0;
    font-size: 0.9rem;
  }

  .blog-search #results {
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  /* =========================================================
   TESTIMONIAL SLIDER (desktop / global)
   These rules ensure the slider behaves as a track on larger viewports.
   ========================================================= */


  /*

  .testimonial-slider {
    position: relative;
    margin-top: 2rem;
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
  }

  .testimonial-track {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    transition: transform 480ms cubic-bezier(0.22, 0.9, 0.33, 1);
    will-change: transform;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 320ms ease, transform 480ms cubic-bezier(0.22, 0.9, 0.33, 1);
    padding: 1.8rem 1.6rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eddff7;
    box-shadow: 0 10px 24px rgba(30, 18, 63, 0.12);
  }

  .testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonial-nav {
    border: none;
    background: #f1e6ff;
    color: #5b3a6a;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background 0.2s ease, transform 0.1s ease;
  }

  .testimonial-dots {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
  }

  .testimonial-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid #7b5da9;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .testimonial-dots .dot.active {
    background: #7b5da9;
  }
*/

/* =========================================================
   TESTIMONIALS SLIDER (GLOBAL)
   Works on desktop + mobile
   ========================================================= */

.testimonial-slider {
  position: relative;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.testimonials-viewport {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  transition: height 320ms ease;
}

.testimonials-viewport.manual-mode {
  cursor: pointer;
}

.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform 480ms cubic-bezier(0.22, 0.9, 0.33, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  background: #ffffff;
  border: 1px solid #eddff7;
  box-shadow: 0 10px 24px rgba(30, 18, 63, 0.12);
}

.testimonial-quote {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  font-style: italic;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #efd89f;
}

/* Buttons */
.slider-btn {
  border: none;
  background: #EFD89F;
  color: #5b3a6a;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.1s ease;
}

.slider-btn:hover {
  background: #e5cc8c;
  transform: translateY(-1px);
}

.slider-btn:focus-visible {
  outline: 2px solid #4b2e70;
  outline-offset: 2px;
}

/* Dots */
.testimonial-dots {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.testimonial-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid #EFD89F;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.testimonial-dots .dot.active {
  background: #EFD89F;
}

/* Autoplay toggle */
.testimonial-controls {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

.testimonial-autoplay-toggle {
  background: transparent;
  border: 1px solid rgba(123, 93, 169, 0.14);
  color: #4b2e70;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.testimonial-autoplay-toggle[aria-pressed="true"] {
  background: linear-gradient(90deg, #f2d58b, #f5c1d5);
  color: #2b1830;
  border-color: rgba(123, 93, 169, 0.28);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    transition: none !important;
  }

  .testimonials-viewport {
    transition: none !important;
  }
}


  /* Responsive */

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .latest-offering-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .testimonials-viewport {
    order: 1;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(239, 216, 159, 0.94);
  }

  .slider-btn.prev {
    left: 0.4rem;
  }

  .slider-btn.next {
    right: 0.4rem;
  }

  .slider-btn:hover {
    transform: translateY(-50%);
  }

  .testimonial-slide {
    padding: 1.3rem 1.2rem;
  }
}

/* =========================================================
   OCEANIC THEME OVERRIDES
   ========================================================= */

body {
  font-family: 'Arial', sans-serif;
  background: radial-gradient(circle at top, #f7fbff 0%, var(--sea-mist) 35%, #b5c0ca 100%);
  color: var(--ink);
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(120deg, var(--sea-mid), #164261);
  color: var(--ink-on-dark);
  text-align: center;
  padding: 1.4rem 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

header h1 {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
}

header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  backdrop-filter: none;
}

nav a {
  margin: 0.3rem 0.8rem;
  text-decoration: none;
  color: var(--ink-on-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--moon-gold);
}





/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .testimonial-slide,
  .testimonial-nav,
  .testimonial-dots .dot {
    transition: none !important;
    scroll-behavior: auto;
  }

  .testimonial-slide {
    transform: none !important;
    opacity: 1 !important;
  }
}





