/* GLASS CLASS DENVER CSS */
/* GLASS CLASS DENVER CSS */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
/*  https://iainbean.com/posts/2021/5-steps-to-faster-web-fonts/  */
/*  https://iainbean.com/posts/2021/5-steps-to-faster-web-fonts/  */

:root {
    --primary-color: #d73502;
    /* Burnt Red Orange */
    --secondary-color: #000000;
    /* Solid Black */
    --text-color: #111111;
    /* Soft Black */
    --bg-light: #ffffff;
    /* Pure White */
    --bg-dark: #000000;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Tenso', sans-serif;
    --section-spacing: 80px;
}

html {
    background: radial-gradient(circle at center, #1b1b1b 0%, #000000 100%) !important;
}

body {
    width: 100%;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding-top: 75px !important;
    /* Offset for fixed header */
    background: var(--bg-light);
}

.wrap,
header,
#content,
#footer-wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.inner-wrap {
    max-width: 1200px;
    /* Increased from 900px */
    margin: 0 auto;
    padding: 3em 0;
}

.inner-wrap.nopad {
    padding: 0;
    max-width: 950px;
}

.inner-wrap.lesspad {
    padding: 1em 0;
    max-width: 950px;
}

.outer-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 3em 0;
}

.wide-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

h1,
h1 a,
h1 a:hover {
    letter-spacing: 0;
    color: #000;
    color: #000;
    line-height: 1.1;
    padding: 0;
}

.title-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

h2.page-title,
h1.page-title {
    text-align: center;
    padding: 0 4%;
    width: 92%;
    margin: 0 auto;
    display: block;
}

h2.page-title a,
h1.page-title a {
    color: white;
    font: 500 38px/1.2 Poppins;
    letter-spacing: 1;
    display: inline-block;
}

.home h1 {
    font-size: 70px;
}

h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
    padding: 0;
    font-weight: 600;
    display: block;
    /* Changed from inline-block for better flow */
    margin-bottom: 0.5em;
}

h2.has-text-align-center,
h3.has-text-align-center,
h4.has-text-align-center,
h5.has-text-align-center {
    display: block;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 21px;
}

h4.tagline {
    text-align: center;
    display: block;
    margin: -3px auto 15px;
    padding: 0 2%;
}

h5 {
    font-size: 18px;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.marquee__item {
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-name: marquee-content;
    animation-timing-function: linear;
    padding: 5px 4em;
}

.marquee:hover .marquee__item {
    animation-play-state: paused;
}

/**
* BOTH of the marquee items are going to be translating left at the same time.
* And, once each of them has translated to -100%, they will both snap back into
* place, making it seem as if they are continuously scrolling.
*/
@keyframes marquee-content {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

b.thanks {
    font-size: 1.5em;
    padding: 15px;
    display: block;
    text-align: center;
}

ul,
ol {
    list-style-position: inside;
    padding: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
    padding: 0 20px;
}

hr {
    clear: both;
    border: none;
    border-top: 3px dotted #d73502;
    margin: 1em auto;
}

.more {
    font-size: 18px;
    display: block;
    margin: 26px auto 0;
    text-decoration: underline;
}

.flex {
    display: flex;
}

section {
    clear: both;
}

#head {
    clear: both;
    position: relative;
    padding: 10px 0;
    background-color: #000;
}

header {
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    padding: 0 4%;
}

.logo,
.logo:hover,
.logo:active {
    flex: 1;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-filter: invert(1);
    filter: invert(1);
}

#head.sticky {
    position: fixed;
    z-index: 999999;
    top: 0;
    width: 100%
}

#head.sticky+.main-wrap {
    padding-top: 100px;
}

#head.sticky .logo {
    width: 60px;
    height: 60px;
    transition: .5s;
}

.responsive-menu {
    display: none;
}

nav {
    flex: 9;
    margin: 0 auto;
    padding: 0;
    z-index: 9999999;
    position: relative;
    justify-content: center;
}

.nav-wrapper a {
    padding: 10px 0;
    margin: 0 1.5rem;
    color: #fff;
    font-family: poppins, sans-serif;
    font-weight: 400;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: auto;
    display: inline-block;
    text-align: left;
}

nav li {
    position: relative;
    display: inline;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

nav a:hover,
nav .current_page_item a,
nav .current_page_item a:hover {
    color: #d73502;
    /* border-bottom: 3px solid #d73502; */
}

header nav li ul {
    position: absolute;
    left: 0;
    margin: 0 auto;
    padding: 7px;
    width: 160%;
    border-radius: 0 0 5px 5px;
    border: 1px solid #ddd;
    background: #fff;
    background: #ffffffe3;
    opacity: 0;
    visibility: hidden;
    top: 20px;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

header nav {
    font: 300 21px/12px 'Poppins';
    font-family: poppins, sans-serif;
    font-weight: normal;
    display: flex;
    align-items: center;
}

nav li li {
    display: block;
    margin: 0;
    padding: 0;
}

nav li li a {
    font-size: 14px;
    line-height: 1.2;
    padding: 5px;
    border-bottom: 3px solid #fff;
    text-align: left;
    background: none;
    display: inline-block;
}

header .nav-wrapper li li a {
    margin: 10px 0 0;
    padding: 10px 15px;
    color: #d73502;
    text-align: center;
    line-height: 1.4;
}

nav li.current_page_item li a {
    color: initial;
    border-color: white;
}

header nav ul li:hover>ul {
    opacity: 1;
    top: 44px;
    visibility: visible;
}

header nav ul ul li:hover>ul {
    top: -8px;
    left: 186px;
}

/* BOOK NOW NAV BUTTON */
header .menu-item-103 a {
    border: 2px solid;
    border-radius: 4px;
    background: none;
    padding: 13px 12px 10px !important;
}

header .menu-item-103 a:hover {
    border: 2px solid #d73502;
    background: #d73502;
    color: white;
}

/*  BREADCRUMBS YOAST SEO  */
#breadcrumbs {
    margin: 2em 0 2em -40px;
}

#breadcrumbs,
#breadcrumbs a {
    color: #7D7D7D;
    font-size: 14px;
}

#breadcrumbs a:hover,
#breadcrumbs a:active {
    text-decoration: underline;
}

#breadcrumbs:nth-of-type(1) a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f015";
    font-weight: 900;
    color: #7D7D7D;
}

#breadcrumbs span span a:nth-of-type(1) {
    color: transparent;
    position: relative;
}

#breadcrumbs span span span a:nth-of-type(1) {
    color: #7D7D7D;
    display: inline;
}

#breadcrumbs span span span a:nth-of-type(1):after {
    content: "";
}

#breadcrumbs .fa-angle-right {
    padding: 0 5px;
}

.main-wrap {
    float: left;
    width: 100%;
}

