:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #2c2f30;
  --link-color: #f99f10;
  --header-bg-color: #ffffff;
  --font-family: system-ui;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--header-bg-color) !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.246);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  padding: 0 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--link-color) !important;
  transform: translateY(-1px);
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--link-color);
}

/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.heading {
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

/* Heading */
.heading h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f99f10;
  position: relative;
}

/* Accent underline with a subtle motion-inspired feel */
.heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background-color: #f99f10;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Slight animation on hover (performance arts vibe) */
.heading h2:hover::after {
  width: 120px;
}

/* Paragraphs */
.heading p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #444;
}

/* Subtle spacing rhythm inspired by choreography */
.heading p:first-of-type {
  margin-top: 0.5rem;
}
.title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  text-align: center;
}

/* Heading */
.title h2 {
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 0.8rem;
  color: #f99f10;
  position: relative;
  display: inline-block;
}

/* Centered accent underline */
.title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: #f99f10;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Motion-inspired hover animation */
.title h2:hover::after {
  width: 130px;
}

/* Paragraph */
.title p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0.5rem auto 0;
}
.box {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 21px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.cust-bg {
  padding: 2.5rem 1rem 3rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.8;
  border-left: 3px solid rgba(249, 159, 16, 0.35); /* subtle stage-like vertical line */
}

/* Main section heading */
.cust-bg h2 {
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
  color: #f99f10;
  position: relative;
  padding-left: 0.8rem;
}

/* Accent bar for h2 (like a spotlight cue) */
.cust-bg h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 4px;
  height: 80%;
  background-color: #f99f10;
  border-radius: 4px;
}

/* Subheadings */
.cust-bg h3 {
  font-weight: 600;
  margin-top: 17px;
  margin-bottom: 0.6rem;
  color: #222;
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}

/* Underline accent for h3 */
.cust-bg h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 60%;
  height: 2px;
  background-color: rgba(249, 159, 16, 0.7);
  transition: width 0.3s ease;
}

/* Small motion touch on hover */
.cust-bg h3:hover::after {
  width: 100%;
}

/* Paragraphs */
.cust-bg p {
  margin-bottom: 15px;
  font-size: 1.02rem;
  color: #444;
}

/* Slightly highlight the first paragraph (intro to the process) */
.cust-bg p:first-of-type {
  font-size: 1.06rem;
  font-weight: 400;
}

.img_el {
  padding: 60px 0;
  position: relative;
  margin-top: 17px;
}
.img_el:before {
  content: "";
  background: color-mix(in srgb, #00000091, transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 17px;
}
.img_el .img_el-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/performance-spaces.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 17px;
}
.img_el .container {
  position: relative;
  z-index: 3;
}
.img_el .container h2,
.img_el .container p {
  color: white !important;
}
.img_el .container h3 {
  color: #ef8a54;
}
.box-first,
.box-second {
  padding: 17px 15px;
  color: #222;
}

/* Warm soft gradient */
.box-first {
  background: linear-gradient(135deg, #fdfbf7, #ece7e1);
}

/* Cool metallic gradient */
.box-second {
  background: linear-gradient(135deg, #e6e6e6, #c7c7c7);
}

@media (min-width: 767px) {
  .box-first {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  .box-second {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .box-first {
    border-radius: 21px 21px 0 0;
  }
  .box-second {
    border-radius: 0 0 21px 21px;
  }
}
.program {
  position: relative;
  margin: 2.5rem auto;
  padding: 2.5rem 1.8rem 2.8rem;
  background: radial-gradient(
      circle at top left,
      rgba(249, 159, 16, 0.12),
      transparent 55%
    ),
    #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.12);
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  overflow: hidden;
}

/* Subtle stage-like glow on the left */
.program::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 4px;
  height: 70%;
  background: linear-gradient(
    180deg,
    rgba(249, 159, 16, 0.85),
    rgba(249, 159, 16, 0.15)
  );
  border-radius: 0 6px 6px 0;
}

/* Spotlight halo in the corner */
.program::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(249, 159, 16, 0.18),
    transparent 65%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* Main heading */
.program > h2 {
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-bottom: 1.2rem;
  color: #f99f10;
  position: relative;
  padding-bottom: 0.6rem;
}

/* Accent for the “topic” word inside the span */
.program > h2 span {
  color: #222;
}

/* Underline with motion feel */
.program > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: #f99f10;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.program:hover > h2::after {
  width: 130px;
}

/* Image styling (works with Bootstrap classes you already use) */
.program img {
  outline: 3px solid rgba(249, 159, 16, 0.6);
  background-color: #fff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.18);
}

/* Paragraphs */
.program p {
  line-height: 1.75;
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 1.1rem;
}

/* Slight emphasis on the intro paragraph */
.program p:first-of-type {
  font-size: 1.07rem;
  font-weight: 400;
}

/* Subsection headings */
.program h3 {
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  color: #222;
  position: relative;
  display: inline-block;
  padding-left: 0.6rem;
  padding-bottom: 0.15rem;
}

/* Small vertical cue (like a stage mark) */
.program h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 3px;
  height: 70%;
  background-color: rgba(249, 159, 16, 0.7);
  border-radius: 4px;
}

/* Underline animation similar to .cust-bg h3 */
.program h3::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  bottom: -4px;
  width: 55%;
  height: 2px;
  background-color: rgba(249, 159, 16, 0.7);
  transition: width 0.3s ease;
}

