/* ===========================
    Global Variables & Resets
=========================== */

:root {
  --primary-color: #00263E;
  --secondary-color: #A5ACAF;
  --white: #FFFFFF;
  --overlay-bg: rgba(255, 255, 255, 0.95);
  --text-color: #00263E;
  --font-family: "urw-din", sans-serif;
  --transition-ease: cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  overflow-x: clip;
}

body {
  min-height: 100%;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family) !important;
  color: var(--text-color) !important;
  background: #fff;
  line-height: 1.6;
}

body.admin-bar .site-header {
  top: 32px; /* default height of wpadminbar on desktop */
}

@media screen and (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0px; /* height of wpadminbar on mobile */
  }
}

html, body {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 100px;
}

h1, h2, h3, h4, h5, h6,
a, p, li, span, button, input, select, textarea {
  font-family: var(--font-family);
}

li {
  margin-bottom: 5px !important;
}

ul ul {
  margin-top: 0.5rem;
}

ul ul ul{
  margin-top: 0.5rem;
}

.site-footer {
  background: var(--primary-color);
  color: #fff;
  padding: 56px 0 40px 0;
  text-align: center;
  font-size: 14px;
}

.footer-logo img {
  max-height: 35px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav li {
  display: inline;
  position: relative;
}

.footer-nav li:not(:last-child)::after {
  content: "|";
  color: #fff;
  margin: 0 8px;
  font-weight: 500;
}

.footer-nav a {
  color: #fff;
  text-decoration: underline;
  text-transform: uppercase;;
  font-weight: 500;
  padding: 0 10px;
  font-size: 14px;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-copy {
  font-size: 13px;
  color: #ccc;
}

.page-banner {
  height: 500px; /* or whatever value works visually */
  padding: 0; /* remove vertical padding so height is consistent */
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; /* vertically center */
  justify-content: center; /* horizontally center if needed */
  text-align: center;
}

.page-banner.banner-image {
  background-size: cover;
  background-position: top center; /* <-- full control here */
}

.page-banner .container.align-top {
  justify-content: flex-start;
  padding-top: 3rem;
  padding-bottom: 0;
}

.page-banner .container.align-center {
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.page-banner .container.align-bottom {
  justify-content: flex-end;
  padding-bottom: 3rem;
  padding-top: 0;
}

/* Make the container fill height to allow vertical positioning */
.page-banner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }

  .page-banner.banner-image h1 {
    font-size: 3rem !important;
  }
}

@media (max-width: 576px) {
  .page-banner {
    height: 220px;
  }

  .page-banner.banner-image h1 {
    font-size: 2rem !important;
  }
}


.page-banner h1 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 0 1rem;
  color: #fff;
}

/* For solid color background */
.page-banner.banner-solid h1 {
  font-size: 3rem;
}

/* For image background */
.page-banner.banner-image h1 {
  font-size: 4.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
}

.page-banner.banner-image h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #fff; /* Optional: also make this dynamic if needed */
  margin: 10px auto 0;
}

.page-content {
  max-width: 70%;
  margin: 4rem auto;
}
@media (max-width: 768px) {
  .page-content {
    max-width: 90%;
    margin: 2rem;
  }
}

.wp-block-heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.site-main {
  flex: 1 0 auto; 
}

.site-footer {
  flex-shrink: 0;
}

li {
  margin-bottom: 10px;
}

li a{
  color: #00263e;
}

.wp-block-table.is-style-stripes {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  font-family: inherit;
  margin-bottom: 2rem;
}

.wp-block-table.is-style-stripes thead {
  background-color: #00263E;
}

.wp-block-table.is-style-stripes thead th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 1rem;
}

.wp-block-table.is-style-stripes tbody td {
  padding: 1rem;
  vertical-align: top;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: hsla(0, 0%, 77%, 0.3);
}

.wp-block-table.is-style-stripes td strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  font-family: var(--font-family);
}

p {
  font-family: var(--font-family);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* ===========================
    Slider Styles (Swiper)
=========================== */

.hero-swiper {
  position: relative;
  width: 100%;
  height: 530px;
  min-height: 500px;
  overflow: hidden;
}

body.home .hero-swiper {
  height: 650px;
}

@media (max-width: 1024px) {
  .hero-swiper, body.home .hero-swiper { height: 60vh; min-height: 400px; }
}

@media (max-width: 768px) {
  .hero-swiper, body.home .hero-swiper { height: 50vh; min-height: 350px; }
}

@media (max-width: 480px) {
  .hero-swiper, body.home .hero-swiper { height: 45vh; min-height: 300px; }
}

.hero-swiper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.swiper-wrapper { height: 100%; }
.swiper-slide { position: relative; width: 100%; height: 100%; }

.slide-content {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  z-index: 2;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s var(--transition-ease), transform 1.2s var(--transition-ease);
}

@media (max-width: 768px) {
  .slide-content { bottom: 50px; padding: 0 20px; }
}

@media (max-width: 480px) {
  .slide-content { bottom: 30px; padding: 0 10px; }
}

.slide-content.slide-enter-active {
  opacity: 1;
  transform: translateX(0);
}

.slide-text-wrapper {
  background: rgba(255, 255, 255, 0.85);
  padding: 15px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.slide-content p {
  font-size: 1.25rem;
  color: #3B3B3B;
  font-weight: 400;
}

.slide-tagline {
  font-size: 3.75rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #00263E;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .slide-tagline { font-size: 3rem; }
  .slide-content p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .slide-tagline { font-size: 2.5rem; }
  .slide-content p { font-size: 1rem; }
  .slide-text-wrapper { padding: 15px 20px; }
}

@media (max-width: 480px) {
  .slide-tagline { font-size: 2rem; }
  .slide-content p { font-size: 0.9rem; }
}

.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  width: 50px !important;
  height: 50px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 480px) {
  .swiper-button-prev,
  .swiper-button-next { display: none !important; }
}

.swiper-button-prev { left: 40px !important; }
.swiper-button-next { right: 40px !important; }

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.8;
}

