:root {
    --brand-primary-1: #867a6f;
    --brand-primary-2: #575a5d; 
    --brand-secondary-1: #a99767;
    --brand-secondary-2: #a6a7a9; 
    --brand-secondary-3: #5e5d69;
    --light: #dddddd;
    --darkest: #1e1e1e;    
}

body {
    overflow-x: hidden !important;
}

.font-barlow {
    font-family: var(--bs-font-sans-serif)!important;
}

p + p {
    margin-bottom: 1rem;
}

.display,
h1,
h2,
h3,
h4,
h5,
h6,
.nav-link
{
    font-family: 'Gilda Display', serif;
    font-weight: 400;
}

a {
    --webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-underline-offset: .25em;
    text-decoration: underline dotted;
}

a:not(.btn, .nav-link):hover {
    text-decoration: underline solid;
}

::selection {
    color: #fff;
    background: var(--bs-primary);
}

.bg-alt, .alt-row {
    background: #ffffff;
}

/* Header */

header {
    margin-bottom: 4rem;
}

header .nav-link span {
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
}

header .nav-link:hover span {
    border-bottom: 2px solid var(--bs-success)
}

/* Page */

.page-intro {
    margin-bottom: 4rem;
}

/* Button classes */

.btn-primary {
    background: linear-gradient(to right, var(--bs-primary) 50%, var(--bs-dark) 50%);
}

.btn-secondary {
    background: linear-gradient(to right, var(--bs-secondary) 50%, var(--bs-dark) 50%);
}

.btn {
    --webkit-transition: all 500ms ease;
    transition: all 500ms ease;   
    letter-spacing: 1px;
    border-radius: 0;
    text-transform: uppercase;
    background-size: 200% 100%;
    background-position: left bottom;
}

.btn:is(:hover, :focus, :focus-visible) {
    background-position: right bottom;
}

.btn:is(:focus, :focus-visible, :active) { 
    box-shadow: 0 0 0 .25rem #948a84!important; 
}

.btn-outline-primary:is(:focus, :focus-visible, :active) { 
    box-shadow: 0 0 0 .25rem #292524!important; 
}

.btn-primary:is(:active, :hover, :focus, :focus-visible) {
    border-color:  var(--bs-dark)!important;
}

/* Carousel classes */

/* #headerSlider .carousel-item {
    height: calc(100vh - 65px);
    min-height: 640px;
} 

#headerSlider .carousel-item img {
    height: 100%;
    object-fit: cover;
} */

#headerSlider .carousel-caption.carousel-caption-centered {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial; 
}

.carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: white;
    border: 3px solid transparent;
 }

.carousel .carousel-indicators button.active {
    border: 3px solid var(--bs-success);
}

/* Footer */

.footer {
    margin-top: 4rem;
    background: var(--bs-dark);
    color: var(--light);
}

.page-archer-hotel .footer
{
    margin-top: 0;
}

.footer .nav-link {
    display: inline-block;
    border-bottom: 1px dashed var(--brand-primary-1);
}

.footer .nav-link:hover {
    border-bottom: 1px solid var(--brand-secondary-1);
}

.footer-bottom {
    background: var(--darkest);
}

.social-media a {
    color: var(--light);
}

.social-media a:hover, .social-media a:focus {
    color: var(--brand-secondary-1);
}

/* Single use classes */

#hotelOverview {
    margin-top: -8rem;
    z-index: 1000;
}

@media screen and (max-width: 992px) {
    #hotelOverview {
        margin-top: -4rem;
    }
}

.releases, .in-the-media { 
    position: relative;
}

.releases:before, .in-the-media:before {
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    font-size: 40px;
    font-weight: 100;
    opacity: 0.5;
    top: 0;
    right: 20px;
}

.releases:before {
    color: var(--bs-primary);
    content: "\f1ea";
}

.in-the-media:before {
    top: 20px;
    color: var(--bs-secondary);
    content: "\f164";
}

/* Custom */

.badge-transparent {
    background-color: transparent;
}

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

.size-15 {
    font-size: 1.5rem;
}

.text-suptitle {
    display: block;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: var(--bs-primary);
    letter-spacing: 3px;
}

.text-subtitle {
    display: block;
    color: var(--bs-primary);
}

.text-shadow {
    /* text-shadow: 2px 2px 6px var(--darkest), 0 0 1px var(--darkest); */
    text-shadow: .085em 0 .025em var(--darkest), .075em 0 .025em var(--darkest), 0 .075em .025em var(--darkest), 0 .075em .075em var(--darkest), .085em .05em .125em var(--darkest), 0 .05em .025em var(--darkest);
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;  
}

/* Gallery */

.vc_single_image-wrapper {
    overflow: hidden;
}

.vc_single_image-wrapper .vc_single_image-img {
    transition: 1s;
}

.vc_single_image-wrapper:hover .vc_single_image-img {
    transform: scale(1.1);
}

/* Accessiblity */

.carousel-control-prev, .carousel-control-next {
    opacity: 1!important;
}

.carousel-inner .carousel-control-prev-icon, .carousel-inner .carousel-control-next-icon {
    background: none!important;
    width: 2rem!important;
    height: 3rem!important;
    opacity: 1;
}

.carousel-inner .carousel-control-prev:is(:focus, :focus-visible, :active) .carousel-control-prev-icon, 
.carousel-inner .carousel-control-next:is(:focus, :focus-visible, :active) .carousel-control-next-icon {
    outline: 3px solid #000;
    outline-offset: 10px;
    opacity: 1;
}

@media (max-width: 768px) {

    .carousel-caption {
        position: relative;
        right: 0;
        bottom: 0;
        left: 0;
        color: var(--bs-body-color);
        padding-bottom: 0;
        text-shadow: none!important;
    }

    .carousel-caption p {
        font-size: 2rem!important;
    }

}

#lightgallery a:is(:focus, :focus-visible, :active) {
    filter: brightness(50%);
    outline: 0!important;
}

/* Forms */

.quform input, 
.quform textarea, 
.quform select
{
    padding: 1rem 0.75rem!important;
    border: 1px solid var(--bs-primary)!important;
}

.quform-group-title {
    margin-bottom: 20px!important;
}
    
.quform-element-group > .quform-spacer {
    margin-bottom: 40px!important;
}
    
.quform-error-inner { 
    background: none!important; 
}
    
.required-field { color: #cc0101 }