:root,
html,
body,
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*:root {}*/

/* Structural class definitions */
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--site-bg);
  /*background: var(--overall-bg);*/
}

.invColor {
  background: var(--font-color);
  color:  var(--site-bg);
}

.invColor.fadeRight {
  background: linear-gradient(
    to right,
    var(--font-color)
    0 70%,
    transparent
  );
}

html {
  scroll-behavior: smooth;
}


body {
  padding-top: var(--header-h);
  /* <-- replaces main’s margin-top */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}


.container {
  max-width: var(--site-width);
  /* remove the 1200px clamp */
  width: 100%;
  /* fill the available line */
  margin: 0 auto;
  /* harmless now; keeps centering if a max-width returns later */
  padding: 0;
  /* keep your gutters */


  background: var(--site-bg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: var(--header-bg);
  transform: translateY(0);
  will-change: transform;
}



/* While we're within the header height, move it proportionally with scroll */
.site-header.header--tracking {
  transform: translateY(calc(-1 * var(--header-offset, 100%) * var(--header-progress, 0)));
  transition: none !important; /* track exactly with content (no lag) */
}

/* Fully hidden state (beyond the tracking zone) */
.site-header.header--hidden {
  transform: translateY(calc(-1 * var(--header-offset, 100%)));
}

/* Slow in/out when toggling hidden/shown */
.site-header.header--ready {
  transition: transform var(--header-speed, 1000ms) cubic-bezier(.22,.61,.36,1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  header.site-header.header--ready { transition: none; }
}

/* Optional: push content down so it's never under the header
body.with-sticky-spacing { padding-top: var(--header-offset); }
*/








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

.text-one-line-spacer {
  height: 1rem;
  /* controls the gap height */
}

.text-two-line-spacer {
  height: 2rem;
  /* controls the gap height */
}

.image-feature {
  /*max-width: 10%; height: auto; */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /*padding: 2px;*/
  /* Ensures the image scales while preserving aspect ratio */
}

.image-studio-pg-bottom {
  height: 30vh;
}


.image-portrait {
  width: 50%;
  /*height: auto;*/
  /*object-fit: contain; *//* Ensures the image scales while preserving aspect ratio */
}

.image-LogoAdmiraVox {
  height: var(--in-header-logo-height);
  width: auto;
  /* preserves aspect ratio */
  display: block;
  /*max-width: 100%;*/
  /* stays responsive if cell gets smaller */
}

.image-LogoA {
  width: var(--in-footer-logo-width);
  height: auto;
  /* preserves aspect ratio */
  display: block;
  /* stays responsive if cell gets smaller */
}

.image-Logo {
  width: auto;
  /* preserves aspect ratio */
  height: 2rem;
  display: block;
  max-width: none;
}

.image-center {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Ensures the image scales while preserving aspect ratio */
}

.place-left-center {
  display: grid;
  align-items: center;
  justify-items: start;
  /*padding: 16px; */
}

.place-right-center {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: .75rem;

  /*display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-items: end;*/
  /*padding: 16px; */
}

.place-center {
  display: grid;
  align-items: center;
  justify-items: center;
  /*padding: 16px; */
}





/* FLEX ROW: Equal Height Items (explicit and readable) */
.flex-row-equal-height {
  display: flex;
  flex-direction: row;
  /* explicit for clarity */
  align-items: stretch;
  /* ensures equal height */
  gap: var(--fontSz0);
}

.flex-row-equal-height>* {
  height: 20px;
  /* or your preferred consistent height */
  width: auto;
  /* maintains natural width */
  object-fit: contain;
  /* avoids distortion for images */
  display: block;
}


.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}


.flex-col {
  display: flex;
  flex-direction: column;
  /* explicit for clarity */
  gap: var(--fontSz0);
}

.flex-row {
  display: flex;
  flex-direction: row;
  /* explicit for clarity */
  gap: var(--fontSz0);
}








/* Middle column with 3 images */
.flex-row-equal-height {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--fontSz0);
}

.flex-row-equal-height>* {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Vertical form layout */
.form-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--fontSz0);
  max-width: 600px;
}

.form-label {
  font-size: var(--p-fs);
  line-height: var(--p-lh);
  font-weight: bold;
  margin-bottom: var(--fontSz-2);
}

.form-field {
  padding: var(--fontSz-2);
  font-size: var(--p-fs);
  line-height: var(--p-lh);
  font-weight: normal;
  width: 100%;
}

/* Modal popup for form confirmation */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--modal-backdrop-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: var(--modal-content-bg);
  padding: var(--fontSz3);
  border-radius: var(--modal-content-radius);
  text-align: center;
}