.swiper-pagination-bullet-active { opacity: 1; }


.hero-video-wrapper {
	position: relative;
	width: 100%;
  padding-top: 56.25%;
	overflow: hidden;
}

.hero-video-wrapper video,
.hero-video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay-content {
	position: absolute;
	bottom: 4rem;
	left: 4rem;
	color: #fff;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-overlay-content .overlay-logo {
	max-width: 200px;
	height: auto;
}

.hero-overlay-content .overlay-text {
	font-size: 50px;
  font-weight: 700;
	line-height: 1.4;
}
@media (max-width: 768px) {
  .hero-overlay-content .overlay-text {
    font-size: 30px;
  }
  .hero-overlay-content {
    gap: 0.5rem;
    left: 2rem;
    bottom: 1rem;
  }
}
@media (max-width: 576px) {
   .hero-overlay-content .overlay-text {
    font-size: 20px;
  }
  .hero-overlay-content .overlay-logo {
	max-width: 100px;
	height: auto;
}
}



/* ===========================
    Header & Navigation
=========================== */

.site-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 999;
  background: var(--primary-color);
  color: var(--white);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4.375rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .header-container {
    height: 4rem;
    justify-content: space-between;
  }
   
}


.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img { height: 45px; width: auto; }
@media (max-width: 768px) { .site-logo img { height: 36px; } }
@media (max-width: 480px) { .site-logo img { height: 30px; } }
@media (max-width: 360px) { .site-logo img { height: 25px; } }

.site-nav .primary-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 10px 0 0 0;
}

.site-nav .primary-menu li { position: relative; }

.site-nav .primary-menu li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 20px 0;
  display: block;
  transition: all 0.3s ease;
}

.site-nav .primary-menu li a:hover { color: #A23030; }
.site-nav .primary-menu li.current-menu-item > a { color: #e50914; }

/* Prevent 'Contact' from appearing active when on homepage */
#menu-item-219.current-menu-item > a,
#menu-item-219.current_page_item > a {
  color: inherit !important;
  font-weight: normal !important;
}
/* Allow hover color */
#menu-item-219 > a:hover {
  color: #A23030 !important;
}


.site-nav .primary-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #00263E;
  padding: 10px 0;
  display: none;
  min-width: 200px;
  text-align: center;
  z-index: 999;
  list-style: none;
  margin: 0;
}

.site-nav .primary-menu li:hover ul.sub-menu { display: block; }