.program h3:hover::after {
  width: 100%;
}

/* Optional: slightly different accents per subsection (training / skills / career) */
.program h3.training::before {
  background-color: rgba(46, 196, 182, 0.7);
}

.program h3.skills::before {
  background-color: rgba(56, 189, 248, 0.7);
}

.program h3.career::before {
  background-color: rgba(244, 63, 94, 0.7);
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .program {
    padding: 3rem 2.5rem 3.2rem;
  }

  .program p {
    max-width: 90%;
  }
}

@media (max-width: 767.98px) {
  .program {
    margin: 2rem 0;
  }

  .program > h2 {
    text-align: center;
  }

  .program > h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .program p {
    text-align: left;
  }
}
.work {
  margin: 3rem auto;
  padding: 2.7rem 2rem 3rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
  line-height: 1.75;
}

/* Soft ambient glow */
.work::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(249, 159, 16, 0.18),
    transparent 70%
  );
  filter: blur(8px);
  pointer-events: none;
}

/* Secondary highlight */
.work::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(249, 159, 16, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

/* Section Headings */
.work > h2 {
  font-weight: 700;
  letter-spacing: 0.9px;
  color: #f99f10;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}

/* Animated underline */
.work > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 3px;
  background-color: #f99f10;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.work > h2:hover::after {
  width: 120px;
}

/* Paragraph styling */
.work p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  color: #444;
}

/* First paragraph slightly emphasized */
.work p:first-of-type {
  font-size: 1.06rem;
}

/* Rhythm (spacing between grouped sections) */
.work h2 + p {
  margin-top: 0.7rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .work {
    padding: 2rem 1.4rem;
  }

  .work > h2 {
    text-align: center;
  }

  .work > h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.links {
  background: #ffffff;
  padding: 2.2rem 21px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
  width: 279px;
  margin-bottom: 15px;
}

/* Soft ambient glow */
.links::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(249, 159, 16, 0.17),
    transparent 70%
  );
  pointer-events: none;
}

/* Header */
.links h2 {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.8px;
  margin-bottom: 1.2rem;
  color: #f99f10;
  padding-left: 0.5rem;
  position: relative;
}

/* Accent bar */
.links h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 4px;
  height: 70%;
  background-color: #f99f10;
  border-radius: 4px;
}

/* List */
.links .sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual items */
.links .sidebar-page-list li {
  margin-bottom: 0.8rem;
}

/* Link styles */
.links .sidebar-page-list li a {
  text-decoration: none;
  color: #333;
  font-size: 1.05rem;
  font-weight: 500;
  padding-left: 0.3rem;
  position: relative;
  transition: color 0.3s ease;
}

/* underline on hover */
.links .sidebar-page-list li a::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #f99f10;
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Hover effects */
.links .sidebar-page-list li a:hover {
  color: #f99f10;
}

.links .sidebar-page-list li a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 767.98px) {
  .links {
    padding: 1.8rem 1.4rem;
  }

  .links h2 {
    text-align: center;
    padding-left: 0;
  }

  .links h2::before {
    display: none;
  }
}
.footer {
  background: #ffffff;
  border-top: 3px solid rgba(249, 159, 16, 0.45);
  padding-top: 2.5rem !important;
  padding-bottom: 2rem !important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #444;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}


/* Footer text */
.footer p {
  font-size: 0.95rem;
  color: #555;
}

/* Email + terms container */
.footer span,
.footer a {
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover */
.footer a:hover {
  color: #f99f10;
}

/* Icon alignment fix */
.footer i {
  vertical-align: -1px;
  color: #f99f10;
}

/* Terms link underline animation */
.footer a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background-color: #f99f10;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.footer a:hover::after {
  width: 100%;
}

/* Logo spacing */
.footer img {
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.footer img:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }

  .footer span {
    margin-bottom: 0.6rem;
  }

  .footer a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