#main .wp-post-image {
    margin: auto;
    display: block;
    width: 100%;
}

#hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 80vh;
    width: 100%;
}

/*    SLICK SLIDER JS    */
.home>.inner-wrap {
    padding-top: 5em;
}

.slides {
    width: 100%;
    overflow: hidden;
    background-color: #d73502;
}

.slick-slider {
    margin-bottom: 0;
}

.slick-list {
    padding: 0 !important;
}

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

.slick-slide {
    text-align: center;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;
}

.slick-slide img {
    margin: auto;
}

.home .slick-slide {
    background-size: cover;
}

.slides .slick-slide {
    height: 80vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slides .slick-dots {
    bottom: 1em;
}

.slides .slick-dots li button::before {
    background: #fff;
}

.slick-slide h1 {
    line-height: .9;
    letter-spacing: 6px;
    overflow-wrap: inherit;
    margin: 0 auto 20px;
    text-align: left;
}

.slick-slide>div.hero-wrap {
    width: 60%;
    background: black;
    background: rgba(0, 0, 0, .7);
    padding: 2em 4%;
}

.slick-slide>div.hero-wrap h2 {
    color: white;
    font-size: 3em;
    font-weight: bold;
    margin: 0;
}

.slick-slide a.cta {
    margin: auto;
    display: inline-block;
    font-size: 1.25rem;
    padding: .5em 1em;
}

.slider-nav .slick-slide img.portrait {
    object-fit: cover;
}

.slider-nav {
    box-sizing: border-box;
    width: 95%;
    margin: 10px auto 0;
}

.slider-nav .slick-slide {
    height: 130px;
    margin: 9px;
    padding-bottom: 9px;
    border-bottom: 6px solid #fff;
}

.slider-nav .slick-slide img {
    height: 100%;
    width: auto;
    margin: auto;
}

.slider-nav .slick-slide.slick-active {
    border-bottom: 6px solid #d73502;
}

.prev,
.next {
    position: absolute;
    top: 45%;
    right: 3%;
    background: url(../../images/arrow.png) no-repeat;
    width: 18px;
    height: 35px;
    cursor: pointer;
}

.prev {
    left: 3%;
    right: 0;
    background: url(../../images/arrow-prev.png) no-repeat;
}

.carousel .prev {
    left: 0;
    top: 34%;
}

.carousel .next {
    right: 0;
    top: 34%;
}

.slick-prev,
.slick-next {
    background: url(../../images/arrow-prev.png) no-repeat;
}

.slick-next {
    background: url(../../images/arrow.png) no-repeat;
}

.slick-prev::before,
.slick-next::before {
    content: "";
}

.cta {
    background: url() center center no-repeat;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    border: 2px solid;
    border-color: white;
    background-size: contain;
    text-transform: uppercase;
    display: table-cell;
    font-size: 18px;
    padding: 1em 1.5em;
}

.cta:hover {
    border: 2px solid #d73502;
}

.slick-slide .portrait {
    max-width: 600px;
    margin: auto;
}

.sub-head {
    background: #d73502;
}

#pg-home .sub-head p {
    margin: 1em auto 3em;
}

.sub-head img {
    margin: auto;
    width: 100%;
}

.sub-head video {
    width: 100%;
    height: 100%;
}

.sub-head .button {
    margin: auto;
    display: block;
}

.col-2 {
    columns: 2;
    column-gap: 75px;
}

.col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2em;
}

.col-3 h3 {
    margin: 0;
}

/* PRODUTS MODULE */
#products-module .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}

#products-module .thumb-wrap {
    flex: 0 0 50%;
}

#products-module .info-wrap {
    flex: 0 0 45%;
    font-size: 80%;
}

#products-module .info-wrap h2 {
    margin-top: 0;
    margin-top: -10px;
}

/* three-column-module */
#three-column-module .info-wrap {
    border-radius: 10px;
    padding: 0 2em 10px;
    line-height: 1.2;
    background: #8c8c8c;
}

/* TESTIMONIALS */
#testi * {
    color: #fff;
}

#testi blockquote {
    font-size: 22px;
    line-height: 35px;
    text-align: left;
    padding: 0 1em;
}

#testi blockquote::before {
    content: '“';
    font: bold 79px/45px Poppins;
    position: absolute;
    margin-left: -0.8em;
    margin-top: .3em;
}

#testi blockquote::after {
    content: '';
}

#testi blockquote cite {
    display: block;
    margin: 1em auto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
}

.slick-dots {
    bottom: initial;
}

.slick-dots li {
    margin: 0 10px;
}

.slick-dots li button::before {
    background: #DBCAAD;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    content: '';
    opacity: 1;
}

.slick-dots li.slick-active button::before {
    background: #d73502;
    opacity: 1;
}

/* TESTIMONIAL POSTS */
#testi_posts blockquote {
    font-size: 16px;
    line-height: 1.5;
    margin: 1em auto 2em;
    text-align: left;
}

#testi_posts blockquote p {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 10px 20px;
}

#testi_posts blockquote cite {
    padding: 0 40px;
}

#testi_posts blockquote cite::before {
    content: '- ';
    padding: 0 5px;
}

#testi_posts blockquote .more {
    display: inline;
    text-transform: lowercase;
    font-size: inherit;
}

#testi_posts blockquote p::before {
    color: #a4a4a4;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.1em;
    vertical-align: -0.4em;
}

blockquote {
    quotes: "“" "”";
}

/* TESTIMONIAL MODULE */
.testimonial blockquote+p {
    text-align: center;
    font-style: italic;
}

.testimonial blockquote:before {
    position: absolute;
    content: open-quote;
    font-size: 3em;
    margin-left: -0.6em;
}

.testimonial blockquote:after {
    position: absolute;
    content: close-quote;
    font-size: 3em;
    bottom: 0;
    right: 0;
    margin-right: -0.6em;
    margin-bottom: 1em;
}

.testimonial blockquote p {
    display: inline;
}

/* POSTS SLIDER */
#posts .inner-wrap {
    padding: 3em 0 0;
}

#posts .inner-wrap h4 {
    color: #d73502;
}

#posts .outer-wrap .inner-wrap {
    padding: 0;
}

#posts .outer-wrap .inner-wrap .cat-wrap {
    position: relative;
}

#posts .outer-wrap .inner-wrap .cat-wrap h1 {
    margin: 10px auto .5em;
}

#posts .outer-wrap .inner-wrap .cat-wrap h1 a span {
    position: absolute;
    right: 0;
    bottom: .75em;
    text-decoration: underline;
    font-size: 18px;
    color: #d73502;
}

#posts .outer-wrap .inner-wrap .cat-wrap h1 a:hover * {
    text-decoration: none;
    color: #000;
}

#posts .outer-wrap {
    padding: 0 0 3em;
}