.site-nav .primary-menu li ul.sub-menu li a {
  color: #fff;
  padding: 0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.site-nav .primary-menu li ul.sub-menu li a:hover { color: #A23030; }

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle img {
  height: 25px;
  width: auto;
}
@media (max-width: 576px) {
   .menu-toggle img {
  height: 22px;
}
}

/* ===========================
    Mobile Navigation
=========================== */

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 6rem;
    right: -100%;
    height: calc(100vh - 72px);
    width: 80%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  

  .site-nav.active { right: 0; }
  

  .primary-menu {
    flex-direction: column;
    gap: 0 !important;
  }

  .primary-menu li a {
    color: #fff !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .primary-menu li ul.sub-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    background: #00263E;
    display: none;
    text-align: left !important;
    padding-left: 60px !important;
    margin: 0;
    list-style: none;
  }

  .primary-menu li.submenu-open ul.sub-menu {
    display: block;
  }

  .primary-menu li ul.sub-menu li a {
    color: #fff;
    padding: 10px 20px;
    font-weight: 400;
    border-bottom: none;
  }

  .primary-menu li.submenu-open > a {
    color: #A23030 !important;
  }

  .primary-menu li.submenu-open ul.sub-menu { display: block; }

  .primary-menu li.menu-item-has-children > a::after {
    content: '▶';
    margin-left: 10px;
    font-size: 0.75rem;
  }
}

/* ===========================
    Info cards
=========================== */
.info-card {
  background: #0C3C60;
  color: #fff;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
}

.info-card h3 {
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  min-height: 4rem;
}
@media (max-width: 576px) {
  .info-card h3 {
    min-height: 2rem;
  }
}

.info-card p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-more-info {
  padding-top: 1rem;
}

.btn-more-info-link {
  background: #71A6CC;
  color: #fff;
  font-weight: 500;
  padding: 10px 30px;
  letter-spacing: 0.5px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 4px;
}

.btn-more-info-link:hover {
  opacity: 0.85;
}


/* ===========================
    About Us Section
=========================== */
.about-section {
  background-color: #d4e0ea;  /* soft light blue */
  color: #00263E;
}

.about-title {
  font-size: 3.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.about-description {
  color: #2F2E2E;
  font-size: 1rem;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  text-align: center;
}

.btn-about {
  display: inline-block;
  background-color: #00263E;
  color: #fff;
  font-weight: 500;
  padding: 12px 40px;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.btn-about:hover {
  opacity: 0.85;
}


/* ===========================
    Subscribe Section
=========================== */
.newsletter-section {
  position: relative;
  text-align: center;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Overlay to simulate background image opacity */
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

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

.newsletter-title {
  color: #00263E;
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

/* Form fields */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"] {
  border-radius: 0;
  padding: 12px 20px;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: 100%;
}

.gform_wrapper input[type="submit"] {
  background: #3C3C3C;
  color: #fff;
  border: none;
  padding: 12px 40px;
  transition: 0.3s;
}

.gform_wrapper input[type="submit"]:hover {
  background: #000;
}

/* Consent checkbox alignment */
.ginput_container_consent {
  text-align: left !important;
  padding-left: 20px;
}

/* Custom Gravity Form HTML block */
.custom-newsletter-heading {
  background-color: #d4e0ea;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
}


/* ===========================
    Contact Us Section
=========================== */
.contact-section {
  background-color: #0C3C60;
  padding: 4rem 0;
}

.contact-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.studio-name {
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.studio-divider {
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto 1.5rem auto;
}

.studio-address, .studio-contact {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
}

.studio-contact a {
  color: #fff;
  text-decoration: none;
}

.studio-map iframe {
  width: 100%;
  max-width: 500px;
  height: 250px;
  border: none;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.theater-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.theater-form-wrapper,
.theater-form-wrapper input,
.theater-form-wrapper textarea,
.theater-form-wrapper label,
.theater-form-wrapper select {
  color: #000;
}

 #gform_wrapper_4 .gfield_label{
  width: 180px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  padding-right: 20px;
  margin-top: 10px;
  color: #000; /* override for centered_white_text layout */
}

#gform_wrapper_2 .gform_heading, #gform_wrapper_4 .gform_heading  {
  display: none !important;
}

/* Form wrapper */
#gform_wrapper_2, #gform_wrapper_4 {
  max-width: 600px;
  margin: 0 auto;
}

#gform_wrapper_2 .gfield_html, #gform_wrapper_4 .gfield_html {
  width: 100% !important;
  padding-left: 0 !important;
  text-align: center;
  margin-bottom: 20px;
}

#gform_wrapper_2 .gfield:not(.gfield_html):not(.gfield_consent), #gform_wrapper_4 .gfield:not(.gfield_html):not(.gfield_consent) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ginput_container_consent {
  padding-left: 1px !important;
}

#gform_wrapper_2 .gfield_label {
  width: 180px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  padding-right: 20px;
  margin-top: 10px;
}

#gform_wrapper_2 .ginput_container {
  flex: 1;
  min-width: 0;
}

#gform_wrapper_4 .ginput_container {
  flex: 1;
}

#gform_wrapper_2 .gfield_description, #gform_wrapper_4 .gfield_description {
  width: 100%;
  padding-left: 150px;
  margin-top: 1px !important;
  font-size: 13px;
  color: #666;
  font-style: italic;
}

#gform_wrapper_2 .ginput_complex, #gform_wrapper_4 .ginput_complex {
  display: flex;
  gap: 10px;
}

#gform_wrapper_2 .ginput_complex input, #gform_wrapper_4 .ginput_complex input {
  flex: 1;
}

#field_2_10.gfield_consent, #field_3_7.gfield_consent, #field_4_13.gfield_consent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

#field_2_10 .gfield_label, #field_4_13 .gfield_label {
  width: 150px !important;
  float: left;
  margin: 0 20px 0 0 !important;
  padding: 0 !important;
  position: relative;
  top: 2px;
}

#field_4_13 .gfield_consent_label a{
  color: rgba(13, 110, 253, 1);
  text-decoration:underline;
}

#field_2_10 .ginput_container_consent, #field_3_7 .ginput_container_consent, #field_4_13 .ginput_container_consent {
  flex: 1;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

/* Checkboxes stacked vertically */

#field_4_6 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

#field_4_6 .gfield_checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
#field_4_6 .gchoice {
  margin: 0;
  display: flex;
  align-items: center;
}

#field_4_6 .gfield-choice-input {
  margin-right: 10px;
}

#input_2_10_1 {
  margin: 0 !important;
  flex-shrink: 0;
}

