body {
    font-family: Montserrat, sans-serif;
}

body.header-fixed.header-animated #header.scrolled ~ .mobile-menu .button_container {
    top: 1rem;
}

.mobile-menu .button_container span {
    background: #db9d15;
}

.header-transparent .mobile-menu .button_container span {
    background: #fff;
}

.scrolled+.mobile-menu .button_container span {
    background: #db9d15;
}

.container.grid-lg {
    max-width: 1200px;
}

.header-transparent #header:not(.scrolled) {
    background: transparent;
    border: none;
}

.header-transparent #header:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1);
    height: 45px;
}

body.header-fixed.header-animated #header.scrolled .logo img, body.header-fixed.header-animated #header.scrolled .logo svg {
    height: 35px;
}

body.header-fixed.header-animated #header.scrolled .navbar-section {
    height: 3rem;
}

body.header-fixed.header-animated #header.scrolled {
    height: 3rem;
}

.header-transparent #header:not(.scrolled) a {
    color: #fff;
}

.header-transparent #header:not(.scrolled) a.active {
    color: #fff!important;
    text-decoration: underline;
}

.header-transparent #header:not(.scrolled) ul ul a {
    color: #3a414e;
}

#footer {
    color: #fff;
}

.WIP, .WIP_Title{
    justify-self: center;
    font-style: italic;
}

.WIP_Title{
    font-size: 1.5rem;
    font-family: "Milonga", serif;
    padding-top: 50px;
    color: #db9d15;
}

.bg-secondary {
    background-color: #AA5620!important;
}

.bg-vitraux {
    background-image: url('/user/themes/mas-de-lage/images/vitraux.png')!important;
    background-size: cover!important;
    background-position: center!important;
    background-blend-mode: lighten!important;
}

.bg-orange {
    background-color: #FFFAF8;
}

.text-white {
    color: #fff;
}

h1, h2, .text-gold, .hero.text-gold h1, .h2 {
    color: #db9d15;
}

h1:not(.hero-h1) {
    padding-bottom: 45px;
    background-image: url(/user/themes/mas-de-lage/images/h1_decoration.png);
    background-repeat: no-repeat;
    background-size: 165px;
    background-position: center bottom;
    text-align: center;
    font-family: "Milonga", serif;
    font-size: 1.8rem;
}

h2, .h2 {
    font-size: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #db9d15;
    display: inline-block;
    font-family: "Milonga", serif;
}

#footer .h2 {
    font-size: 1.1rem;
    border-left: 2px solid #fff;
    padding-left: .8rem;
    color: #fff;
}

.hero.text-gold h1, .hero.text-gold p {
    /* text shadow */
    text-shadow: 1px 1px 2px #000;
}

.hero.text-gold p {
    color: #fff;
}

.hero p {
    font-size: 1.8rem;
}

.btn {
    color: #db9d15!important;
}

.btn {
    border-color: #db9d15;
}

.btn:focus, .btn:hover, .button:focus, .button:hover {
    border-color:#db9d15;
    background:#db9d15;
    color: #fff!important;
}

.shadow {
    box-shadow:
    0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075),
    0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075),
    0 16px 16px hsl(0deg 0% 0% / 0.075);
}

.chambre {
    position: relative;
    transition: all .3s ease-out;
    overflow: hidden;
    border: 1px solid #db9d15;
    display: flex;
    
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

a.chambre-link {
    text-decoration: none!important;
}

.chambre h3 {
    font-size: 1.1rem;
    margin-top: 0;
    color: #fff;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 1px #000, 0 0 10px #000;
}

.chambre img {
    transition: all .3s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chambre:hover img {
    transform: scale(1.1);
    filter: blur(2px);
}

.frame {
    position: relative;
    margin-left: 15px;
    margin-top: 15px;
    display: inline-block;
}

.frame.fl {
    float: left;
    margin-right: 15px;
}

.frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid #db9d15;
    pointer-events: none;
}

.frame img {
    position: relative;
    z-index: 1; 
}

.flex-column {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.grid-nature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
    "text    img1"
    "img2    img3";
    gap: 2rem;
    align-items: start;
}

.text-bloc {
    grid-area: text;
}

.img-1 {
    grid-area: img1;
    max-height: 160px;
    text-align: right;
}

.img-2 {
    grid-area: img2;
    max-width: 450px;
}
.img-3 {
    grid-area: img3;
    max-width: 450px;
}

@media (max-width: 768px) {
    .grid-nature {
        grid-template-areas:
        "text"
        "img1"
        "img2"
        "img3";
        grid-template-columns: 1fr;
    }
    
    .img-1 {
        max-height: none;
    }
    
    .image {
        text-align: center;
        max-width: none;
    }
}

.big-chambres-btn {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.dropmenu ul li a.active, .dropmenu ul li a:focus, .dropmenu ul li a:hover {
    color: #db9d15!important;
}

.image-stack {
    position: relative;
}

.image-stack img {
    max-height: 500px;
}


.image-stack .img-overlay {
    position: absolute;
    width: 60%;
    max-width: 100%;
    bottom: -1rem;
    right: 1rem;
}

@media (max-width: 840px) {
    .image-stack .img-overlay {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }
}

.event-title {
    color: #db9d15;
    margin-bottom: 1rem;
}

.chambre-item {
    align-items: center;
}

.chambre-item .nom {
    color: #db9d15;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.chambre-item .texte {
    padding-right: 1rem;
}

.chambre-item .short-desc {
    font-weight: bold;
    margin-bottom: 1rem;
}

.chambre-item .images img {
    width: 100%;
    height: auto;
}

@media (min-width: 841px) {
    .chambre-item.reverse .texte {
        order: 2;
        padding-right: 0;
        padding-left: 1rem;
    }
    
    .chambre-item.reverse .images {
        order: 1;
    }
}

@media (max-width: 840px) {
    .chambre-item .texte {
        order: 2;
    }
    
    .chambre-item .images {
        order: 1;
    }
}

.lang-menu {
    position: relative;
}

.lang-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    gap: 1rem;
    display: none;
    width: 120px;
    position: absolute;
    left: -15px;
    padding: 15px;
    background-color: #fff;
}

.header-transparent .lang-menu ul {
    background-color: transparent
}

.header-transparent .scrolled .lang-menu ul {
    background-color: #fff;
}

.lang-menu i {
    font-size: 1.3rem;
}

.header-transparent .lang-menu i {
    color: #fff;
}

.header-transparent .scrolled .lang-menu i {
    color: #454d5d;
}

.scrolled .lang-menu i {
    color: #454d5d;
}

.scrolled .lang-menu ul {
    background-color: #fff;
}

.lang-menu li a:hover {
    color: #db9d15!important;
}

.lang-menu:hover ul, .lang-menu ul:hover {
    display: block;
}

.mobile-container .lang-menu {
    margin: 1rem;
}

.mobile-container .lang-menu span {
    display: none;
}

.mobile-container .lang-menu ul {
    background: rgba(102,113,137,.1);
    position: static;
    display: flex;
    width: auto;
    padding: .5rem 1.2rem;
    font-size: 1rem;
}

.justify-center {
    justify-content: center;
}

#footer {
    padding: 3rem 1rem;
}

.logo-footer {
    max-width: 280px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

#footer a {
    color: #fff;
}