.hidden {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 1px, 1px); white-space: nowrap; border: 0;
}

/* Section spacing and layout utilities */
.section-wrapper {
  width: 100%;
  padding-top: var(--fontSz3);
  padding-bottom: var(--fontSz-2);
  padding-left: var(--fontSz-2);
  padding-right: var(--fontSz-2);
}


.cta-wrapper {
  display: flex;
  flex-direction: column;
  /* keep stacked */

  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */

  width: 100%;

  padding-top: var(--space-rem-CTA);
  padding-bottom: var(--space-rem-CTA);

  padding-left: clamp(0, var(--space-rem-CTA), var(--space-rem-CTA));
  padding-right: clamp(0, var(--space-rem-CTA), var(--space-rem-CTA));
}


.text-wrapper {
  /*use this inside a grid */
  padding-left: var(--fontSz2);
  padding-right: var(--fontSz2);
  padding-top: var(--fontSz0);
  padding-bottom: var(--fontSz0);
  /*background-color:rgb(226, 224, 221);*/
  /*overflow-wrap: break-word;*/
}

.screen-size-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto; /* header | main (fills) | footer */
}

.center-wrap-main {
  display: grid;
  place-items: center;     /* centers inside the available main area */
}



/* -------- Buttons -------- */
.btn-cta,
.btn-header,
.btn-footer {
  display: inline-flex;
  /* Keeps the button inline but allows flexibility */
  justify-content: center;
  /* Centers content horizontally */
  align-items: center;
  /* Centers the content vertically if needed */
  text-decoration: none;

  border-top-left-radius: var(--modal-content-radius);
  border-top-right-radius: var(--modal-content-radius);
  border-bottom-left-radius: var(--modal-content-radius);
  border-bottom-right-radius: var(--modal-content-radius);
  border-width: 1px;
  border-style: solid;
  border-color: var(--btn-cta-border);
  color: var(--btn-cta-color);
  background-color: var(--btn-cta-bg);
  cursor: pointer;

  line-height: 1;
  font-weight: 500;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-cta {
  padding: var(--fontSz-2) var(--fontSz0);
  gap: var(--fontSz-2);
}

.btn-header {
  padding: var(--fontSz-2) var(--fontSz0);
  border-color: var(--btn-header-border);
  color: var(--btn-header-color);
  background-color: var(--btn-header-bg);
}

.btn-footer {
  padding: var(--fontSz-3) var(--fontSz-3);
}


.btn-cta:hover,
.btn-footer:hover {
  background-color: var(--btn-cta-bg-hover);
  /* New background color on hover */
  border-color: var(--btn-cta-border-hover);
  /* Border color on hover */
  transform: translateY(-1px);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--btn-cta-border);
  outline-offset: 2px;
}

.btn-cta:active {
  background-color: var(--btn-cta-bg-hover);
  border-color: var(--btn-cta-border-hover);
  transform: translateY(1px) scale(.99);
}

.btn-cta {
  font-size: var(--fontSz-1);
}


/* Change color on hover */
.btn-header:hover {
  background-color: var(--btn-header-bg-hover);
  /* New background color on hover */
  border-color: var(--btn-header-border-hover);
  /* Border color on hover */
}



.btn-header:focus-visible {
  outline: 2px solid var(--btn-cta-border);
  /*intentionally using the same as cta!!!*/
  outline-offset: 3px;
}

.btn-header:active {
  background-color: var(--btn-header-bg-hover);
  border-color: var(--btn-header-border-hover);
  transform: translateY(1px) scale(.99);
}

/* Active state for the current page in the main nav */
.btn-header.is-active,
.btn-header[aria-current="page"] {
  /*border-color: var(--btn-header-active-border, currentColor);*/
  background-color: var(--btn-header-bg-hover);
  border-color: var(--btn-header-border-hover);
}



.btn-header {
  font-size: var(--fontSz-1);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}




.mt-2 {
  margin-top: var(--fontSz3);
}

.mb-2 {
  margin-bottom: var(--fontSz3);
}

.py-2 {
  padding-top: var(--fontSz3);
  padding-bottom: var(--fontSz3);
}

.py-4 {
  padding-top: var(--fontSz3);
  padding-bottom: vvar(--fontSz3);
}





.three-columns,
.two-columns,
.one-columns {
  column-gap: var(--fontSz3);
  /* space between columns */
  column-fill: balance;
  /* balance column height */
  text-align: justify;
  /* spread words across line */
  hyphens: auto;
  /* helps justification look better */

  /*text-align-last: justify;*/      /* also justify the last line */
}

