/* App-level overrides — meeting theme comes from /sunshine-eye-2027/css/SunshineEyeRetina_Styles.css */

/* Design tokens for the Cvent faculty widget, mapped to the meeting theme. */
:root {
  --healio-white: #ffffff;
  --healio-border: #e5e5e5;
  --healio-placeholder: #dadada;
  --healio-label: #8c8c8c;
  --healio-text: #323333;
  --healio-text-secondary: #5f6c76;
  --healio-blue: var(--theme-color, #2484c6);
  --healio-orange: var(--secondarycolor, #f58632);
  --healio-page-bg: #ffffff;
  --healio-radius: 10px;
  --healio-font-sans: "Lexend", sans-serif;
  --meeting-heading-font: "Oswald", sans-serif;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* No top offset: the header is fixed and transparent so it overlays each
   page's hero graphic, which already reserves room for it. */
.site-main {
  flex: 1 0 auto;
}

/* ---------------------------------------------------------------------------
   Interior page header art.

   Banner height was driven by heading length, so pages ranged from one line
   ("INDUSTRY") to three ("COMPREHENSIVE / OPHTHALMOLOGIST / PROGRAM") and the
   art rendered at a different height on each. A fixed height with centered
   content makes every interior header identical. 350px clears the three-line
   case (330px of content) so nothing overflows.
--------------------------------------------------------------------------- */

.lgx-banner-inner {
  min-height: 350px;
  display: flex;
  align-items: center;
}

.lgx-banner-inner .lgx-page-inner {
  width: 100%;
  /* Top weighting keeps the text clear of the fixed header overlaying it. */
  padding: 12rem 0 5rem;
}

/* ---------------------------------------------------------------------------
   Nav dropdowns.

   The theme nudges the hovered link with `margin-left: 5px`. Because the menu
   has no width of its own it sizes to its content, so that margin widened the
   whole menu mid-hover. A real min-width stops the resize, and a transform
   keeps the nudge without affecting layout.
--------------------------------------------------------------------------- */

.lgx-header .lgx-navbar .lgx-nav .dropdown-menu {
  min-width: 220px;
}

.lgx-header .lgx-navbar .lgx-nav .dropdown-menu li a {
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.lgx-header .lgx-navbar .lgx-nav .dropdown-menu li a:hover {
  margin-left: 0;
  transform: translateX(5px);
}

/* ---------------------------------------------------------------------------
   Owl Carousel arrows and dots.

   Only Owl's core CSS ships inside healiolivebundle.css, so the theme layer
   (arrows, dots) is defined here. The `owl-theme` class is added by the
   initializer in components/SiteScripts.tsx.
--------------------------------------------------------------------------- */

.owl-theme .owl-nav {
  margin-top: 0;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(16, 34, 61, 0.18);
  color: #2484c6;
  font-size: 30px;
  line-height: 40px;
  opacity: 0.85;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.owl-theme .owl-nav button.owl-prev {
  left: 0;
}

.owl-theme .owl-nav button.owl-next {
  right: 0;
}

.owl-theme .owl-nav button.owl-prev:hover,
.owl-theme .owl-nav button.owl-next:hover {
  opacity: 1;
  background: #f4f8fb;
}

.owl-theme .owl-dots {
  text-align: center;
  margin-top: 1.5rem;
}

.owl-theme .owl-dots .owl-dot {
  border: 0;
  background: transparent;
  padding: 0;
}

.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(36, 132, 198, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #2484c6;
  transform: scale(1.25);
}

@media (max-width: 767px) {
  .owl-theme .owl-nav button.owl-prev,
  .owl-theme .owl-nav button.owl-next {
    display: none;
  }
}

/* Hotel photo gallery: keep every slide the same height. */
#lgx-owlgallery .lgx-gallery-single figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

#lgx-owlgallery .lgx-gallery-single figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

#lgx-owlgallery .owl-dots {
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------------------------------------
   Site footer (components/SiteFooter.tsx)

   Mirrors the footer layout of the Bootstrap 5 meeting sites (partner logo
   strip, newsletter band, about + links, copyright row) using this site's
   Bootstrap 3 grid, so the footerarea theme does not need to be imported.
--------------------------------------------------------------------------- */

.sunshine-footer__partners {
  background: #dddddd;
  padding: 20px 0;
}

.sunshine-footer__partner {
  text-align: center;
  padding: 10px 0;
  color: #333;
  font-size: 85%;
}

.sunshine-footer__partner img {
  display: block;
  margin: 0 auto 8px;
  max-height: 52px;
  width: auto;
}

.sunshine-footer__main {
  background: #333;
  color: #fff;
}

.sunshine-footer__main p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.sunshine-footer__heading {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

/* One content row: About plus the site logo on the left, newsletter on the right. */
.sunshine-footer__wrapper {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Short accent rule between the About copy and the site logo below it. */
.sunshine-footer__rule {
  width: 60px;
  height: 0;
  margin: 16px 0 14px;
  border: 0;
  border-top: 1px solid var(--theme-color, #2484c6);
  opacity: 1;
}

.sunshine-footer__logo img {
  max-height: 44px;
  width: auto;
}

/* Sticky header logo is 145px in the theme; add 50px and let height follow. */
.lgx-header .menu-onscroll .lgx-navbar .lgx-logo a img {
  max-width: 195px;
}

@media (max-width: 767px) {
  .lgx-header .menu-onscroll .lgx-navbar .lgx-logo a img {
    max-width: 150px;
  }
}

.sunshine-footer__apps {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}

.sunshine-footer__apps img {
  max-height: 34px;
  width: auto;
  margin: 0 10px 8px 0;
}

/* Bottom row: copyright left, links centred, social icons right. */
.sunshine-footer__copyright {
  padding: 18px 0;
}

.sunshine-footer__copy {
  font-size: 14px;
  margin: 0;
}

.sunshine-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.sunshine-footer__nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.sunshine-footer__nav a:hover {
  color: var(--theme-color, #2484c6);
}

.sunshine-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.sunshine-footer__social li {
  margin: 0;
}

.sunshine-footer__social li a {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.sunshine-footer__social li a:hover {
  background: var(--theme-color, #2484c6);
  color: #fff;
}

.sunshine-footer__social li a i {
  font-size: 15px;
  line-height: 1;
}

/* Below the Bootstrap 3 md breakpoint the bottom row stacks, so the centred
   links and right-aligned icons both fall back to the left edge. */
@media (max-width: 991px) {
  .sunshine-footer__nav,
  .sunshine-footer__social {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

/* Cvent faculty widget inside the LGX page shell. */
.sunshine-cvent-widget {
  margin-top: 24px;
}

/* Retina program: reuse the RWC widget tokens, tinted orange. */
.sunshine-cvent-widget--orange {
  --healio-blue: var(--healio-orange);
}

/* The RWC agenda widget ships its own page padding; the LGX shell already
   provides that, so collapse it here. */
.sunshine-cvent-widget section[aria-label="Agenda"] {
  padding: 0;
  background: transparent;
}

/* The LGX theme styles every <button> as a brand CTA (Oswald, drop shadow,
   rotated ::after). Switch that off inside Cvent widgets so Filters / More
   Information keep the RWC control look. */
.sunshine-cvent-widget button {
  font-family: inherit;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: none;
  overflow: visible;
}

.sunshine-cvent-widget button::after {
  content: none;
}

.sunshine-cvent-widget select {
  height: auto;
  box-shadow: none;
}

/* Interior banner headings of three lines or more, on phones. */
@media (max-width: 767px) {
  .mobile-smaller {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
}

/* Stova agenda / faculty widget frames, before their content is measured. */
iframe[data-containerid] {
  width: 100%;
  min-height: 70vh;
  border: 0;
}

/* Jotform Call for Cases embeds: no frame, border, or drop shadow. */
.sunshine-jotform iframe,
iframe[id^="JotFormIFrame"],
iframe[src*="jotform.com"] {
  border: 0 !important;
  outline: none;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.sunshine-jotform-title {
  text-align: center;
}

/* The form is a fixed 850px inside its own document, so the frame is capped to
   that width and centred to keep the fields under the heading. The embed script
   sets `min-width: 100%` inline, which would otherwise win over the cap. */
.sunshine-jotform iframe {
  display: block;
  width: 100% !important;
  max-width: 850px;
  min-width: 0 !important;
  margin-left: auto;
  margin-right: auto;
}