#field_2_10 .gfield_consent_label, #field_3_7 .gfield_consent_label  {
  margin: 0 !important;
  display: inline !important;
  font-size: 14px;
}

#field_3_7 .gfield_consent_label {
  color: #fff;
}

#field_3_7 .gfield_consent_label a{
  color: #fff;
}

#gform_wrapper_2 .gfield_recaptcha {
  margin: 20px 0 20px 180px;
}

#gform_wrapper_1 .gform_button,
#gform_wrapper_2 .gform_button, #gform_wrapper_4 .gform_button {
  background: #000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  width:auto;
}

#gform_wrapper_3 .gform_button {
  background: #fff;
  color: #000;
}

#gform_wrapper_1 .gform_button:hover,
#gform_wrapper_2 .gform_button:hover, #gform_wrapper_4 .gform_button:hover  {
  background: #333;
}

#gform_wrapper_3 .gform_button:hover{
  background-color: #e5e5e5;
}

@media (max-width: 575.98px) {
  /* Stack all fields vertically */
  #gform_wrapper_2 .gfield, #gform_wrapper_4 .gfield {
    display: block !important;
    margin-bottom: 16px !important;
  }

  #gform_wrapper_2 .gfield_label, #gform_wrapper_4 .gfield_label {
    width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 6px !important;
    float: none !important;
  }

  #gform_wrapper_2 .ginput_complex, #gform_wrapper_4 .ginput_complex {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  #gform_wrapper_2 .ginput_complex span, #gform_wrapper_4 .ginput_complex span {
    width: 100% !important;
  }

  #field_2_10.gfield_consent .gfield_label,
  #field_2_10 .ginput_container_consent, #field_4_13.gfield_consent .gfield_label, #field_4_13 .ginput_container_consent {
    width: 100% !important;
    margin-left: 0 !important;
    gap: 10px;
  }

  #gform_wrapper_2 .gfield_recaptcha {
    margin: 20px 0 !important;
  }

  #gform_wrapper_2 .gform_button {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 14px 24px !important;
  }

  #gform_wrapper_2 .gfield_description {
    padding-left: 0 !important;
    margin-top: 4px !important;
  }

  #field_4_7 .ginput_container_date {
    width: 100%;
  }

  #field_4_7 input {
    width: 100%;
  }

  #gform_wrapper_4 .gfield_time_hour,
  #gform_wrapper_4 .gfield_time_minute,
  #gform_wrapper_4 .gfield_time_ampm {
    flex: 1 1 0%;
    min-width: 0;
  }

  #gform_wrapper_4 .gfield_time_hour input,
  #gform_wrapper_4 .gfield_time_minute input,
  #gform_wrapper_4 .gfield_time_ampm select {
    width: 100%;
  }

 #gform_wrapper_4 .ginput_complex {
    flex-direction: row;
  }
}


/* ===========================
    About Page Slider
=========================== */
.about-slider-section {
  position: relative;
}

.about-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.about-swiper img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.about-swiper .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  color: #fff;
  padding: 0.75rem 1rem 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 576px) {
  .about-swiper .slide-overlay {
    padding: 0.5rem 0.5rem 0.2rem;
  }
  .about-swiper .slide-overlay h3 {
    font-size: 12px !important;
    margin-bottom: 0.1rem !important;
  }
  .about-swiper .slide-overlay p {
    font-size: 10px !important;
  }
}

.about-swiper .swiper-slide:hover .slide-overlay {
  opacity: 1;
}

.about-swiper .swiper-button-prev,
.about-swiper .swiper-button-next {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #FFFFFF !important;
  width: 60px !important;
  height: 60px !important;
  font-size: 2.5rem !important;
  font-weight: bold !important;
  cursor: pointer;
}

.about-swiper .swiper-button-prev {
  padding-right: 3rem;
  left: 10px;
}

.about-swiper .swiper-button-next {
  padding-left: 3rem;
  right: 10px;
}

.about-swiper:hover .swiper-button-prev,
.about-swiper:hover .swiper-button-next {
  opacity: 1;
}

.about-swiper .slide-overlay h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-swiper .slide-overlay p {
  font-size: 16px;
  margin-bottom: -2rem;
  width: 80%;
}

@media (max-width: 768px) {
  /* Always show overlay on small screens */
  .about-swiper .slide-overlay {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Always show slide count */
  .about-swiper .slide-count {
    opacity: 1 !important;
  }

  /* Always show swiper navigation arrows */
  .about-swiper .swiper-button-prev,
  .about-swiper .swiper-button-next {
    opacity: 1 !important;
    display: block !important;
  }
  .about-swiper .swiper-button-prev {
  padding-left: 1rem;
  left: 0 !important;
}

.about-swiper .swiper-button-next {
  padding-right: 2rem;
  right: 0 !important;
}
}


.about-swiper .slide-count {
  font-size: 0.9rem;
  color: #fff;
  text-align: right;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding-bottom: 1rem;
}

.about-swiper .swiper-slide:hover .slide-count {
  opacity: 1;
}

.about-swiper-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-swiper-modal.active {
  display: flex !important;
  opacity: 1 !important;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent !important;
}

.about-swiper-fullscreen-wrapper {
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  position: relative;
  z-index: 2;
}

.about-swiper-fullscreen {
  width: 100%;
  height: 100%;
}

.about-swiper-fullscreen .swiper-wrapper {
  height: 100%;
}

.about-swiper-fullscreen .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.about-swiper-fullscreen .swiper-slide img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  z-index: 1;
}