.three-columns {
  column-count: 3;
  /* 3 columns */
}

.two-columns {
  column-count: 2;
  /* 2 columns */
}

.one-columns {
  column-count: 1;
  /* 1 columns */
}

.three-columns p,
.two-columns p,
.one-columns p {
  margin: 0 0 var(--fontSz0);
  /* space between paragraphs */
}

.two-columns > * {
  min-width: 0;      /* critical for Safari */
  min-height: 0;     /* helps with tall media */
}

/* --- iPad/Safari multicol fix for replaced media --- */
.two-columns figure {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}




/* Ratio wrapper to prevent CLS */
.video-wrap { 
  width: 100%; 
  overflow: hidden;   /* optional, hides tiny overflow from controls */
  aspect-ratio: 16 / 9; 
}

.video-wrap > video { 
  width: 100%; 
  display: block;     /* avoid inline baseline gaps */
  max-width: 100%;
  height: 100%;       /* keeps aspect ratio */
  object-fit: contain;/* or 'cover' if you crop */  
}

/* Responsive media inside multi-columns */
.two-columns video,
.two-columns img,
.two-columns canvas,
.two-columns iframe {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  break-inside: avoid;
}

.two-columns .video-wrap {
  width: auto;              /* don’t force a % width box in multicol */
  max-width: 100%;
  aspect-ratio: auto;       /* avoid ratio math in multicol */
  overflow: hidden;         /* safety net for control bar nits */
}


.two-columns .video-wrap > video {
  display: block;
  width: 100%;  
  max-width: 100%;
  height: auto;                    /* no 100% height here */
  object-fit: contain;               /* avoid WebKit object-fit + multicol bug */
}





figure {
  margin: 0;
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  /* if the parent is flex, this makes it stretch */
  padding: var(--fontSz0);
}

figure>iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* adjust if you prefer 4:3, etc. */
  height: auto;
  /* browsers compute from aspect-ratio */
  border: 0;
}

figure>figcaption {
  margin-top: var(--fontSz-2);
  width: 100%;
  text-align: center;
}



/* --- Header hide-on-scroll enhancement (appended) --- */
.site-header {
  top: env(safe-area-inset-top, 0);
  transition: transform var(--transition-fast);
  will-change: transform;
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
}

.site-header.header--hidden {
  transform: translateY(calc(-100% - env(safe-area-inset-top, 0)));
}

/* Prevent content jump beneath fixed header */
body {
  padding-top: var(--header-offset, var(--header-h));
}


/* Creates a clipping context; doesn't set size or rounding */
.crop {
  overflow: hidden;
  /* or clip, see below */
  position: relative;
  /* keeps things sane for positioned children */
}

/* Prefer modern clipping when available (no scrollbars ever) */
@supports (overflow: clip) {
  .crop {
    overflow: clip;
  }
}

/* Only phone links inside the spec-value cell */
.spec-value a[href^="tel:"] {
  text-decoration: none;
}
.spec-value a[href^="tel:"]:hover,
.spec-value a[href^="tel:"]:focus {
  text-decoration: none;     /* prevent underline on hover/focus */
}