#posts .post {
    text-align: left;
}

#posts .post>div {
    width: 315px;
    height: 210px;
}

#posts .slick-dots li button::before {
    background: #d73502;
}

#posts .slick-dots li.slick-active button::before {
    background: #d73502;
}

/* SIDEBAR */
.sidebar {
    padding: 2em 20px;
    text-align: center;
}

.sidebar h4 {
    font-size: 24px;
    display: block;
    font-family: tenso, sans-serif;
    font-weight: 500;
}

.sidebar h4 a {
    color: rgba(25, 42, 57, 1);
}

.sidebar .social {
    text-align: inherit;
}

.sidebar .social a {
    margin: 1em 10px;
    width: 29px;
    height: 29px;
    font-size: 29px;
    color: rgba(99, 133, 137, 1);
}

/* PAGE BUILDER MODULES PAGE */
.intro {
    text-align: center;
}

.spacer {
    min-height: 100px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.video_module {
    position: relative;
    padding: 2em 4%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video_module>div {
    z-index: 999;
}

.video_module>div * {
    color: white;
    margin: 20px auto 0;
}

.video_module a {
    display: block;
    margin: 0 auto;
}

.module-slide .slick-slide {
    text-align: left;
}

.module-slide .info-wrap {
    display: flex;
    gap: 1em;
    margin: 0 auto 3em;
}

.module-slide .thumb-wrap {
    margin: 10px 0 0;
    flex: 1;
}

.module-slide .thumb-wrap img {
    min-width: 440px;
}

.module-slide .info-wrap {
    flex: 2;
}

.module-slide .info-wrap h2 {
    margin: 0;
    font-family: tenso, sans-serif;
    font-weight: 500;
}

/* FAQ SECTION */
ul.faq li {
    background: #d73502;
    list-style: none;
    margin: 20px auto;
    padding: 17px;
}

ul.faq h4 {
    inline-size: 103%;
    line-height: 1.4;
    cursor: pointer;
    color: #638589;
    margin: 0;
    width: 98%;
    position: relative;
    transition: 300ms;
    border-bottom: 1px solid transparent;
}

ul.faq h4:before {
    background: url(../../images/carrot.webp) right no-repeat;
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    z-index: 99999;
    width: 18px;
    height: 35px;
}

ul.faq h4.carrot:before {
    transform: rotate(-180deg);
}

ul.faq .answer * {
    margin: 1em auto;
    color: white;
}

/* TILES MODULE */
.tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    row-gap: 1em;
    text-align: center;
}

.tile {
    flex: 1 0 49%;
    height: 300px;
    position: relative;
}

.tile .bg-img {
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transition: all 1s;
    transition-timing-function: ease;
}

.tile .bg-img:hover {
    background-size: 107%;
    -webkit-filter: sepia(100%) saturate(700%);
    filter: sepia(100%) saturate(700%);
    cursor: pointer;
}

.tile a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.tile a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(215, 53, 2, .5);
    -webkit-transition: opacity .15s ease-out;
    -moz-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out;
    z-index: 1;
}

.tile a:hover::after {
    opacity: 1;
}

.tile h3 {
    color: white;
    font-weight: bold;
    position: absolute;
    bottom: 0em;
    left: 6%;
    text-shadow: 1px 1px 2px #000;
    z-index: 5;
}

.tile h3 .fa-solid {
    font-size: 80%;
    margin-left: 5px;
}

/* OUR TEAM PAGE */
#pg-our-team .wide-wrap {
    padding: 0;
}

#pg-our-team .inner-wrap {
    float: right;
    width: 29%;
    padding: 75px 40px 0 20px;
    background: rgba(233, 224, 209, 1);
}

#pg-our-team .outer-wrap {
    padding-top: 110px;
    width: 65%;
    float: left;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
    grid-template-rows: auto;
    justify-items: center;
    align-items: center;
}

.member {
    font-family: tenso, sans-serif;
    font-weight: 400;
    font-weight: bold;
    padding: 0;
    text-align: center;
    width: 272px;
    height: 272px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.member .thumb-wrap {
    width: 100%;
    margin: 0 auto;
}

.member .thumb-wrap img {
    min-width: 272px;
}

.member .info-wrap {
    position: absolute;
    width: 100%;
    bottom: -10px;
    z-index: 9999;
}

.member .info-wrap * {
    color: white;
    font-weight: 500;
}

.member .info-wrap>div {
    background: rgba(39, 54, 55, 0.63);
    padding: 0 0 20px;
}

.member .info-wrap h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.member .info-wrap p {
    margin: 0;
    font-size: 10px;
    line-height: 1.5;
    text-transform: uppercase;
}

.member .info-wrap .social div {
    padding: 0;
    text-align: center;
}

.member .info-wrap .social div a {
    width: 16px;
    height: 16px;
    margin: 0 20px 0 0;
}

.member .info-wrap .social div a i {
    font-size: 16px;
}

.bio {
    font-family: tenso, sans-serif;
    font-weight: 300;
    color: black;
    font-size: 18px;
    line-height: 1.6;
    font-weight: normal;
    text-align: left;
    background: #000;
    height: 50%;
    width: 80%;
    max-width: 600px;
    background-color: #fefefe;
    margin: auto;
    padding: 2em;
    border: 1px solid #d73502;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 10px #000;
    overflow: auto;
}

.bio>div.wrap {
    display: flex;
    align-items: start;
}

.bio img {
    max-width: 200px;
    float: left;
    margin: 8px 4% 0 0;
}

.bio h4 {
    margin: 0 auto .5em;
    display: block;
}

.bio p {
    margin: 0 auto 1em;
}

.member.active .modal {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 10%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal.active {
    display: block;
}

.close {
    color: #000;
    position: absolute;
    top: .75em;
    right: .6em;
    line-height: 0;
    font-size: 36px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* BLOG POSTS */
.single .wide-wrap,
.blog .wide-wrap,
.archive .wide-wrap {
    display: flex;
    gap: 2em;
}

.single .inner-wrap,
.blog .inner-wrap,
.archive .inner-wrap {
    flex: 4;
    max-width: none;
    padding: 3em 2%;
}

.single .sidebar,
.blog .sidebar,
.archive .sidebar {
    flex: 1;
}

.single h1 {
    margin: 0;
}

/* BLOG ARCHIVE */
.post {
    /* margin:0 10px; */
    display: block;
    width: 100%;
    clear: both;
}

.post>div {
    width: 440px;
    height: 293px;
    margin: 12px 20px 3em 0;
    float: left;
    background-repeat: no-repeat;
    background-size: cover;
}

.post h3 {
    display: block;
    font-size: 32px;
    font-family: tenso, sans-serif;
    font-weight: 500;
    margin: 0 auto;
}

.post p {
    margin: 10px auto 0;
}

.blog .wide-wrap {
    padding: 0;
}

.pager {
    margin: 2em auto 0;
    clear: both;
    width: 100%;
    text-align: center;
}

.pager a,
.pager span.current {
    margin: 1em;
    border: 1px solid;
    padding: 5px 10px;
}

.pager span.current {
    background: #d73502;
    color: white;
}

.pager .next,
.pager .prev {
    border: none;
}

/* TAXONOMY ARCHIVES */

/* TABBED CONTENT */
.tabbed h2 {
    display: block;
    width: 100%;
    text-align: center;
}

.tab {
    color: #d73502;
    margin: 1em 0;
    cursor: pointer;
    border-bottom: 2px solid #d73502;
}

.tab:hover,
.tab.active {
    font-weight: 500;
}

.panel {
    display: flex;
    align-items: center;
    gap: 2em;
}

.panel p {
    margin: 0 auto 1em;
    font-size: 18px;
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact {
    padding: 0 0 1em;
}

.contact h4 {
    color: #638589;
}

.contact p {
    color: #638589;
    font-size: 28px;
    margin: 0 auto;
}

.contact .button {
    flex-shrink: 2;
    margin: 10px auto;
}

.contact .contact-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 3em 0;
}

.contact .contact-wrap .flex {
    align-items: flex-start;
    gap: 3em;
}

.col-1-2 {
    width: 48%;
    float: left;
    margin: 0 4% 0 0;
}

.col-1-2:nth-last-of-type(2) {
    margin: 0;
}

#foot {
    margin: 0 auto 1em;
    padding: 50px 0;
    clear: both;
    float: left;
    width: 100%;
    border-top: 2px solid;
}

/* /rockymountainflameoff/ */
.page-id-2955 .title-wrap,
.page-id-2955 header,
.page-id-2955 #foot,
.page-id-2955 .copy,
.page-id-2955 a.cwc,
.page-id-2955 #fhFixedButton,
.page-id-3019 .title-wrap,
.page-id-3019 header,
.page-id-3019 #foot,
.page-id-3019 .copy,
.page-id-3019 a.cwc,
.page-id-3019 #fhFixedButton,
.page-id-3025 .title-wrap,
.page-id-3025 header,
.page-id-3025 #foot,
.page-id-3025 .copy,
.page-id-3025 a.cwc,
.page-id-3025 #fhFixedButton {
    display: none !important;
}

.fh-button-flat-red {
    display: none !important;
}

#footer-wrap {
    margin: auto;
}