.fullscreen-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  z-index: 2;
}

.fullscreen-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.fullscreen-overlay p {
  font-size: 1rem;
  opacity: 0.9;
}

.about-swiper-fullscreen .swiper-button-prev,
.about-swiper-fullscreen .swiper-button-next {
  z-index: 20 !important;
  cursor: pointer !important;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.about-swiper-fullscreen .swiper-button-prev {
  padding-right: 20px !important;
}

.about-swiper-fullscreen .swiper-button-next {
  padding-left: 20px !important;
}

@media (max-width: 576px) {
  /* Ensure arrows are visible */
  .about-swiper-fullscreen .swiper-button-prev,
  .about-swiper-fullscreen .swiper-button-next {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    z-index: 10 !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.8rem !important;
  }

  /* Adjust position slightly if needed */
  .about-swiper-fullscreen .swiper-button-prev {
    left: 5px !important;
  }

  .about-swiper-fullscreen .swiper-button-next {
    right: 5px !important;
  }
}

.swiper-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.swiper-close:hover {
  transform: scale(1.1);
}

.fullscreen-trigger {
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.fullscreen-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.fullscreen-trigger:hover::after {
  opacity: 1;
}


/* ===========================
    Services Page
=========================== */

.services-page-content.services-width-80 {
  max-width: 80%;
  margin: 5rem auto;
}

.services-page-content.services-width-60 {
  max-width: 60%;
  margin: 5rem auto;
}

@media (max-width: 768px) {
  .services-page-content.services-width-80, .services-page-content.services-width-60 {
    max-width: 90%;
    margin: 2rem;
  }
}

.service-intro-text {
  font-size: 1.025rem;
}

.image-card-grid .card {
  background-color: #000;
  border: none;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.image-card-grid .card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-card-grid .card-body {
  padding: 15px 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card-grid .card-title {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.image-card-grid .card-link-wrapper {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

@media (min-width: 1200px) {
  .custom-col-5 {
    width: 25% !important;
    flex: 0 0 20% !important;
  }
}

.image-card-grid .modal-grid-card {
  background-color: #000;
  border: none;
  border-radius: 0;
  overflow: hidden;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.modal-grid-card .modal-grid-card-link-wrapper{
  color: inherit;
  text-decoration: none;
  display:flex;
  flex-direction:column;
  height:100%;
}

.image-card-grid .modal-grid-img-top {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 200px;
}

.directory-section {
  background-color: #cedae4;
  padding: 3rem 0;
}

.directory-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
}

.directory-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #33658a; /* muted blue */
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.directory-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.directory-entry:last-child {
  border-bottom: none;
  margin-top: 2rem;
}

.directory-name {
  padding-left: 5rem;
  text-transform: uppercase;
}

.directory-phone {
  padding-right: 5rem;
}

.directory-name,
.directory-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0C3C60;
}

@media (max-width: 576px) {
  .directory-entry {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.5rem;
  }

  .directory-name {
  padding-left: 0;
}

  .directory-phone {
    margin-top: 0.25rem;
    padding-right: 0;
  }
}


/* ===========================
    Detail Pages
=========================== */
.intro-text {
  font-size: 1.025rem;
  line-height: 1.8;
}

.round-image-wrapper img {
  width: 175px;
  height: 175px;
  object-fit: cover;
}
@media (max-width: 576px) {
  .round-image-wrapper img {
  width: 100px;
  height: 100px;
}
}

.round-image-row {
  position: relative;
  gap: 30px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.certification-badge {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 120px;
}

.certification-badge img {
  max-width: 100%;
  height: auto;
}

.text-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.custom-section {
  padding: 4rem 0;
}

.custom-section-container {
  margin: 0 auto;
  padding: 0 2rem;
}

.custom-section.centered_white_text {
  color: #fff;
  text-align: center;
  padding: 4rem 0 3rem 0;
}

.custom-section.centered_white_text h2 {
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.custom-section.centered_white_text hr {
  border: none;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin: 1.5rem auto;
  opacity: 1;
}

.custom-section.centered_white_text p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.5rem;
  color: #fff;
}

.custom-section.centered_white_text a, .custom-section.contact_form_layout a {
  font-size: 0.875rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}

.custom-section.contact_form_layout{
  padding: 4rem 0 3rem 0;
}

.custom-section.contact_form_layout .custom-section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px !important;
}

@media (max-width: 576px) {
  .custom-section.contact_form_layout .custom-section-container {
    display: block;
  }

  .custom-section.contact_form_layout .text-block {
    width: 100%;
    margin-bottom: 2rem;
    
  }
  .custom-section.contact_form_layout .form-block {
     width: 100%;
    text-align: center;
  }
}

.custom-section.contact_form_layout .text-block {
  flex: 1 1 45%;
  color: #fff;
  text-align: center;
}

.custom-section.contact_form_layout .form-block {
  flex: 1 1 45%;
}

.custom-section.contact_form_layout hr {
  border: none;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin: 1.5rem auto;
  opacity: 1;
}

.custom-section.contact_form_layout h2 {
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.custom-section.contact_form_layout h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
}

.custom-section.contact_form_layout p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.5rem;
  color: #fff;
}

.overlay-text-box {
  width: 300px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: transparent;
  line-height: 1.3;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-swiper.side-card-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 430px;
}

.hero-swiper.side-card-slider .swiper-slide {
  position: relative;
}

.hero-swiper.side-card-slider img {
  width: 100%;
  display: block;
}

.side-card-content {
  position: absolute;
  top:0;
  left: 20%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2rem;
  min-width:350px;
  max-width: 400px;
  height: 97%;
  z-index: 2;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.side-card-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  color: #4aa1e0; /* or your site’s accent blue */
}

.side-card-content .underline {
  width: 40px;
  height: 3px;
  background-color: #4aa1e0;
  margin-bottom: 1rem;
  margin: 0 auto 1rem auto;
}

.side-card-content .card-bullets ul {
  padding-left: 1.25rem;
  margin: 0;
}

.side-card-content .card-bullets li {
  list-style-type: disc;
  margin-bottom: 2px !important;
  font-size: 1rem;
}

@media (max-width: 576px) {
  .side-card-content {
    left: 5%;
    min-width: 200px;
    max-width: 300px;
    padding: 1rem;
  }
  .hero-swiper.side-card-slider {
    height: 400px;
  }
}



@media (max-width: 768px) {
  .overlay-text-box {
    width: 200px;
    font-size: 2rem;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .overlay-text-box {
    width: 200px;
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
  }
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icon i {
  color: #00253d; /* Dark navy blue (match your background) */
  font-size: 1rem;
}

.social-icon:hover {
  background-color: #ccc; /* optional hover effect */
}

/* generic download / action button */

.supply-btn{
  display:inline-block;
  background:#00263E;
  color:#fff;
  padding:0.75rem 1.5rem;
  text-decoration:none;
  font-size:1rem;
  border-radius:2px;
  transition:background .25s ease;
  margin: 0.5rem auto 0;
}
.supply-btn:hover{
  background:#004B73;
  color: #fff;
}

.wysiwyg-download-spec-button {
  display: inline-block;
  background: #00263E;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 2px;
  transition: background 0.25s ease;
  margin: 1rem auto -1rem;
}

.wysiwyg-download-spec-button:hover, .wysiwyg-scoring-page-button:hover{
  background: #004B73;
  color: #fff;
}

.wysiwyg-scoring-page-button {
  display: block;
  background: #00263E;
  color: #fff;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 2px;
  transition: background 0.25s ease;
  margin: 1rem auto 0rem;
}

.wysiwyg-staffshop-page-button {
  display: block;
  background: #fff;
  color: #323131;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  font-size: 15px;
  border-radius: 2px;
  transition: background 0.25s ease;
  margin: 1rem auto 0rem;
}

.wysiwyg-staffshop-page-button:hover{
  background: #74A8C7;
  color: #fff;
}


/* =======================================================
   GRID-IMAGE MODAL  (service-hub / modal-image-grid layout)
   ======================================================= */

.grid-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}

.grid-image-modal.active {
  display: flex;
}

/* Remove old backdrop if background is already black */
.grid-image-modal .modal-backdrop {
  display: none;
}

/* Modal content */
.grid-image-modal .modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  background: transparent;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Close button */
.grid-image-modal .modal-close {
  position: fixed;
  top: 3rem;
  right: 5rem;
  font-size: 3rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
}

/* Swiper wrapper */
.grid-modal-swiper {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-modal-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  margin: 0 auto;
}

.grid-modal-swiper .swiper-slide::before {
  background: transparent;
}

/* Caption section */
.grid-image-modal .modal-caption {
  margin-top: 1rem;
  padding: 1rem 0;
  color: #fff;
}

.grid-image-modal .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.grid-image-modal .modal-desc {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.grid-image-modal .modal-link {
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
}

/* Prevent scrolling under modal */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {

  /* let the picture take less vertical space */
  .grid-modal-swiper .swiper-slide img {
    max-height: 60vh;  
  }

  /* tiny spacing below the picture */
  .grid-image-modal .modal-caption {
    margin-top: .75rem;
    padding: 0 .5rem 1rem;
  }
}

@media (max-width: 700px) {
  .grid-modal-swiper .swiper-slide img {
    max-height: 50vh;
  }
}

@media (max-width: 576px) {
  .grid-modal-swiper .swiper-slide img {
    max-height: 40vh;
  }
  .grid-image-modal .modal-caption {
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .grid-modal-swiper .swiper-slide img {
    max-height: 35vh;
  }
}

@media (max-width: 400px) {
  .grid-modal-swiper .swiper-slide img {
    max-height: 30vh;
  }
}

@media (max-width: 320px) {
  .grid-modal-swiper .swiper-slide img {
    max-height: 25vh;
  }
}


/* ── interactive gallery ───────────────────────────── */


.interactive-gallery .ig-swiper {
  width: 100%;
  padding-bottom: 1rem;
}

/* ==== IG overlay & buttons (tested) =============================== */

.ig-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.ig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* adjust darkness here */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.ig-card:hover::before {
  opacity: 1;
} 

.ig-overlay {
  position: absolute;
  inset: 0;
  padding: 0.75rem;
  display: flex;
  align-items: flex-end !important;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.ig-card:hover .ig-overlay {
  opacity: 1;
}

.ig-like, .ig-share {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 20px 0;
}

.ig-like i {
  padding-left: 20px;
}

.ig-share i {
  padding-right: 20px;
}

.ig-like i,
.ig-share i {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s ease;
}

/* Heart fills red when liked */
.ig-like.liked i {
  color: #e31b23;
}


/* swiper arrows just nudged outward a little */
.interactive-gallery .swiper-button-prev { left: -45px; }
.interactive-gallery .swiper-button-next { right:-45px; }


/* Swiper arrows */
.interactive-gallery .swiper-button-prev,
.interactive-gallery .swiper-button-next {
  color: #fff;
  display:block !important
}

.interactive-gallery .swiper-button-prev {
  left: 1rem !important;
}
.interactive-gallery .swiper-button-next {
  right: 0rem !important;
}
@media (max-width: 576px) {
  .interactive-gallery .swiper-button-prev {
  left: 1rem !important; /* or -3rem */
}
.interactive-gallery .swiper-button-next {
  right: -1rem !important;
}
}

/* Share modal */
#ig-share-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
}

#ig-share-modal.active {
  display: flex;
}

#ig-share-modal .share-inner {
  max-width: 600px;
  padding: 2rem 2.5rem;
  background: #fff;
  text-align: center;
  position: relative;
  border-radius: 6px;
  width: 90%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

#ig-share-modal button.close-share {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #333;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icon {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: #007bff;
}

.gallery-detail .ig-card {
  aspect-ratio: 3 / 4;
  max-height: 80vh;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-detail .ig-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rhombus-banner {
  background-image: none; /* fallback in case JS or ACF fails */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* <- Parallax effect */
  height: 410px;
  position: relative;
  z-index: 1;
}

.rhombus-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: rgba(255, 255, 254, 0.8);
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  border: 10px solid #FFFFFE;
}

.rhombus-text {
  transform: rotate(-45deg);
  text-align: center;
  font-size: 25px;
  font-weight: 300;
  color: #363030;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.8;
  position: relative;
}

.rhombus-text .underline {
  display: block;
  width: 35px;
  height: 4px;
  background: #000;
  margin: 0.5rem auto 0;
}

.stage-table {
  width: 100%;
  max-width: 600px;
  margin: 3rem auto;
  border-collapse: collapse;
  font-family: var(--font-family);
  font-variant: normal;
  font-feature-settings: normal;
  background-color: #ffffff;
}

.stage-table thead {
  background-color: #0C3C60;
  color: #fff;
  font-weight: bold;
}

.stage-table tbody {
  color: #0C3C60;
  font-weight: bold;
}

.stage-table th,
.stage-table td {
  border: 1px solid #0C3C60;
  padding: 5px;
  text-align: center;
}

.stage-details-section {
  background-color: #6EA4CA;
  padding: 4rem 0;
}

.stage-details-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stage-box {
  position: relative;
  color: inherit;
  border: 4px solid #000;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.stage-box:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.stage-section-title{
  color: #fff;
  text-transform: uppercase;
}

.stage-name {
  font-size: 1.15rem;
  font-weight: bold;
}

.stage-info {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem;
  background: transparent;
  font-weight: 300;
}

.pdf-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.stage-box:hover .pdf-preview {
  opacity: 1;
}

.requests-section {
  padding: 4rem 0;
}

.requests-container {
  max-width: 70%;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 576px) {
  .requests-section {
   padding: 2rem 0;
}

.requests-container {
  max-width: 90%;
}
}

.requests-section-heading {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 500;
  color: #0C3C60;
  margin-bottom: 2rem;
;
}

.food-service-btn{
  display: inline-block;
  background:#00263E;
  color:#fff;
  padding:0.75rem 1.5rem;
  text-decoration:none;
  text-transform: uppercase;
  text-align: center;
  font-size:1rem;
  border-radius:2px;
  transition:background .25s ease;
  margin: 1rem auto 0;
}


.image-text-split-section {
  padding: 4rem 0;
}

.image-text-container { 
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-wrapper .main-gallery-image {
  max-width: 100%;
  width: 600px;
  height: 300px;
  object-fit: cover;
}

.thumbnail-row .thumb-wrapper img {
  width: 100px;
  height: 4rem;
  object-fit: cover;
  cursor: pointer;
  transition: border 0.3s ease;
}

.thumbnail-row .thumb-wrapper img:hover {
  border-color: #0c3c60; /* optional highlight */
}

.pl-15rem {
  padding-left: 15rem !important;
}

.pr-15rem {
  padding-right: 15rem !important;
}

.pl-2rem {
  padding-left: 2rem !important;
}

.pr-2rem {
  padding-right: 2rem !important;
}

@media (max-width: 768px) {
  .pl-15rem {
  padding-left: 2rem !important;
}

.pr-15rem {
  padding-right: 2rem !important;
}

}

.image-only-gallery img.main-gallery-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  cursor: pointer;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.gallery-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

.main-image-wrapper {
  width: 100%;
}

.main-image-wrapper img.main-gallery-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.gallery-image-wrapper .hover-caption h6 {
  font-size: 1rem;
  letter-spacing: 1px;
}


.hover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 0.5rem 0.5rem;
  pointer-events: none;
  text-align: center;
}

.main-image-wrapper:hover .hover-caption {
  opacity: 1;
}

.image-text-section-heading {
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

.sound-mixing-section-menu {
  background-color: #0C3C60;
  text-align: center;
  padding: 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: -5rem;
}

.sound-mixing-section-menu a {
  color: white;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 600;
}

.sound-mixing-section-menu a.back-link {
  background-color: #D82E2E;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sound-mixing-section-menu {
    margin-top: -3rem;
    gap: 0.625rem;
  }

  .sound-mixing-section-menu a {
    font-size: 0.8rem;
  }

}

.pdf-flipbook-section {
  padding: 2rem 0;
}

.pdf-flipbook-container {
  max-width: 55%;
  background-color: #00263e;
  margin: 1rem auto;
  padding: 0 2rem;
}

.pdf-flipbook-container img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .pdf-flipbook-section {
  padding: 2rem 0;
}
.pdf-flipbook-container {
  max-width: 90%;
  padding: 0 1rem;}
}

.flipbook-iframe-container {
  position: relative;
  padding-top: 70%;
  height: 0;
  overflow: hidden;
  background-color: #0C3C60;
  margin: 0.5rem auto;
}

.flipbook-iframe-container iframe {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .flipbook-iframe-container {
    padding-top: 75%; /* Taller on mobile if needed */
  }
}

.staff-shop-iframe-container {
  position: relative;
  padding-top: 70%;
  height: 0;
  overflow: hidden;
  margin: 1rem auto;
}

.staff-shop-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .staff-shop-iframe-container {
    padding-top: 75%; /* Taller on mobile if needed */
  }
}

@media (min-width: 768px) {
  .border-md-end {
    border-right: 1px solid #888888;
  }
  .custom-section-container .border-bottom {
    border-bottom: 0 !important;
  }
}

.bottom-divider {
  border-top: 1px solid #888888;
  margin-top: 1rem;
  padding-top: 2rem;
}
@media (max-width: 767.98px) {
.custom-section-container .border-bottom {
	border-bottom: 1px solid #888888 !important;
}
}

.full-width-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 500px;
}

.full-width-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

 .full-width-banner-overlay h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1px;
  margin: 0;
}

@media (max-width: 768px) {
  .full-width-banner {
    height: 300px;
  }
  .full-width-banner-overlay h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .full-width-banner {
    height: 220px;
  }
  .full-width-banner-overlay h3 {
    font-size: 1.125rem;
  }
}


.section-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.office-column-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #888888;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  color: #00263e;
  text-align: center;
}

