:root {
  --dark: #0c1521;
  --navy: #121f30;
  --gold: #b47226;
  --light: #f1eee9;
  --softold: #f5f3ef;
  --soft: #f0f2f6;

  --bs-primary: #121f30;
  --bs-primary-rgb: 18, 31, 48;
  --bs-secondary: #b47226;
  --bs-secondary-rgb: 180, 114, 38;
  --bs-dark: #0f172a;
  --bs-dark-rgb: 15, 23, 42;
  --bs-light: #f8f9fb;
  --bs-light-rgb: 248, 249, 251;
  --bs-body-color: #2b2f36;
  --bs-body-color-rgb: 43, 47, 54;
  --bs-secondary-color: #6c757d;
  --bs-border-color: #e5e7eb;

  --bs-body-bg: white;
  --bs-font-sans-serif: 'Open Sans', sans-serif;
  --bs-body-font-size: 18px;
}

html, body {
  overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Crimson Pro', serif;
}

h1 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  h1 {
    line-height: 1.3;
  }
}

h2 {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h5 {
    font-family: 'Crimson Pro', serif;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* List */
.custom-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b47226;
  font-weight: bold;
}

a.content {
    color: var(--gold);
    text-decoration: none;
}

a.content:hover, a.content:active, a.content:focus {
    text-decoration: underline;
}


.hero-subtitle {
  font-size: 1.65rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

section p.section-subtitle {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
/* ul, li {
    text-align: left;
} */

/* =========================
   SECTION SYSTEM
========================= */
.section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .section {
  padding: 60px 0;
}
}

.section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.section p.single {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto; 
}

.section p.double {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section p.small {
    font-size: 0.95rem;
}

.section-light { background: var(--light); }
.section-soft { background: var(--soft); }
.section-white { background: white; }
.section-navy {background: var(--navy); }
.section-dark {background: var(--dark); }

.section-light, .section-light p, .section-light li {
    color: #4a5568;
}

.section-light h2, .section-light h5 {
 color: var(--dark);   
}

.section-white, .section-white p, .section-white li {
    color: #555;
}

.section-white h2, .section-white h5 {
 color: var(--dark);   
}

.section-soft p, .section-soft h2, .section-soft li {
    color: #555;
}

.section-soft h2, .section-soft h5 {
    color: var(--dark);   
}

.section-dark, .section-dark p, .section-dark span, .section-dark h2, .section-dark li {
    color:rgba(255,255,255,0.75);
}

.section-navy, .section-navy p, .section-navy span, .section-navy h2, .section-navy li {
    color:rgba(255,255,255,0.85);
}



.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover {
  background-color: #9a5f1e;
  color: white;
}

.btn-gold-nav {
  background: var(--gold);
  color: white;
  padding: 8px 16px;
}

.btn-gold-nav:hover {
  background-color: #9a5f1e;
  color: white;
}

/* =========================
   NAV
========================= */
.navbar-brand {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
}

.navbar-brand img {
  max-width: 200px;
}

@media (min-width: 992px) {
  .navbar-brand img {
    max-width: 250px;
  }
}

/* NAV LINKS */
.navbar-nav .nav-link {
  position: relative;
  color: #0c1521;
  font-weight: 500;
  margin: 0 12px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(0,0,0,0.30);
}

.navbar .nav-item:first-child .nav-link {
  border-top: none;
}

/* underline (hidden by default) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #b47226;
  transition: width 0.3s ease;
}

/* underline (hidden by default) */
.navbar-nav .nav-link:hover, .navbar-nav .dropdown-item:hover  {
    text-decoration: none;
}

/* on hover */
.navbar-nav .nav-link:hover::after{
  width: 100%;
}

/* active state */
.navbar-nav .nav-link.active::after {
  width: 100%;
}


/* Remove dropdown arrow */
.navbar .dropdown-toggle::after {
  display: none;
}

/* Remove dropdown arrow */
.navbar .dropdown-toggle {
  display: none;
}


/* =========================
   MOBILE FIRST (DEFAULT)
========================= */
.navbar-nav .nav-link::after {
  content: none;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
  }

/* Let Bootstrap handle dropdown visibility */
.navbar .dropdown-menu {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 0 12px;
  margin: 0;
  display: block;
  position: static;
}

/* Submenu items */
.navbar .dropdown-item {
  color: black;
  padding: 12px 0 12px 30px;
  border-top: 1px solid rgba(0,0,0,0.30);
  letter-spacing: 1px;
}

.navbar .dropdown-item:hover {
  color: var(--bs-secondary);
  background-color: transparent;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
  color: var(--bs-secondary) !important;
}

/* Prevent dropdown toggle turning green on tap */
.navbar .nav-item.dropdown .nav-link.show {
  color: #0c1521;
}

/* =========================
   DESKTOP OVERRIDES
========================= */
@media (min-width: 992px) {

  .navbar .nav-link {
    border-top: none;
  }

  .navbar-nav .nav-link::after {
    content: "";
  }

  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #0c1521;
  }

  /* Dropdown container */
  .navbar .dropdown-menu {
    display: block;
    position: absolute;

    background-color: white;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    min-width: 220px;
    border-radius: 0;
    padding: 0;

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  }

  .navbar .dropdown-menu li:first-child .dropdown-item {
  border-top: none;
}

  /* Hover behaviour */
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Desktop dropdown items */
  .navbar .dropdown-item {
    padding: 12px 20px;
    border-top: 1px solid rgba(0,0,0,0.30);
  }

  .navbar .dropdown-item:hover {
    /* background-color: rgba(255,255,255,0.03); */
    background-color: white;
  }
}

/* =========================
   CAROUSEL
========================= */
.carousel-caption .btn {
  padding: 12px 22px;
  font-size: 0.95rem;
}
.carousel,
.carousel-inner,
.carousel-item {
  /* height: 80vh; */
  height: 520px;
}

@media (max-width: 768px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 400px;
  }
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 3;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Slide container */
.carousel-item {
  /* height: 80vh; */
  /* height: 450px; */
  position: relative;
  align-items: center;
}

/* Image background */
.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #0c1521;    /* fills empty space nicely */
  z-index: 0;
  object-position: right center;
}

@media (min-width: 768px) {
  .carousel-img {
    object-fit: contain;
  }
}

/* Centered (explicit) */
.carousel-img.img-center {
  object-position: center;
}

/* Bottom aligned */
.carousel-img.img-bottom {
  object-position: center bottom;
}

/* Top aligned */
.carousel-img.img-top {
  object-position: center top;
}

.carousel-item .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 30px;   
}