footer {
    margin: 1.5em auto;
}

footer .wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

footer .wrap>* {
    text-align: center;
    margin: auto;
}

footer nav div ul li {
    display: block;
}

footer .logo,
footer .logo:hover,
footer logo:active {
    width: 200px;
    height: 200px;
    background-position: center;
    margin: inherit;
}

footer .cta {
    margin: 1em auto;
    display: table;
}

footer h3 {
    margin: 0;
    padding: 10px 16px;
}

footer .nav-wrapper a,
.social>a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    text-align: left;
    line-height: 1;
    opacity: 1;
    font-family: 'Poppins', Helvetica, sans;
}

footer .nav-wrapper a {
    border: none;
}

footer .nav-wrapper .sub-menu a {
    font-family: tenso, sans-serif;
    font-weight: 400;
    font-weight: 300;
    text-transform: none;
    border: none;
}

footer nav li.current-menu-item>a {
    color: #d73502;
}

footer nav li.current_page_item li a {
    color: white;
}

footer nav li li.current_page_item a {
    color: #d73502;
}

footer a:hover,
footer .nav-wrapper a:hover {
    opacity: .8;
    border: none;
}

footer a,
footer a[href^="tel"],
footer span {
    padding: 0 20px 0 0;
    color: #fff;
    opacity: 1;
}

.footer-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
    padding: 30px 20px 0 !important;
    /* Bottom padding removed */
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Row 1: Explore Horizontal */
.footer-nav-top {
    width: 100% !important;
}

.footer-nav-top h3 {
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 8px !important;
}

.footer-menu-horizontal {
    display: flex !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 15px !important;
}

.footer-menu-horizontal li a {
    color: #fff !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.3s !important;
}

.footer-menu-horizontal li a:hover {
    color: var(--primary-color) !important;
}

/* Row 2: Logo */
.footer-center-logo img {
    max-width: 90px !important;
    /* Significantly smaller */
    height: auto !important;
    filter: invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)) !important;
    transition: transform 0.3s ease !important;
}

.footer-center-logo a:hover img {
    transform: scale(1.05) !important;
}

/* Row 3: Contact Group */
.footer-contact-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

.footer-contact-group .contact-blurb {
    max-width: 400px !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: #bbb !important;
}

.footer-contact-group .cta {
    display: inline-block !important;
    margin-top: 5px !important;
    padding: 6px 15px !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

.footer-contact-group .cta:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.contact-methods {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    /* Tighter */
    margin-top: 5px !important;
}

.contact-methods a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #999 !important;
    font-size: 11px !important;
    /* Smaller */
}

.contact-methods i {
    color: var(--primary-color) !important;
    font-size: 0.9rem !important;
    /* Smaller icons */
}

/* Row 4: Copyright */
.footer-copyright {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    /* Zero bottom padding */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    width: 60% !important;
    margin-bottom: 0 !important;
}

.footer-copyright p {
    font-size: 0.7rem !important;
    color: #555 !important;
    margin-bottom: 2px !important;
}

.footer-copyright a {
    display: block !important;
    font-size: 0.65rem !important;
    color: #444 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-contact a {
    color: white;
    line-height: 1.5;
}

footer .social {
    max-width: 191px;
    margin-left: 10px;
}

footer .social div {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

footer .social a {
    padding: 0;
}

footer .social img {
    width: 100%;
}

footer .form-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4%;
}

footer .form-wrap form {
    display: flex;
    gap: 4%;
}

.nf-before-form-content {
    display: none;
}

footer .form-wrap input {
    border: 2px solid white;
    color: white;
    background: none;
    padding: 10px 15px;
}