.office-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-row {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.office-cell {
  flex: 1;
  min-width: 100px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.office-cell.building {
  color: #00263e;
}

.office-cell.floorplan a,
.office-cell.tour a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.office-cell.floorplan a:hover,
.office-cell.tour a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .office-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .office-cell {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.amenities-grid-section {
  padding: 0 5rem;
}

@media (max-width: 768px) {
  .amenities-grid-section {
    padding: 0 2rem;
  }
}

.amenity-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
}

.amenity-image {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.amenity-heading {
  min-height: 48px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.amenity-description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.amenity-description a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.amenity-description a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .amenities-grid-section .row {
    justify-content: center; /* centers last row when < 4 items */
  }
}

.amenities-preview-section .section-heading {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.amenities-preview-section .section-subtext {
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.amenities-preview-section .amenities-preview-grid {
  max-width: 80%;
  margin: 0 auto;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list li {
  margin-bottom: 0.5rem !important;
  font-weight: 500;
  font-size: 1rem;
}

.amenities-preview-section {
	position: relative;
  overflow: hidden;
	background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  min-height: 300px;
  padding: 2.5rem 1rem;
  position: relative;
  z-index: 1;
}

.amenities-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
	 z-index: 1;
}

.amenities-preview-section > * {
  position: relative;
  z-index: 2;
}