/* keep accessibility: show a clear focus ring */
.spec-value a[href^="mailto:"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Only phone links inside the spec-value cell */
.spec-value a[href^="mailto:"] {
  text-decoration: none;
}
.spec-value a[href^="mailto:"]:hover,
.spec-value a[href^="mailto:"]:focus {
  text-decoration: none;     /* prevent underline on hover/focus */
}

/* keep accessibility: show a clear focus ring */
.spec-value a[href^="mailto:"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}


.no-text-decor {
text-decoration: none;
}

/* Anchors won't hide under the header 
:target {
  scroll-margin-top: calc(var(--header-offset, var(--header-h)) + var(--fontSz-2));
}
*/

/* === Auto-generated responsiveness review for: assets/css/base.css === */
/* Breakpoint skeleton (fill in as needed) */
@media (max-width: 1200px) {
  /* xl down */
}

@media (max-width: 992px) {
  /* lg down: stack sidebars, shrink grids */
}

@media (max-width: 768px) {

  /* md down: single-column layout */
  /* FLEX ROW: Equal Height Items (explicit and readable) */
  .flex-row-equal-height {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  .flex-center {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  .flex-row {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  /* Middle column with 3 images */
  .flex-row-equal-height {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  /* Vertical form layout */
  .form-vertical {
    max-width: min(100%, 600px)
      /* responsive override from max-width:600px */
    ;
  }

  /* Modal popup for form confirmation */
  .modal {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  .three-columns {
    column-count: 2;
    /* 3 columns -> 2 columns*/
  }

  

  /* FLEX ROW: Equal Height Items (explicit and readable) */
  .flex-row-equal-height {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  /* Middle column with 3 images */
  .flex-row-equal-height {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }

  /* Vertical form layout */
  .form-vertical {
    max-width: min(100%, 600px)
      /* responsive override from max-width:600px */
    ;
  }

  /* Modal popup for form confirmation */
  .modal {
    flex-wrap: wrap
      /* allow items to wrap on small screens */
    ;
  }
}

@media (max-width: 576px) {

  /* sm down: tighten paddings, font sizes */
  .place-left-center {
    padding: 12px
      /* tighten from 16px */
    ;
  }



  .place-center {
    padding: 12px
      /* tighten from 16px */
    ;
  }

  /* FLEX ROW: Equal Height Items (explicit and readable) */
  .flex-row-equal-height {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  .flex-center {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  .flex-row {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  /* Middle column with 3 images */
  .flex-row-equal-height {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  /* Modal popup for form confirmation */
  .modal {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  .three-columns {
    column-count: 1;
    /* 3 columns -> 1 columns*/
  }

  .two-columns {
    column-count: 1;
    /* 2 columns -> 1 columns*/
  }

  
  /* FLEX ROW: Equal Height Items (explicit and readable) */
  .flex-row-equal-height {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  .flex-center {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  .flex-row {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  /* Middle column with 3 images */
  .flex-row-equal-height {
    flex-direction: column
      /* stack items on phones */
    ;
  }

  /* Modal popup for form confirmation */
  .modal {
    flex-direction: column
      /* stack items on phones */
    ;
  }
}


/* === End auto-generated review === */



/* === Header nav overflow-proof inline + compact mode === */
.site-header { 
  container-type: inline-size; /* allow container queries on header width */
}

.inHeaderNavContainer {
  container-type: inline-size;         /* NEW */
  container-name: header-nav-container;        /* Optional but recommended */
}

/* Wide default: single-line nav contained in its grid track */
.primary-links-mobile,
.primary-links {
  display: flex;
  gap: clamp(8px, 1.6vw, 24px);
  white-space: nowrap;
  max-inline-size: 100%;
  overflow: clip;
  align-items: center;
  justify-content: flex-end;
  /* Slight elasticity to absorb small squeezes before compact mode */
  /*font-size: clamp(13px, 0.95vw, 16px);*/
}

.primary-links-mobile {
   display: none; 
}


/* Hide the compact toggle by default (wide) */
.nav-toggle { 
  display: none; 
  list-style: none;
}
.nav-toggle::-webkit-details-marker { display: none; }

/* Compact mode: switch before overflow */
@container header-nav-container (max-width: 768px) {
  .nav-shell { position: relative; }

  /* Show the toggle (hamburger button) */
  .nav-toggle-hamburger {
    height: 4vh; 
    width: 4vh;
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 6vh; 
    block-size: 6vh;
    border-radius: 99999px;
    background: var(--header_bg_color);
    cursor: pointer;
  }
  .nav-toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

  /* Hide inline row of links in compact mode until opened */
  .primary-links { display: none; }
  .primary-links-mobile { display: none; }

  /* When opened, show links as a floating panel */
  .nav-shell[open] .primary-links-mobile {
    display: grid;
    gap: 12px;
    position: fixed;
    inset: calc(var(--header-h) + 8px) 16px auto 16px;
    padding: 16px;
    background-color: transparent;
    border-radius: var(--modal-content-radius);
    z-index: 1050;
  }

  /* Improve tap targets */
  .primary-links a.btn-header {
    padding-block: var(--modal-content-radius);
  }
}


.events-main-YouTube-Video-Cover
{
position: relative; 
width: 100%; 
height: 40vh;
overflow: hidden;
}

.events-main-YouTube-Video
{
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      filter: grayscale(100%) !important;
      pointer-events: none !important; /* keeps it decorative; remove if you want clicks */
}

/* Footer social icons: remove link underline + fix inline baseline gap */
.site-footer .social-links a {
  text-decoration: none;
  display: inline-flex;    /* keeps icons nicely aligned */
  align-items: center;
}

.site-footer .social-links a:focus-visible {
  outline: 2px solid currentColor;  /* keep keyboard focus visible */
  outline-offset: 2px;
}

.site-footer .social-links img {
  display: block;          /* removes the tiny baseline “gap/line” under images */
}




/* Global safety net */
video, img, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}