footer .hs-form-field {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

footer .form-wrap label {
    color: white;
    font-size: 18px;
    padding: 3px 5px 0;
    flex: 2;
    text-align: right;
}

footer .form-wrap .hs-form-required {
    display: none;
}

footer .form-wrap .submitted-message {
    color: white;
}

.copy,
a.cwc {
    display: none !important;
    /* already in stack */
}

.copy a {
    color: inherit;
    text-decoration: none;
}

.copy:hover {
    color: #7b7b7b;
    text-decoration: underline;
}

a.cwc {
    font-size: .7rem;
    text-transform: none;
    margin-bottom: 0;
    padding: 2em 0;
    color: #717171;
}

.social {
    text-align: left;
}

.social div {
    padding: 10px 0;
}

.social div a {
    background-size: contain;
    margin: 0 10px;
    display: inline-block;
    opacity: 1;
    background-repeat: no-repeat;
}

.social a:hover {
    opacity: .7;
}

.social div a:last-of-type {
    margin: 0;
}

.social a.twitter {
    background: url(../../images/twitter.svgz) no-repeat;
}

.social a.facebook {
    background: url(../../images/facebook.svgz) no-repeat;
}

.social a.instagram {
    background: url(../../images/instagram.svgz) no-repeat;
}

a {
    text-decoration: none;
    color: #d73502;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear
}

a:focus,
a:active {
    background: none;
    outline: none;
}

a:hover {
    color: #d73502;
}

header a[href^=tel] {
    color: inherit;
    text-decoration: none;
}

a.post-edit-link {
    display: block;
    background: #fff;
    width: auto;
    float: right;
    padding: 0 3px;
    font-size: smaller;
    color: #ccc;
}

img,
a.img,
img a {
    border: none;
    max-width: 100%;
    height: auto;
}

.wp-block-button__link {
    padding: 10px 20px 35px !important;
}

button,
.wp-block-button__link,
input.button,
a.button,
#commentform input#submit,
#searchsubmit {
    width: auto;
    font-weight: bold;
    letter-spacing: 1.4px;
    font-size: 14px;
    padding: 7px 10px 5px;
    color: #000;
    background: #d73502;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none !important;
    max-width: 222px;
    text-align: center;
    text-transform: uppercase;
    height: 31px;
    line-height: 2;
}

.button.invert {
    background: white;
    color: #d73502;
    border: 2px solid #d73502;
    border-radius: 4px;
    letter-spacing: 1.6px;
    padding: 15px 25px;
}

.button.invert:hover {
    background: #d73502;
    color: white;
    border: 2px solid #d73502;
    border-radius: 4px;
}

.button.invert.aligncenter {
    display: block;
    margin: 100px auto;
}

#content .button {
    margin: auto;
    display: inline-block;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
}

button:hover,
.wp-block-button__link:hover,
.button:hover,
input.button:hover,
a.button:hover,
#commentform input#submit:hover,
#searchsubmit:hover {
    color: #fff;
    cursor: pointer;
    border: none;
}

.button.white {
    background-color: white;
}

.button.white:hover {
    background-color: #000;
}

.button.center {
    margin: 3em auto 1em;
    display: block;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 2em auto;
}

.alignleft {
    float: left;
    margin: 2em 1em 2em 0;
}

.alignright {
    float: right;
    margin: 2em 0 2em 1em;
}

.clear {
    clear: both;
    margin: 1em auto;
}

.aligncenter {
    margin: auto;
    text-align: center;
    display: inline-block;
}

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

.wp-caption img {
    border: 0 none;
    margin: 4px 0 0;
    padding: 0;
}

.wp-caption p.wp-caption-text {
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
    padding: 0 4px 5px;
}

.cats,
.tags {
    color: #ccc;
}

/*
#commentform {text-align:center;}
.commentlist, .commentlist .children {list-style:none; width:100%; padding:0; margin:0; float:left;}
.commentlist li {margin:0 2%; padding:2%; float:left;}
.comment-meta,.comment-author {float:left; width:45%; margin:0 2.5% 1% 0; display:block; line-height:32px; padding:0; font-size:1.1rem; color:#7893a0}
.comment-meta a {font-size:11px; line-height:1; color:#ccc}
.comment-author img {float:left; margin:0 10px 0 0;}
.comment-body p {width:100%; float:left; padding:3px 0; margin:0; }
#commentform input, #commentform textarea, #commentform label {float:left; width:45%; margin:5px 1%}
#commentform label {width:25%;}
#commentform input.submit { margin:10px 0 2rem 30%; border:none; border-radius:5px; background:#b95a9c; color:#fff; }
#commentform input.submit:hover {background:#00679a;}
*/



/* RESPONSIVE
================================================== */
@media only screen and (max-width:1460px) {
    header {
        padding: 0 2.375%;
    }

    .nav-wrapper a {
        margin: 0 14px;
    }

    .home_boxes a:nth-of-type(2) {
        min-width: 100px;
    }

    .home_boxes h2 {
        margin-top: 1em;
    }

    .home_boxes a:nth-of-type(2) h2 {
        bottom: 2em;
    }

    .home_boxes {
        padding: 0 20px;
    }

    #footer-wrap {
        padding: 0 2%
    }

    .copy {
        padding: 0 2% 1.5em;
        text-align: center;
    }
}

@media only screen and (max-width:1000px) {
    .nav-wrapper a {
        margin: 0 8px;
    }
}

@media only screen and (max-width:960px) {
    header nav {
        display: none;
    }

    .menu-btn {
        position: absolute;
        top: 15px;
        right: 30px;
        cursor: pointer;
        width: 45px;
        z-index: 9999;
    }

    .menu-btn span {
        display: block;
        width: 45px;
        height: 5px;
        margin: 0 0 10px;
        border-radius: 5px;
        background: var(--primary-color);
        z-index: 9999;
    }

    .menu-btn.trans div {
        position: absolute;
        top: 1em;
        right: 0;
        line-height: 0;
    }

    .menu-btn.trans div:before {
        content: "\00d7";
        color: white;
        font-size: 66px;
    }

    .menu-btn.trans span {
        display: none;
    }

    .mobile-nav {
        list-style: none;
        /* background:#2e2e2e; box-shadow:3px 3px 5px #000;*/
        padding: 5px 2em 1em 15px;
        margin: auto;
    }

    .mobile-nav a {
        color: white;
        margin: auto;
        padding: .5em;
        font-size: 22px;
        display: block;
    }

    .mobile-nav a:hover {
        color: rgb(172, 172, 172);
    }

    .responsive-menu {
        top: -500px;
        left: 0;
        position: absolute;
        display: block;
        transition: top 1s;
        z-index: 9999;
    }

    .sub-menu {
        list-style: none;
    }

    .expand {
        top: 90px;
        width: 100%;
        display: block;
    }

    .menu-social-menu-container {
        display: none;
    }

    .overlay {
        background: rgba(0, 0, 0, .8);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        display: none;
    }

    .show {
        display: block;
        transition: 1s;
    }

    .module-slide .thumb-wrap img {
        min-width: 300px;
    }

    .carousel-wrap.outer-wrap {
        padding: 3em 0;
    }

    .inner-wrap.nopad,
    .inner-wrap.lesspad {
        padding: 1em 12%;
    }

    .inner-wrap,
    .outer-wrap {
        padding: 3em 12%;
    }

    #posts .inner-wrap {
        padding: 2em 12% 0;
    }

    #posts .slick-slide {
        padding: 0 2em;
    }

    #posts .outer-wrap .post {
        width: auto;
    }

    .contact .contact-wrap {
        padding: 3em 12%;
    }

    .contact .contact-wrap .flex {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width:768px) {

    h1.page-title a,
    h2.page-title a {
        font-size: 26px;
    }

    .single .wide-wrap,
    .blog .wide-wrap,
    .archive .wide-wrap {
        display: block;
        padding: 0 4%;
    }

    #products-module .thumb-wrap {
        order: initial !important;
    }

    #products-module .thumb-wrap,
    #products-module .info-wrap {
        flex: 0 0 100%;
        text-align: center;
    }

    .fh-button-flat-white.fh-fixed--bottom {
        display: inline-block !important;
        width: 93px !important;
        left: initial !important;
    }
}

