:root {
    --primary-color: #FDBB30;
    --secondary-color: #606060;
    --accent-color: #FFAE00;
    --background-color: #ffffff;
    --text-color: #525252;
}

/* Lenis Performance Optimization */
html {
    scroll-behavior: auto !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: scroll-position;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9800;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0);
}

@font-face {
  font-family: "Gill Sans";
  src: url("../fonts/GillSans-Light.eot");
  src:
    url("../fonts/GillSans-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/GillSans-Light.woff2") format("woff2"),
    url("../fonts/GillSans-Light.woff") format("woff"),
    url("../fonts/GillSans-Light.ttf") format("truetype"),
    url("../fonts/GillSans-Light.svg#GillSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans";
  src: url("../fonts/GillSans.eot");
  src:
    url("../fonts/GillSans.eot?#iefix") format("embedded-opentype"),
    url("../fonts/GillSans.woff2") format("woff2"),
    url("../fonts/GillSans.woff") format("woff"),
    url("../fonts/GillSans.ttf") format("truetype"),
    url("../fonts/GillSans.svg#GillSans") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body, html {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: normal;
    max-width: 100vw;
    letter-spacing: 0.04em;
}

body {
    overflow-x: hidden;
}

body {
    font-family: "Gill Sans", sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9800;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0);
}

body {
    font-family: "Gill Sans", sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 6rem);
}

.siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-block: 2.5rem;
    background-color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, padding 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
}

.siteHeader.is-hidden {
    transform: translateY(-120%);
}

.siteHeader.is-scrolled {
    padding-block: 1.5rem;
}

.siteHeader-Logo {
    width: 17.2rem;
}

.siteHeader-Nav {
    gap: 1.5rem;
    position: relative;
}

.siteHeader-Nav a {
    font-weight: 400;
    text-decoration: none;
    line-height: 1;
    font-size: 1rem;
    color: #B6B6B6;
    transition: color 0.3s ease-in-out;
}

.siteHeader-Nav li.active a,
.siteHeader-Nav a:hover {
    color: var(--text-color);
}

.nav-indicator {
    position: absolute;
    bottom: -5px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 10;
}

.siteSection {
    padding-block: 5.5rem;
    background: white;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

.sectionSubHead {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 34%;
    color: #606060;
    margin-bottom: 1rem;
}

.sectionHead {
    font-size: 4.7rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 12%;
    color: #FDBB30;
    margin-bottom: 2.5rem;
}

.sectionDesc {
    font-weight: 400;
    margin-bottom: 0;
}

.siteBtn,
.siteBtn:active,
.siteBtn:focus {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 0;
    font-size: 0.8rem !important;
    font-weight: 700;
    line-height: 1.1 !important;
    text-transform: uppercase;
    padding: 0.65rem 2rem;
    box-shadow: none;
    outline: none;
    letter-spacing: 6%;
    transition: all 0.3s ease;
}

.siteHeader .siteBtn,
.siteHeader .siteBtn:hover,
.siteHeader .siteBtn:focus,
.siteHeader .siteBtn:active {
    background: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    padding: 0.45rem 1rem;
    font-weight: 300;
}

.siteBtn:hover,
.siteHeader .siteBtn:hover {
    border-color: var(--accent-color);
    background: var(--secondary-color);
    color: white;
}

.siteFooter_top_content,
.siteFooter_bottom_content {
    width: 100%;
    max-width: 55rem;
    margin: 0 auto;
}

.siteFooter_top {
    padding-block: 4rem 3rem;
    background: var(--secondary-color);
}

.siteFooter_top_content_left {
    width: 100%;
    max-width: 18rem;
}

.siteFooter_top_content_right {
    width: 100%;
    max-width: 20rem;
}

.siteFooter_top_content h6 a {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.siteFooter_top_content p,
.siteFooter_top_content p a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
}

.siteFooter_top_divider {
    width: 100%;
    height: 1px;
    background: #B6B6B6;
    margin-block: 1rem;
}

.social-links img {
    height: 1.1rem;
    width: auto;
}

.siteFooter_bottom {
    background: var(--primary-color);
    padding-block: 0.5rem;
}

.siteFooter_bottom p,
.siteFooter_bottom p a {
    font-size: 0.8rem;
    color: var(--text-color);
}

.innerPage-banner {
    padding-top: 15rem;
}

/* Contact Modal Styling */
.contactModal .modal-content {
    border: none;
    border-radius: 0;
    position: relative;
    background: #fff;
    border: 1px solid var(--primary-color);
}

.contactModal .modal-body {
    padding: 3rem;
}

.contactModal .modal-dialog {
    max-width: 55rem;
}

.modal-backdrop.show {
    opacity: 0.9;
    background-color: #ffffff;
}

.contact-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #525252;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.contact-form {
    max-width: 37.5rem;
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    position: relative; /* For absolute positioning of error messages */
}

.contact-form label {
    font-size: 1.25rem;
    line-height: 1;
    color: #525252;
    font-weight: 500;
    width: 6rem;
    margin-bottom: 0;
}

.contact-form .form-control {
    border: none;
    border-bottom: 2px dotted #B6B6B6;
    border-radius: 0;
    background: transparent;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #525252;
    box-shadow: none;
    resize: none;
}

.contact-form .form-control:focus {
    border-bottom-color: var(--primary-color);
}

.contact-form textarea.form-control {
    min-height: 2rem;
}

.contactModal .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 1;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #525252;
    z-index: 9;
}

/* Parsley Validation Styling */
.parsley-errors-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 0.7rem;
    line-height: 1;
    color: #dc3545;
    position: absolute;
    bottom: -0.8rem;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.parsley-errors-list.filled {
    opacity: 1;
}

.contact-form .form-control.parsley-error {
    border-bottom: 2px solid #dc3545 !important;
}

.contact-form .form-control.parsley-success {
    border-bottom-color: #198754 !important;
}

/* GLightbox Global Overrides */
.glightbox-container .gslide-media {
    background-color: transparent !important;
    box-shadow: none !important;
}

.glightbox-container .gslide-content,
.glightbox-container .gslide-inner-content {
    background: transparent !important;
    box-shadow: none !important;
}

.vimeo-lightbox-wrap {
    background: transparent !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* Force GLightbox custom inline/HTML slide wrappers to utilize the full viewport width and height */
.glightbox-container .gslide-inline:has(.vimeo-lightbox-wrap),
.glightbox-container .gslide-html:has(.vimeo-lightbox-wrap) {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: transparent !important;
}

.full-screen-btn {
    position: absolute;
    z-index: 100;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fffc;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.full-screen-btn img {
    width: 1rem !important;
    height: 1rem !important;
}
/* Force GLightbox arrows to be visible on mobile */
@media (max-width: 768px) {
    .glightbox-container .gnext, 
    .glightbox-container .gprev {
        display: flex !important;
        position: absolute !important;
        top: 45% !important;
        z-index: 999;
    }
}

/* Hide arrows when there is only one slide in the gallery */
.glightbox-container.single-slide .gnext,
.glightbox-container.single-slide .gprev {
    display: none !important;
}