/* Caption (RESET Bootstrap properly) */

/* Hide ALL caption elements by default */
.carousel-caption > * {
  opacity: 0;
  transform: translateY(20px);
}

/* Animate when active */
.carousel-item.active .carousel-caption > * {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Stagger properly */
.carousel-item.active .carousel-caption h2 {
  transition-delay: 0.2s;
}

.carousel-item.active .carousel-caption p {
  transition-delay: 0.4s;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 33, 0.5);
  z-index: 1;
}

@media (min-width: 768px) {
    .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(12, 21, 33, 0.95) 0%,
      rgba(12, 21, 33, 0.9) 25%,
      rgba(12, 21, 33, 0.6) 45%,
      rgba(12, 21, 33, 0.25) 65%,
      rgba(12, 21, 33, 0.05) 80%,
      rgba(12, 21, 33, 0.0) 100%
    );
    z-index: 1;
  }
}

.carousel-caption .btn {
  transition: all 0.3s ease;
}

.carousel-caption {
  max-width: 520px;  
}

.carousel-caption {
  position: relative;      /* override bootstrap */
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0;
  text-align: left;
}

.carousel-caption p.hero-title, .carousel-caption h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;  
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -1px;
  /* text-transform: uppercase; */
  margin-bottom: 24px;
  color: #fff;
  transform: translateY(20px) scale(0.98);
}

.carousel-item.active .carousel-caption h2 {
  transform: translateY(0) scale(1);
}

.carousel-caption p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.85);
}

.carousel-caption .btn {
  padding: 12px 22px;
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .carousel-item .container {
    padding-left: 80px;
  }

  .carousel-caption p.hero-title, .carousel-caption h2 {
    font-size: 3.8rem;
    line-height: 1;
  }

  .carousel-caption p {
    font-size: 1.5rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
  display: flex;
  }
}

/* =========================
   FEATURE SYSTEM
========================= */
.feature-strip {
  background: var(--dark);
  color: white;
  padding: 15px 0;
}

@media (min-width: 992px) {
  .feature-strip {
    padding: 70px 0;
  }
}

.feature-item {
  padding: 20px;
  position: relative;
}

/* vertical divider lines */
.feature-item:not(:last-child)::after {
  content: none;
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .feature-item:not(:last-child)::after {
    content: "";
  }
}

/* icons */
.feature-item .icon {
  color: #b47226;
  margin-bottom: 15px;
  width: 48px;
  height: 48px;
}

/* text */
.feature-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