@media only screen and (max-width: 767px) {

    .logo,
    .logo:hover,
    .logo:active {
        display: inline-block;
        margin: 0;
        flex: initial;
    }

    .thumb-wrap {
        float: none;
        width: 100%;
        margin: 0 auto 1em;
    }

    .home h1 {
        font-size: 2em;
    }

    h1,
    h1 a,
    h1 a:hover {
        margin: 0 auto;
    }

    .col-2 {
        columns: 1;
    }

    .col-2 br {
        display: none;
    }

    .col-2 br:nth-of-type(odd) {
        display: block;
        margin: 0 0 1em;
    }

    .col-3 {
        grid-template-columns: 1fr;
        gap: 4em;
    }

    button,
    input.button,
    a.button,
    #commentform input#submit,
    #searchsubmit {
        max-width: 265px;
    }

    #ba .outer-wrap {
        display: block;
    }

    #ba .outer-wrap>div {
        padding: 0;
        margin: 0 auto 2em;
    }

    #pg-our-team .inner-wrap {
        width: auto;
        padding: 3em 12%;
    }

    #pg-our-team .outer-wrap {
        width: 76%;
        padding-top: 3em;
    }

    .module-slide .info-wrap {
        display: block;
    }

    .module-slide .info-wrap .button {
        position: relative;
    }

    #pg-community-giving-back .wide-wrap {
        grid-template-columns: 1fr;
    }

    footer .social {
        margin: 36px 12%;
    }

}

@media only screen and (max-width: 600px) {
    .tile {
        flex: 1 0 100%;
        height: 200px;
    }

    .tile h3 {
        left: 0;
        padding: 0 10px;
        font-size: 1.4rem;
    }

    .carousel-item.slick-slide img {
        width: 90%;
    }

    footer .wrap {
        grid-template-columns: 1fr;
        gap: 3em;
    }

    .footer-contact {
        font-size: 16px;
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 480px) {

    h2.page-title,
    h1.page-title,
    h1.subheading {
        padding-left: 30px;
    }

    .archive-wrap {
        display: block;
    }

    .archive-wrap .archive-single {
        margin: 2em auto 5em;
    }

    .slides {
        background: #fff;
    }

    .slick-slide>div.hero-wrap h2 {
        font-size: 2em;
    }

    .slides .slick-slide {
        height: 60vh;
    }

    .slides .slick-dots {
        bottom: 20px;
    }

    .slick-dots li {
        margin: 0 6px;
    }

    .bio>div.wrap {
        display: block;
    }

    .bio img {
        max-width: 94%;
        float: none;
        margin: 0 auto 1em;
    }

    footer .footer-contact a {
        text-align: center;
        display: block;
    }
}

/* =========================================
   STANDARD HEADER (Solid & Stable)
   ========================================= */

/* Consolidated into end of file */

/* Remove Glass Effect Overlays */
#head:before {
    display: none;
}

/* Sticky Behavior */
/* Sticky logic consolidated */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Marquee Clean Up */
.marquee {
    position: relative;
    padding: 15px 0;
    /* Standard padding */
    background: #000;
    display: block;
    z-index: 5;
    color: white;
}

/* 4. Modern Navigation Styling */
nav .nav-wrapper a {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 25px 0;
    /* Increase hit area */
}

/* Hover Effect: Glow & Lift */
nav .nav-wrapper a:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: transparent;
}

/* Active State: Underline Gradient */
nav li.current_page_item a {
    color: #fff;
    position: relative;
}

nav li.current_page_item a:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d73502, #ff6b35);
    position: absolute;
    bottom: 10px;
    left: 0;
}

/* 5. Logo Modernization */
.logo {
    filter: invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    /* Clean white logo */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    /* Subtle zoom */
}

/* 6. Fix for Content Pushing */
/* Since header is now absolute, push content down if needed on subpages */
/* Consolidating header behavior */


/* Fix: Push Marquee down below the absolute header */
.marquee {
    position: relative;
    padding-top: 85px;
    /* Adjusted to clear the 75px header + 10px buffer */
    z-index: 5;
}


/* Global Utilities */
.text-center {
    text-align: center;
}

.narrow {
    max-width: 800px !important;
    margin: 0 auto;
}

.intro-desc {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 2em;
}

.intro-heading {
    margin-bottom: 0.5em;
}

/* Product/Service Grid Layout */
.grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.thumb-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .grid-50-50 {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .thumb-wrap {
        order: -1 !important;
        /* Always show image first on mobile */
    }
}



/* 3-Column Grid */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
}

@media (max-width: 900px) {
    .grid-3-col {
        grid-template-columns: 1fr;
    }
}

/* Modern Footer */
#foot {
    background: var(--bg-dark);
    color: white;
    padding: 4em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1em;
    filter: brightness(0) invert(1);
    /* Ensure white logo */
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5em;
}

.footer-menu li a:hover {
    color: white;
}

.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8em;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .grid-4-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .grid-4-col {
        grid-template-columns: 1fr;
    }
}



/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    /* Slight tint */
    padding: 2em;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2em;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1em;
    opacity: 0.9;
}

.testimonial-author {
    display: block;
    margin-top: 1em;
    font-weight: 600;
    font-style: normal;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5em 0;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.faq-answer {
    font-size: 0.95em;
    opacity: 0.85;
    line-height: 1.6;
}


/* If needed */

/* =========================================
   NUCLEAR LAYOUT & COLOR FIXES (Industry Standard)
   ========================================= */

/* 1. Eliminate White Gaps & Force Black Theme */
html,
body {
    background-color: #000000 !important;
    overflow-x: hidden !important;
    /* Stop horizontal scroll */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

#head {
    background-color: #000000 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

header {
    width: 100% !important;
    max-width: 1440px !important;
    /* Maintain center for content */
    margin: 0 auto !important;
    padding: 0 4% !important;
    /* Safe area */
    box-sizing: border-box !important;
    background: transparent !important;
    /* Allow #head black to show */
}

/* 2. Logo Sizing */
.logo {
    width: 90px !important;
    height: 90px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    /* Ensure no text duplication */
    color: transparent !important;
    overflow: hidden;
}

/* 3. Footer Alignment (Left Standard) */
footer .grid-4-col {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    text-align: left !important;
    align-items: start !important;
}

.footer-branding,
.footer-nav,
.footer-contact,
.footer-legal {
    text-align: left !important;
}

/* Fix Flex Stack -> Row for Contact Icons */
.footer-contact {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
}

.footer-contact a {
    display: flex !important;
    flex-direction: row !important;
    /* Icon Left, Text Right */
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
}

.footer-contact i {
    width: 20px !important;
    text-align: center !important;
    margin: 0 !important;
    color: var(--primary-color) !important;
    /* Remove borders/backgrounds to look clean */
    background: transparent !important;
    border: none !important;
}

/* 4. Force Blue -> Black (Attribute Selector Hack) */
[style*="#192a39"],
[style*="rgb(25, 42, 57)"] {
    color: #000000 !important;
    /* Force background too if needed, but risky. Text is primary target. */
}

/* Force background overrides specifically */
.sub-head,
.title-wrap {
    background-color: #000000 !important;
    background: #000000 !important;
    /* Override potential gradients */
}

section {
    max-width: 100% !important;
    overflow: hidden !important;
}


/* Tiles Grid */
.tile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tile-card {
    position: relative;
    height: 300px;
    flex: 1 1 300px;
    max-width: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tile-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.tile-card:hover .tile-bg {
    transform: scale(1.05);
}

.tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    color: white;
}

.tile-content h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.tile-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Footer Fixes */
footer {
    text-align: left !important;
}

.footer-branding,
.footer-nav,
.footer-contact,
.footer-legal {
    text-align: left !important;
}

.footer-logo img {
    max-width: 150px;
    display: block;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 25px;
    text-align: center;
    color: var(--primary-color);
}

.grid-4-col {
    align-items: start;
}



/* Header Full Width Fix */
header {
    max-width: 100% !important;
    padding: 0 4% !important;
    margin: 0 !important;
}

.marquee__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    white-space: nowrap;
}

/* Remove Marquee CSS */
.marquee {
    display: none !important;
}



/* =========================================
   UNIVERSAL MENU FIXES (Robust Fallback)
   ========================================= */

/* 1. Hide Mobile Elements on Desktop */
@media screen and (min-width: 992px) {

    #menu-btn,
    .responsive-menu,
    .overlay {
        display: none !important;
    }
}

/* 2. Container Setup */
header nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    /* Align to right */
    flex-grow: 1 !important;
    margin-left: 20px !important;
    height: 100% !important;
}

/* 3. Top Level Menu (Generic Logic) */
/* Targets ANY ul inside nav (wp_nav_menu OR wp_page_menu) */
header nav>ul,
header nav>div>ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 25px !important;
}

header nav li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    /* For dropdowns */
}

/* 4. Top Level Links */
/* Direct children links */
header nav>ul>li>a,
header nav>div>ul>li>a {
    text-decoration: none !important;
    color: #ffffff !important;
    font-family: var(--font-heading, sans-serif) !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    padding: 30px 0 !important;
    /* Increase click area */
    display: block !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

header nav>ul>li>a:hover,
header nav>div>ul>li>a:hover {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color) !important;
}

/* 5. DROPDOWNS (Sub-menus) */
/* Hide ALL submenus by default */
header nav ul ul,
header nav li ul,
header nav .sub-menu,
header nav .children {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    /* Align to bottom of parent */
    left: 0 !important;
    background-color: #000000 !important;
    /* Black Dropdown */
    min-width: 260px !important;
    z-index: 99999 !important;
    padding: 10px 0 !important;
    border: 1px solid #222 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8) !important;
}

/* Show on Hover */
header nav li:hover>ul,
header nav li:hover>.sub-menu,
header nav li:hover>.children {
    display: block !important;
}

/* Dropdown Links */
header nav ul ul a,
header nav .sub-menu a,
header nav .children a {
    display: block !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
    color: #cccccc !important;
    border: none !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

header nav ul ul a:hover,
header nav .sub-menu a:hover,
header nav .children a:hover {
    color: #ffffff !important;
    background-color: #151515 !important;
    padding-left: 25px !important;
}

/* 6. Fix Button Styles in Menu */
/* Detect "Book" or "cta" class */
header nav li.menu-cta>a,
header nav li a[href*='book'] {
    border: 1px solid #ffffff !important;
    padding: 10px 25px !important;
    margin-top: -10px;
    /* Adjust alignment if using tall padding */
    border-radius: 0 !important;
}

header nav li.menu-cta>a:hover,
header nav li a[href*='book']:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* =========================================
   FINAL MENU STRUCTURE FIX (Strict)
   ========================================= */

/* 0. Glassmorphism Header */
header#head {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    /* Overriding 1440px limit */
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    z-index: 999999 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 8px 30px !important;
    /* Sleek padding */
}

/* 1. Reset Nav Container */
header nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    width: auto !important;
}

ul.desktop-menu {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin: 0 !important;
}

/* 2. Top Level List (Horizontal) */
ul.desktop-menu {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    align-items: center !important;
    width: auto !important;
}

/* 3. Top Level Items */
ul.desktop-menu>li {
    position: relative !important;
    /* Anchor for absolute dropdown */
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. Top Level Links */
ul.desktop-menu>li>a {
    display: block !important;
    padding: 10px 0 !important;
    /* SHORTER */
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

ul.desktop-menu>li>a:hover {
    color: var(--primary-color) !important;
}

/* 5. DROPDOWN (Sub-Menu) */
ul.desktop-menu li ul.sub-menu {
    display: none !important;
    /* Hidden by default */
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #000000 !important;
    min-width: 220px !important;
    border: 1px solid #222 !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
    flex-direction: column !important;
    z-index: 999999 !important;
}

/* Show on Hover */
ul.desktop-menu li:hover>ul.sub-menu {
    display: flex !important;
}

/* Dropdown Items */
ul.desktop-menu li ul.sub-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dropdown Links */
ul.desktop-menu li ul.sub-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #cccccc !important;
    font-size: 13px !important;
    text-transform: capitalize !important;
    font-weight: 400 !important;
    border: none !important;
    white-space: normal !important;
    /* Allow wrapping in dropdown if needed */
}

ul.desktop-menu li ul.sub-menu li a:hover {
    color: #ffffff !important;
    background: #111 !important;
    padding-left: 25px !important;
}
#blog-module { display: none !important; }

/* Fix: Ensure Student Art post images have height since text might be hidden */
#posts-slider .post > div:first-child {
    min-height: 250px;
    width: 100%;
    margin-bottom: 20px;
}