.icon {
  width: 48px;
  height: 48px;
  color: #b47226;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* .icon svg {
  width: 100%;
  height: 100%;
  vector-effect: non-scaling-stroke;
  stroke-width: 2;
  transform: none;
} */

.icon svg {
  width: 100%;
  height: 100%;
  display: block;

  /* normalise everything */
  stroke: currentColor;
  fill: none;

  /* this fixes scaling inconsistencies */
  vector-effect: non-scaling-stroke;
}

/* override the dice specifically (it uses fill) */
.icon svg path[fill] {
  fill: currentColor;
  stroke: none;
}


.feature-item {
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:hover .icon {
  transform: translateY(-3px);
}

.feature-list li {
  position: relative;
  padding-left: 5px;
  margin-bottom: 12px;
}

.section-light .feature-list li {
  color: #4a5568
}

/* =========================
   STEPS
========================= */
.how-it-works .row {
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(180,114,38,0.2);
  }

  .step {
    position: relative;
  }

  .step p {
    color: #6b7280;
    font-size: 0.95rem;
    max-width: 260px;
    margin: 0 auto;
}
}

/* =========================
   CARDS
========================= */
.session-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.session-card.featured {
  border: 2px solid var(--gold);
}

/* =========================
   GENERAL CARDS
========================= */
.card-white {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: left;
}


/* =========================
   HIGHLIGHT CARD
========================= */
.highlight-card {
  background: #f8f9fb;
  padding: 30px;
  border-radius: 12px;
}

.highlight-card h5 {
  margin-bottom: 15px;
  font-family: 'Crimson Pro', serif;
}

.highlight-card ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.highlight-card li {
  margin-bottom: 10px;
  color: var(--dark);
}

/* =========================
   PRICE
========================= */
.price {
  font-size: 2rem;
  font-weight: 600;
  margin: 15px 0;
}

.price span {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.6);
}


/* =========================
   SESSION
========================= */

.session-card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.session-card h5 {
  font-family: 'Crimson Pro', serif;
  margin-bottom: 10px;
}

.session-card .price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}

.session-card .price-sub {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.session-card .session-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
}


.session-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.session-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-align: left;
}

.session-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b47226;
  font-weight: bold;
}

/* FEATURED */
.session-card.featured {
  border: 2px solid #b47226;
}

.session-card.featured .price {
  color: #b47226;
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  color: white;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 420px;
  }
}

.page-hero .caption {
  max-width: 660px;
}

/* background image */
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,21,33,0.9) 0%,
    rgba(12,21,33,0.7) 50%,
    rgba(12,21,33,0.5) 100%
  );
  z-index: 1;
}

/* keep content above */
.page-hero .container {
  z-index: 2;
}

/* typography tweaks */
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-hero .lead {
  max-width: 700px;
  color: rgba(255,255,255,0.85);
}

.page-hero.overlay-strong::before {
  background: rgba(12,21,33,0.85);
}

/* =========================
   FOOTER
========================= */
/* Left column */
.footer-title {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* Section labels (like NAVIGATION / CONTACT) */
.footer-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

/* Nav links */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #b47226;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer a:hover {
  color: #b47226;
}

/* Logo */

.footer-logo {
  max-width: 200px;
}

/* Contact layout */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact-item .icon {
  opacity: 0.7;
  font-size: 1rem;
}

/* Socials */
.footer-socials a {
  margin-right: 15px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-socials a:hover {
  color: #b47226;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}


/* =========================
   CONTACT FORM
========================= */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}

.contact-form .form-label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* =========================
   STEPS VERTICAL
========================= */
.step {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left; /* IMPORTANT */
}

.step-content {
  flex: 1;
  /* max-width: 420px; */
  border-bottom: 1px solid #e5d6b3;
  padding-bottom: 3px;
  margin-bottom: 8px;
}

.step-content p {
  margin: 0;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #b7791f; /* your gold */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 4px;
}

.steps-wrapper {
  display: inline-block;
  text-align: left;
}

/* Turn OFF horizontal connector for this layout */
.steps-vertical .step::after {
  display: none !important;
}

.steps-vertical .step p {
  max-width: unset;
  font-size: 1.05rem;
}



.dnd-benefit {
  padding: 28px;
  border-radius: 12px;
  background: var(--soft);
  height: 100%;
  text-align: left;
  transition: all 0.2s ease;
  border: 1px solid rgba(180, 114, 38, 0.08); /* subtle edge */
}

.dnd-benefit h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #1a1a1a;
}



.dnd-benefit p {
  margin-bottom: 0;
}

.dnd-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.feature-strip {
  border-top: 1px solid rgba(255,255,255,0.1);
}