/* Fix: Ensure Hero Slider text is white for contrast (User Request) */
.slides .hero-wrap h2, .slides .hero-wrap p, .slides .hero-wrap .cta {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.slides .hero-wrap p {
    font-weight: 500;
}

/* Fix: Align social account buttons horizontally in menu bar (User Request) */
.social > div {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    align-items: center;
}
.social a {
    display: block;
    line-height: 0;
}

/* Fix: Add top padding to body on non-home pages to prevent fixed header from obscuring content (User Request) */
body:not(.home) {
    padding-top: 140px !important;
}
@media (max-width: 768px) {
    body:not(.home) {
        padding-top: 100px !important;
    }
}

/* Fix: Mobile Menu Visibility and Styling */
@media only screen and (max-width: 960px) {
    .responsive-menu {
        background: rgba(0, 0, 0, 0.95) !important;
        width: 100% !important;
        padding: 20px 0 !important;
    }
    .responsive-menu.expand {
        top: 90px !important;
    }
    .mobile-social {
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-top: 20px;
    }
    .mobile-social a {
        color: #D73502 !important;
    }
}

/* CRITICAL: Force hide desktop nav and fix social icons on mobile (User Request) */
@media only screen and (max-width: 960px) {
    header nav {
        display: none !important;
    }
    header .social {
        display: none !important;
    }
    .menu-btn {
        display: block !important;
        position: absolute !important;
        top: 15px !important;
        right: 20px !important;
        z-index: 99999 !important;
    }
    header .logo {
        max-width: 150px !important;
        height: 50px !important;
    }
    #head {
        padding: 10px 15px !important;
    }
}

/* Fix: Ensure mobile menu is fully hidden when closed */
@media only screen and (max-width: 960px) {
    .responsive-menu {
        top: -100vh !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: top 0.3s ease, visibility 0s 0.3s, opacity 0.3s ease !important;
    }
    .responsive-menu.expand {
        top: 70px !important;
        visibility: visible !important;
        opacity: 1 !important;
        transition: top 0.3s ease, visibility 0s 0s, opacity 0.3s ease !important;
    }
}

/* Fix: Mobile Footer Layout */
@media only screen and (max-width: 768px) {
    /* Stack footer nav links vertically */
    .footer-menu-horizontal {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 0 !important;
        list-style: none !important;
    }
    .footer-menu-horizontal li {
        display: block !important;
        text-align: center !important;
        margin: 0 !important;
    }
    .footer-menu-horizontal a {
        display: block !important;
        padding: 8px 15px !important;
        font-size: 14px !important;
    }
    /* Center footer content */
    .footer-stack {
        text-align: center !important;
        padding: 20px !important;
    }
    .footer-nav-top h3 {
        text-align: center !important;
    }
    .footer-center-logo img {
        max-width: 150px !important;
    }
    /* Stack contact methods vertically */
    .contact-methods {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .contact-methods a {
        display: block !important;
        text-align: center !important;
    }
    .footer-contact-group {
        padding: 20px 10px !important;
    }
}

/* Fix: Force readable text on dark backgrounds */
.dark-bg, .outer-wrap, .inner-wrap, section, #foot, footer, [style*='background:#0'], [style*='background: #0'], [style*='background-color:#0'], [style*='background-color: #0'] {
    color: #ffffff !important;
}
.dark-bg p, .outer-wrap p, .inner-wrap p, section p, #foot p, footer p {
    color: #ffffff !important;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4,
.outer-wrap h1, .outer-wrap h2, .outer-wrap h3, .outer-wrap h4,
.inner-wrap h1, .inner-wrap h2, .inner-wrap h3, .inner-wrap h4 {
    color: #ffffff !important;
}
/* Ensure all paragraphs in main content areas are readable */
body p {
    color: inherit;
}
.page-content p, .entry-content p, article p, main p {
    color: #ffffff !important;
}
/* Make sure text in dark sections is white */
#content p, .content p, .wrap p {
    color: #ffffff !important;
}

/* Fix: Smooth scrolling to prevent snapping */
html {
    scroll-behavior: smooth !important;
}
/* Prevent layout shift when header becomes sticky */
#head {
    transition: none !important;
}
#head.sticky .logo {
    transition: none !important;
}
/* Ensure consistent padding regardless of sticky state */
body:not(.home) .main-wrap {
    padding-top: 0 !important;
}

/* Fix: Footer current page indicator positioning */
#foot .current-menu-item a,
#foot .current_page_item a,
footer .current-menu-item a,
footer .current_page_item a {
    position: relative !important;
    display: inline-block !important;
}
#foot .current-menu-item a::after,
#foot .current_page_item a::after,
footer .current-menu-item a::after,
footer .current_page_item a::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -5px !important;
    width: 80% !important;
    height: 2px !important;
    background: #d73502 !important;
}
/* Remove any mispositioned indicators */
#foot li::before,
footer nav li::before {
    display: none !important;
}

/* Fix: Footer current page - use text highlight instead of underline */
#foot .current-menu-item a,
#foot .current_page_item a,
footer .current-menu-item a,
footer .current_page_item a {
    color: #d73502 !important;
    font-weight: 600 !important;
}
/* Remove the underline pseudo-element */
#foot .current-menu-item a::after,
#foot .current_page_item a::after,
footer .current-menu-item a::after,
footer .current_page_item a::after {
    display: none !important;
    content: none !important;
}

/* Fix: Make class cards grid symmetrical (4 columns x 2 rows for 8 cards) */
.tiles-wrap, .tile-grid, .home_boxes {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    justify-content: center !important;
}
.tile, .home_boxes > a, .tiles-wrap > * {
    width: 100% !important;
    margin: 0 !important;
}
/* Responsive: 2 columns on tablet */
@media (max-width: 960px) {
    .tiles-wrap, .tile-grid, .home_boxes {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* Responsive: 1 column on mobile */
@media (max-width: 600px) {
    .tiles-wrap, .tile-grid, .home_boxes {
        grid-template-columns: 1fr !important;
    }
}

/* Fix: Center card grid and reduce gaps */
.tiles-wrap, .tile-grid, .home_boxes {
    max-width: 1400px !important;
    margin: 0 auto !important;
    gap: 8px !important;
    padding: 0 20px !important;
}
.tile, .home_boxes > a, .tiles-wrap > * {
    aspect-ratio: 4/3 !important;
}

/* Fix: Center footer logo and Explore nav */
.footer-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
.footer-nav-top {
    width: 100% !important;
    text-align: center !important;
}
.footer-nav-top h3 {
    text-align: center !important;
    width: 100% !important;
}
.footer-center-logo {
    text-align: center !important;
    width: 100% !important;
}
.footer-center-logo img {
    margin: 0 auto !important;
    display: block !important;
}
