/*
 Theme Name:   Le Roy d'Espagne – Child Theme
 Theme URI:    https://roydespagne.be
 Description:  Thème enfant basé sur GeneratePress, optimisé performance et SEO.
 Author:       Pierre Fera
 Author URI:   https://dragoweb.be
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  roydespagne
*/
/* ================= */
/* === CSS RESET === */
/* ================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}
body, ul, ol, p, .no-margin { 
	margin: 0; 
}
ul, ol {
	list-style: none;
	padding: 0;
}
a:not(.underline),
a:not(.underline):is(:hover, :focus, :focus-visible, :active) {
	text-decoration: none;
}
img {
	display: block;
	margin: auto;
	max-width: 100%;
}
button:not(.btn),
.custom-burger-toggle,
#glightbox-body button,
button:not(.btn):is(:hover, :focus, :focus-visible, :active) {
	background-color: transparent;
	border: none;
	cursor: pointer;
}
/* ================ */
/* === COULEURS === */
/* ================ */
:root {
	--box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
	--gold-gradient: linear-gradient(-45deg, #755f36 0%, #bca262 50%, #755f36 100%);
	--black-gradient: linear-gradient(-45deg, #000 0%, #555 50%, #000 100%);
	--white-gradient: linear-gradient(-45deg, #bbb 0%, #fff 50%, #bbb 100%);
	--dark-green: #558203;
	--dark-red: #9c1c1c;
	--base-2: #f2f0ea; /* BACKGROUND CLAIR */
	--cream: #e5dfd5;
	--sand: #d4c8b3;
	--link: #ad5340; /* LIENS #bc3c7f - #007699 - #ad5344 */ 
	--link1: #bc3c7f;
	--link2: #007699;
	--link3: #9c5f00;
	--green: #74af0c;
	--red : #e50035;
	--brown: #8a6119;
	--gold: #a98b45;
	--gray-f: #f4f1ea;
	--gray-e: #e5e2db;
	--gray-d: #d6cfc1;
	--gray-c: #cec6b7;
	--gray-b: #b6b0a5;
	--gray-a: #a9a191;
	--gray-9: #999284;
	--gray-8: #888173;
	--gray-7: #797367;
	--gray-6: #686359;
	--gray-5: #545047;
	--gray-4: #47443e;
	--gray-3: #36332d;
	--gray-2: #2d2c27;
	--gray-1: #1e1d1a; /* BACKGROUND FONCÉ */
	--accent: #888; 
}
.gradient-bg,
.main-navigation .main-nav ul li.main-menu-btn a {
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 200% auto;
	transition: background-position .3s ease;
}
.gradient-bg:is(:hover, :focus, :focus-visible, :active),
.main-navigation .main-nav ul li.main-menu-btn a:is(:hover, :focus, :focus-visible, :active) {
	background-position: right center;
}
.gold-gradient {
	background-color: #947c49;
	background-image: var(--gold-gradient);
	border-color: #947c49;
	color: #fff;
	text-shadow: 2px 2px 2px rgba(0,0,0,.3);
}
.black-gradient {
	background-color: #000;
	background-image: var(--black-gradient);
	border-color: #333;
	color: #fff;
}
.gold-gradient:is(:hover, :focus, :focus-visible, :active), 
.black-gradient:is(:hover, :focus, :focus-visible, :active) {
	color: #fff;
}
.white-gradient,
.main-navigation .main-nav ul li.main-menu-btn a {
	background-color: #fff;
	background-image: var(--white-gradient);
	color: #222;
}
.white-gradient {
	border-color: #fff;
}
.white-gradient:is(:hover, :focus, :focus-visible, :active) {
	color: #222;
}
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 72px;
    font-weight: bold;
}
.gradient-border {
	border: 3px solid transparent;
	border-radius: 25px;
	background:
		linear-gradient(#a97e34, #e7bd74) padding-box,
		linear-gradient(to right, #a97e34 0%, #e7bd74 100%) border-box;
}
.primary-color {
	color: var(--btn-primary)
}
.secondary-color {
	color: var(--btn-secondary)
}
.third-color {
	color: var(--btn-third);
}
.fourth-color {
	color: var(--btn-fourth);
}
.light-bg {
	background-color: var(--base-2);
}
.cream-bg {
	background-color: var(--cream);
}
p a,
.link {
	color: var(--link);
}
.link:is(:hover, :focus, :focus-visible, :active) {
	color: #222;
}
/* ============== */
/* === BUTTON === */
/* ============== */
.btn {
	border-radius: 3px;
	border-style: solid;
	border-width: 3px;
	cursor: pointer;
	display: inline-flex;
		justify-content: center;
		align-items: center;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 40px 10px;
	text-transform: uppercase;
	white-space: nowrap;
}
.mini-btn {
	font-size: 14px;
	padding: 7px 20px 5px;
}
.btn-primary {
	background-color: var(--btn-primary);
}
.btn-secondary {
	background-color: var(--btn-secondary);
}
.btn-third {
	background-color: var(--btn-third);
}
.btn-fourth {
	background-color: var(--btn-fourth);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	color: var(--btn-primary);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
	color: var(--btn-secondary);
}
.btn-third:hover,
.btn-third:focus,
.btn-third:active {
	color: var(--btn-third);
}
.btn-fourth:hover,
.btn-fourth:focus,
.btn-fourth:active {
	color: var(--btn-fourth);
}
.btn-primary,
.btn-secondary,
.btn-third,
.btn-fourth {
	color: #fff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-third:hover,
.btn-third:focus,
.btn-third:active,
.btn-fourth:hover,
.btn-fourth:focus,
.btn-fourth:active {
	background-color: #fff;
}
.btn-txt {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
/* BOUTONS STYLE INVERSÉ */
.btn-primary.reverse {
    background-color: #fff;
    color: var(--btn-primary);
}
.btn-primary.reverse:is(:hover, :focus, :focus-visible, :active){
    background-color: var(--btn-primary);
    color: #fff;
}
.btn-secondary.reverse {
    background-color: #fff;
    color: var(--btn-secondary);
}
.btn-secondary.reverse:is(:hover, :focus, :focus-visible, :active) {
    background-color: var(--btn-secondary);
    color: #fff;
}
/* GROUPE 2 BOUTONS */
.btn-group {
	display: flex;
		justify-content: center;
		gap: 2rem;
	padding: 0;
	margin: 0;
}
.btn-group li {
	margin: 0;
}
/* ============= */
/* === FONTS === */
/* ============= */
@font-face {
    font-display: swap;
    font-family: "Lora";
    font-style: normal;
    font-weight: 400;
    src: url("assets/fonts/google/Lora-Regular.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    src: url("assets/fonts/google/Outfit-Regular.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    src: url("assets/fonts/google/Outfit-SemiBold.woff2") format("woff2");
}
.lora {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
.outfit-regular {
    font-family: "Outfit", sans-serif;
    font-style: normal;
    font-weight: 400;
}
.outfit-bold {
    font-family: "Outfit", sans-serif;
    font-style: normal;
    font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--gray-4);
	font-family: "Lora", serif;
	font-weight: 600;
	margin: 0 0 40px 0;
}
.cards h2,
.cards h3,
.footer-widgets h2, 
.footer-widgets h3,
#spaces-details h3,
h2.comments-title,
h3.comment-reply-title {
	font-family: "Outfit", sans-serif;
	text-transform: uppercase;
}
h1 { font-size: 38px; }
h2 { font-size: 34px; }
h3 { font-size: 30px; }
h4 { font-size: 26px; }
h5 { font-size: 22px; }
h6 { font-size: 19px; }
/* === FONT ICONS === */
@font-face {
    font-display: swap;
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    src:
        url('assets/fonts/fonticons/icomoon.woff2') format('woff2'),
        url('assets/fonts/fonticons/icomoon.woff') format('woff');
}
[class^="icon-"]::before, 
[class*=" icon-"]::before {
	font-family: 'icomoon' !important;
	font-size: 1.2rem;
	font-style: normal;
	text-transform: none;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	speak: never;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-arrow-down::before { content: "\e900"; }
.icon-arrow-left::before { content: "\e901"; }
.icon-arrow-right::before { content: "\e902"; }
.icon-arrow-up::before { content: "\e903"; }
.icon-arrow-up-right::before { content: "\e917"; }
.icon-arrow-up-circle::before { content: "\e904"; }
.icon-close::before { content: "\e905"; }
.icon-crown::before { content: "\e918"; }
.icon-disable::before { content: "\e915"; }
.icon-expand::before { content: "\e913"; }
.icon-email::before { content: "\e906"; }
.icon-horn::before { content: "\e916"; }
.icon-pdf::before { content: "\e919"; }
.icon-phone::before { content: "\e907"; }
.icon-pin::before { content: "\e908"; }
.icon-quote::before { content: "\e914"; }
.icon-facebook::before { content: "\e909"; }
.icon-instagram::before { content: "\e90a"; }
.icon-tiktok::before { content: "\e90b"; }
.icon-youtube::before { content: "\e90c"; }
.icon-search:before { content: "\e91a"; }
.icon-star::before { content: "\e90d"; }
.icon-half-star::before { content: "\e90e"; }
.icon-seminar::before { content: "\e90f"; }
.icon-drink::before { content: "\e910"; }
.icon-food::before { content: "\e911"; }
.icon-wine::before { content: "\e912"; }
.icon-wine-bottle::before { content: "\e90d"; }
.icon-wine-glass::before { content: "\e90e"; }
/* =============== */
/* === GENERAL === */
/* =============== */
body {
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	min-width: 360px;
}
button, input, select, textarea { font: inherit; }
.center { text-align: center; }
.left { text-align: left; }
.right { text-align:right; }
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hide,
.search-form svg,
body.home .main-title,
.error404 .entry-header,
.roy a.generate-back-to-top svg {
	display: none;
}
.padding-section {
	padding: 120px 40px;
}
.italic {
	font-style: italic;
}
ul.bullet-list {
	text-align: left;
}
ul.bullet-list > li {
    padding-left: 16px;
    position: relative;
}
ul.bullet-list > li::before {
    content: '•';
    left: 0;
    position: absolute;
    top: 3px;
}
.underline,
.nav-footer a:hover,
form.newsletter-form a {
	text-decoration: underline;
}
li > ul {
	margin-left: 0;
}
li > ul > li {
	margin-left: 0;
}
.large-text {
	color: var(--gray-5);
	font-size: 22px;
	font-style: italic;
	margin-bottom: 40px;
}
[id]:not(.accordion [id]) {
    scroll-margin-top: 100px;
}
.login h1#password-protected-logo a {
	background-image: url('https://cdn.roydespagne.be/img/roy-icon.png');
	height: 120px;
	width: 120px;
	background-size: contain;
}
/* CLASSE UTILITAIRES */
.mb {
	margin-bottom: 60px;
}
.mt {
	margin-top: 60px;
}
.mbt {
	margin: 60px 0;
}
/* BLOCK QUOTE */
blockquote {
	border: none;
	color: var(--gray-7);
	font-size: 26px;
	margin: 60px auto;
}
blockquote::after,
blockquote::before {
	content: '\e914';
	font-family: 'Icomoon';
	color: rgba(0,0,0,.1);
	font-size: 4rem;
	position: absolute;
	display: inline-block;
}
blockquote::after {
	left: -30px;
	top: -30px;
	rotate: 180deg;
}
blockquote::before {
	right: -30px;
	bottom: -30px;
}
blockquote span {
	font-size: 18px;
	font-style: normal;
	position: absolute;
		bottom: -20px;
		right: 10%;
}
/* FLOAT IMAGE */
.float-img::after {
    clear: both;
    content: "";
    display: table;
}
.float-img img {
    float: left;
    margin: 0 2rem 1rem 0;
    max-width: 300px;
    width: 100%;
}
/* VIDEOS YOUTUBE */
.video-container {
    aspect-ratio: 16 / 9;
	margin: 20px 0;
    width: 100%;
}
.video-container iframe {
    height: 100%;
    width: 100%;
}
/* CARDS */
.cards p {
	color: var(--gray-5);
	font-size: 16px;
	line-height: 24px;
	padding: 0 20px;
}
.cards > div {
	text-align: center;
}
.cards h2,
.cards h3 {
	margin: 16px 0;
	font-weight: 700;
}
.cards h2 { font-size: 20px; }
.cards h3 { font-size: 16px; }
.cards > div > img,
.cards a:has(> img),
.cards > div > picture > img,
.cards a:has(> picture > img) {
	border-radius: 4px;
}
.cards picture,
.cards img {
	height: 160px;
}
.cards a.link {
	display: inline-flex;
	margin-top: 10px;
}
/* EFFET HOVER SUR IMAGES */
a:has(> img),
a:has(> picture > img),
a.lightbox {
    display: inline-block;
    overflow: hidden;
}
a > img,
a > picture > img {
    transition: transform .3s, opacity .3s;
}
a:not(.no-effect):not(.back-home):hover > img,
a:not(.no-effect):not(.back-home):hover > picture > img,
a.lightbox:hover > img,
a.lightbox:hover > picture > img {
    transform: scale(1.1);
}
a:not(.no-effect):not(.back-home):not(.video).lightbox {
    background-color: #fff;
}
a:not(.masonry-item):not(.no-effect):not(.back-home).lightbox {
    position: relative;
}
a.lightbox:not(.video):hover > img,
a.lightbox:not(.video):hover > picture > img {
    opacity: .3;
}
a:not(.no-effect):not(.back-home):not(.video).lightbox::before,
a:not(.no-effect):not(.back-home):not(.video).lightbox::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M827.9,196H273.9v170.5h263l-340.9,341,120.6,120.5,340.9-341v263h170.5V196h0Z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.4rem;
    content: "";
    height: 1.4rem;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
    width: 1.4rem;
    z-index: 2;
}
.sub-panel li a.lightbox::before,
.sub-panel li a.lightbox::after {
	top: 43px !important;
}
.sub-panel li a.lightbox:hover img {
	transform: none;
}
a:not(.no-effect):not(.back-home):not(.video).lightbox::after {
    transform: translate(-50%, -50%) rotate(180deg);
}
a:not(.no-effect):not(.back-home):not(.video).lightbox:hover::before,
a:not(.no-effect):not(.back-home):not(.video).lightbox:hover::after {
    opacity: 1;
}
a:not(.no-effect):not(.back-home):not(.video).lightbox:hover::before {
    transform: translate(calc(-50% + 15px), calc(-50% - 15px));
}
a:not(.no-effect):not(.back-home):not(.video).lightbox:hover::after {
    transform: translate(calc(-50% - 15px), calc(-50% + 15px)) rotate(180deg);
}
/* === Glightbox === */
.glightbox-clean .gdesc-inner {
	background-color: var(--gray-3);
	color: #fff;
	font-weight: 600;
	padding: 8px 14px;
}
.lightbox.video {
	position: relative;
}
.lightbox.video::before {
    background-image: url('https://cdn.roydespagne.be/img/play-btn.png');
    background-position: center center;
    background-repeat: no-repeat;
    content: '';
    height: 104px;
    position: absolute;
        left: 50%;
        top: 50%;
    transform: translate(-50%, -50%);
    width: 104px;
    z-index: 1;
}
.cards .lightbox.video::before,
.mini-gallery .lightbox.video::before {
	background-size: 68px auto;
}
/* ============================== */
/* === WPML LANGUAGE SWITCHER === */
/* ============================== */
.roy-lang-switcher li a img,
#primary-menu .wpml-ls-current-language a .wpml-ls-flag,
.roy-lang-switcher li a:is(:hover, :focus, :focus-visible, :active) img,
#primary-menu .wpml-ls-current-language a:is(:hover, :focus, :focus-visible, :active) .wpml-ls-flag {
	transform: scale(1);
}
.roy .main-navigation ul li.wpml-ls-item ul.sub-menu {
	background-color: rgba(30,29,26,.6);
	flex-direction: column;
	top: 54px;
}
.roy .main-navigation ul li.wpml-ls-item ul.sub-menu::before {
    content: "";
    display: block;
    height: 10px;
    position: absolute;
		left: 0;
		top: -10px;
    width: 100%;
}
.roy .main-navigation ul li.wpml-ls-item ul.sub-menu li {
	margin-left: 4px;
}
.roy .main-navigation ul li.wpml-ls-item ul.sub-menu li a {
	font-size: initial;
}
.roy .main-navigation #primary-menu li.wpml-ls-current-language > a {
	pointer-events: none;
}
.roy .main-navigation ul li.wpml-ls-item ul.sub-menu li a:is(:hover, :focus, :focus-visible, :active) {
	color: var(--gold);
}
/* === CUSTOM LANG SWITCHER PHP === */
.roy-lang-switcher {
    display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		gap: 16px;
    margin: 0;
    padding: 0;
}
.roy-mobile-nav .roy-lang-switcher {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.roy-lang-switcher li {
	margin: 0;
}
.roy-lang-switcher li a,
.roy-mobile-nav .roy-lang-switcher li a {
	border: none;
    display: flex;
		align-items: center;
		flex-direction: row;
		gap: 6px;
	line-height: 14px;
	padding: 20px 10px;
    text-decoration: none;
}
.roy-lang-switcher li a img {
    display: block;
    height: auto;
    width: 20px;
}
.roy-lang-switcher li a span {
    font-size: 14px;
    font-weight: 600;
}
.site-footer .roy-lang-switcher {
	background-color: #000;
}
/* ==================== */
/* === MINI GALERIE === */
/* ==================== */
.mini-gallery {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    gap: 10px;
}
.mini-gallery a {
    aspect-ratio: 1 / 1;
    flex-basis: 130px;
    flex-grow: 1;
    max-width: 220px;
    min-width: 0;
}
.mini-gallery img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
/* EXCEPTION ESPACES */
#spaces-details .mini-gallery a {
    aspect-ratio: 180 / 130;
    flex-basis: 130px;
    max-width: 200px;
}
/* ALTERNATE ROWS */
.alternate-rows .row:has(.mini-gallery) > div:not(:has(.mini-gallery)) {
	width: calc(100% - 440px);
}
.alternate-rows .row div:has(> .mini-gallery) {
	display: flex;
	align-items: center;
	width: 440px;
}
.alternate-rows .row .mini-gallery a {
	max-width: 200px;
}
/* =============================== */
/* === SYSTEME GRID RESPONSIVE === */
/* =============================== */
/* Row container */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row.align-top {
  align-items: flex-start;
}
/* Gutters */
.row > * {
  box-sizing: border-box;
  padding: 16px;
}
/* Columns count */
.row.cols-1 > * { width: 100%; }
.row.cols-2 > * { width: 50%; }
.row.cols-3 > * { width: 33.3%; }
.row.cols-4 > * { width: 25%; }
.row.cols-5 > * { width: 20%; }
.row.cols-6 > * { width: 16.6%; }
.row.cols-2.one-two-thirds > *:first-child {
    flex: 0 0 360px;
}
.row.cols-2.one-two-thirds > *:last-child {
    flex: 1;
    min-width: 0;
}
.row.cols-2.two-one-thirds > *:first-child {
    flex: 1;
    min-width: 0;
}
.row.cols-2.two-one-thirds > *:last-child {
    flex: 0 0 360px;
}
/* ============================= */
/* === LAYOUT ALTERNATE ROWS === */
/* ============================= */
.alternate-rows {
	margin: 80px auto;
	text-align: center;
}
.alternate-rows .row img, 
.alternate-rows .row a:has(img) {
    border-radius: 4px;
    max-width: 400px;
}
.alternate-rows .row h2,
.alternate-rows .row h3,
.alternate-rows .row h4 {
    margin-bottom: 16px;
}
.alternate-rows .row p {
    margin-bottom: 16px;
}
.alternate-rows:not(.no-margin) .row:not(:last-of-type) {
    margin-bottom: 60px;
}
.alternate-rows .row > div:not(:has(img)) {
    display: flex;
		align-items: center;
        flex-direction: column;
        justify-content: center;
}
.alternate-rows .row > div.left, 
.alternate-rows .row > div.right {
	align-items: unset;
}
/* ================================================ */
/* === PAGES ECRITES DANS UN STYLE ARTICLE BLOG === */
/* ================================================ */
.article h2:not(:first-of-type) {
	margin-top: 40px;
}
.article p {
	margin-bottom: 16px;
}
.article .post-img, 
.article .mini-gallery {
	margin: 40px 0;
}
/* ============== */
/* === HEADER === */
/* ============== */
header#masthead {
    background-color: rgba(30,29,26,1);
    position: fixed;
        right: 0;
        top: 0;
    transition: background-color .3s,right .3s;
    width: 100%;
    z-index: 50;
}
body.home header#masthead,
body.scroll header#masthead {
    background-color: rgba(30,29,26,.6);
}
.main-title a {
	background-image: url("https://cdn.roydespagne.be/img/logo.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 78px;
	display: none;
	height: 44px;
	width: 80px;
	overflow: hidden;
	text-indent: -9999px;
}
body.menu-open header#masthead {
	right: 300px;
}
header#masthead .inside-header {
	padding: 10px 40px;
}
/* ================================ */
/* === NAVIGATION / MENU CUSTOM === */
/* ================================ */
/* === DÉSACTIVE BURGER NATIF GP === */
.main-navigation .menu-toggle,
.mobile-bar-items,
#mobile-header {
    display: none !important;
}
.main-navigation ul {
    display: flex !important;
}
/* === BURGER BUTTON === */
.custom-burger-toggle {
	display: flex;
		flex-direction: column;
		gap: 6px;
		justify-content: center;
    padding: 10px;
    position: fixed;
		right: 20px;
		top: 10px;
    transition: transform .3s;
    z-index: 70;
}
body.menu-open .custom-burger-toggle {
	gap: 4px;
}
.custom-burger-toggle .burger-bar {
    background-color: #fff;
    display: block;
    height: 4px;
    width: 32px;
    transform-origin: center;
    transition: transform 0.3s, opacity 0.2s;
}
.custom-burger-toggle.is-active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.custom-burger-toggle.is-active .burger-bar:nth-child(2) {
    opacity: 0;
}
.custom-burger-toggle.is-active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* === PANEL DE NAVIGATION (PUSH CONTENT) === */
.roy-mobile-nav {
    background-color: #1a1a1a;
    display: flex;
        flex-direction: column;
    height: 100vh;
    width: 320px;
    overflow-y: auto;
    padding: 60px 20px;
    position: fixed;
        right: 0;
        top: 0;
    transform: translateX(100%);
    transition: transform .3s;
    z-index: 60;
}
body.menu-open .roy-mobile-nav {
    transform: translateX(0);
}
.roy-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.roy-mobile-nav li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    padding: 10px 20px;
}
.roy-mobile-nav ul.sub-menu li {
	position: relative;
}
.roy-mobile-nav ul.sub-menu li::before {
	background-color: #777;
	content: '';
	height: 6px;
	width: 6px;
	position: absolute;
		left: 22px;
		top: 50%;
	transform: translateY(-50%);
}
.roy-mobile-nav ul.sub-menu li a {
	padding-left: 36px;
}
/* === CONTENT PUSH (TRANSITION) === */
#main-container {
    min-height: 100vh;
    position: relative;
	right: 0;
    transition: right .3s;
}
body.menu-open #main-container {
    right: 300px;
}
/* =========================== */
/* === MENUS DE NAVIGATION === */
/* =========================== */
/* FOCUS VISIBLE GLOBAL WCAG */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
#primary-menu ul li ul.keyboard-open {
    display: block;
    visibility: visible;
    opacity: 1;
}
.roy.nav-float-right #site-navigation {
    margin: 0 auto;
}
.roy .main-navigation,
.roy .main-navigation ul ul {
    background-color: transparent;
}
li.main-menu-btn {
	margin: 0 10px;
}
.roy-mobile-nav ul li > a,
.roy .main-navigation .main-nav ul li:not(.main-menu-btn) > a {
    color: var(--base-2);
    display: block;
    position: relative;
    transition: color .3s;
}
.main-navigation .main-nav ul li a {
    font-weight: 600;
	line-height: 44px;
    text-transform: uppercase;
}
.roy-mobile-nav ul li > a {
    background-color: transparent;
    transition: background-color .3s,color .3s;
}
.roy-mobile-nav li:not(.current-menu-parent):not(.main-menu-btn):is(:hover,:focus,:active,[class*="current"]) > a,
.roy .main-navigation .main-nav ul li:not(.social):not(.main-menu-btn):not(.wpml-ls-item):is(:hover,:focus,:active,[class*="current"]) > a {
	color: var(--gold);
}
.main-navigation .main-nav ul li.main-menu-btn a, 
.main-navigation .main-nav ul li.main-menu-btn a:hover, 
.main-navigation .main-nav ul li.main-menu-btn a:active, 
.main-navigation .main-nav ul li.main-menu-btn a:focus {
	border-radius: 4px;
	box-shadow: inset 0 0 0 3px #ddd;
	color: #222;
	font-weight: 700;
}
.main-navigation .main-nav ul li.main-menu-btn a span {
	margin-right: 6px;
}
/* === ICONES SOCIALES === */
.main-navigation .main-nav ul li.social a {
	padding: 0 10px;
}
.main-navigation .main-nav ul li.social a:is(:hover, :focus, :active,[class*="current"]) {
	color: var(--cream);
}
.main-navigation .main-nav ul li.social a:is(:hover, :focus, :focus-visible, :active) {
	color: var(--gold);
}
.main-navigation .social span[class^="icon-"] {
	position: relative;
	top: 2px;
}
.main-navigation li.social span.icon-facebook::before {
	font-size: 22px;
}
a.social-profile {
	display: inline-flex;
	height: 40px;
	transition: opacity .3s;
	width: 40px;
}
a.social-profile:is(:hover, :focus, :focus-visible, :active) {
	opacity: .8;
}
a.social-profile.linkedin {
	background-image: url('https://cdn.roydespagne.be/img/linkedin.png');
}
/* ==================================== */
/* === LISTE ICONES RESEAUX SOCIAUX === */
/* ==================================== */
.social-list {
    display: flex;
        align-items: center;
        justify-content: space-around;
    margin-top: 20px;
}
.social-list li {
    margin: 0;
}
.social-list a {
	background-color: #1e1d1a;
	border-radius: 50%;
    display: inline-flex;
        align-items: center;
        justify-content: center;
	padding: 10px;
}
.social-list a:is(:hover, :focus, :focus-visible, :active) {
	background-color: #56534a;
}
.social-list span {
    display: inline-flex;
}
.roy-mobile-nav .social-list a {
	border: none;
	border-radius: 0;
	margin: 20px 0;
}
.roy-mobile-nav .social-list a:is(:hover, :focus, :focus-visible, :active) {
	background-color: transparent;
}
/* ======================== */
/* === LAYOUT DES PAGES === */
/* ======================== */
section:not(.no-bg).page-intro {
	background-image: url('https://cdn.roydespagne.be/img/bg-grand-place.jpg');
	background-attachment: fixed;
	background-color: var(--gray-2);
	background-position: center top;
	background-size: auto 600px;
	color: #fff;
	padding: 120px 40px 80px;
}
.page-intro-txt a.back-home {
	display: block;
	margin-bottom: 20px;
}
.page-intro-txt a.back-home img {
	width: 220px;
}
.page-intro-txt h1 {
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
	text-transform: capitalize;
}
.page-intro-txt p {
	margin: 0 auto;
	max-width: 960px;
}
#la-roy-d-espagne-intro .page-intro-txt p {
	max-width: 600px;
}
.page-intro-txt > a.btn {
	margin-top: 30px;
}
/* ================== */
/* === BREADCRUMB === */
/* ================== */
.breadcrumb-wrapper {
	background-color: var(--base-2);
}
.breadcrumb-wrapper > nav {
	margin: 0 auto;
	max-width: 1200px;
	padding: 10px;
	font-size: 14px;
}
/* ==================== */
/* === PAGE ACCUEIL === */
/* ==================== */
#home-video {
    align-items: center;
    background-color: var(--gray-3);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
    width: 100%;
}
#home-video video {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}
/* === ACCUEIL LOGO & TEXTE === */
.home-content {
    color: #fff;
    filter: drop-shadow(2px 3px 3px rgba(0,0,0,.6));
    padding: 0 10px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.home-content img {
    height: auto;
	margin-bottom: 30px;
    width: 360px;
}
.home-content h1, 
.home-content h2 {
	color: #fff;
}
.home-content h1 {
	font-size: 48px;
	margin-bottom: 10px;
}
.home-content h2 {
	font-family: "Outfit", sans-serif;
	font-size: 32px;
	font-weight: 400;
}
.home-content p {
	font-style: italic;
	margin-bottom: 30px;
}
#home-video .btn-group a {
	min-width: 280px;
}
/* === HOME INTRO === */
#home-intro {
	position: relative;
}
/* INFO STRIP */
#info-strip {
	background-color: rgba(30,29,26,.6);
	color: #fff;
	font-size: 14px;
	padding: 8px 0;
	position: absolute;
		left: 0;
	width: 100%;
}
#info-strip .contact-infos li:not(:first-of-type) {
	margin-left: 26px;
}
.contact-infos li{
    display: flex;
    align-items: center;
}
.contact-infos li span {
	line-height: 1;
	margin-right: 10px;
}
#info-strip .contact-infos li span::before {
	font-size: 14px;
}
#info-strip a {
	color: #fff;
}
#home-intro > div > img,
#home-intro > div > picture > img {
	margin-bottom: 30px;
}
#home-intro .row a:first-of-type {
	border-radius: 4px;
	margin: 0 auto 20px;
}
#home-intro .row p {
	color: #707070;
	line-height: 22px;
	margin: 0 auto 10px;
}
#home-intro .row div:nth-child(2n) {
	margin-top: 100px;
}
#home-intro .row > * a:last-child {
    margin-top: auto;
}
/* === HOME DISHES === */
#home-dishes .good-food-label {
	margin-bottom: 40px;
}
/* === SECTION GOOGLE REVIEWS === */
.google-reviews {
	margin-top: 30px;
}
/* === DERNIERS ARTICLES BLOG === */
.last-posts.row > .post {
	display: flex;
		flex-direction: column;
	text-align: left;
}
.last-posts .post img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.last-posts .post a.post-thumbnail {
    border-radius: 8px;
    display: block;
}
.last-posts .post h3 {
    font-size: 22px;
    margin: 12px 0 8px;
}
.last-posts .post p {
    font-size: 16px;
    line-height: 1.5;
	margin-bottom: 20px;
}
.last-posts .post .btn {
	align-self: center;
	margin-top: auto;
}
/* === SECTION GOOGLE MAP === */
#map-location {
	background-image: url('https://cdn.roydespagne.be/img/bg-map.jpg');
	height: 600px;
}
#map-location {
	background-image: url(https://cdn.roydespagne.be/img/contact-map.jpg);
		background-attachment: fixed;
		background-position: center;
		background-size: cover;
	box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.5);
	height: 600px;
}
/* ===================== */
/* === PAGE LA CARTE === */
/* ===================== */
#menu-intro li {
	margin-top: 30px;
}
#menu-container {
	background-color: var(--gray-e);
	min-width: 360px;
}
.pdf-menu {
	margin-top: 80px;
}
.pdf-menu a {
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 3px 3px 4px rgba(0,0,0,.1);
	color: #222;
	display: inline-block;
	font-size: 14px;
	padding: 20px 20px 10px;
}
.pdf-menu .icon-pdf {
	display: block;
}
.pdf-menu .icon-pdf::before {
	font-size: 3rem;
	color: var(--link);
}
.pdf-menu .icon-pdf:hover::before {
	color: #222;
}
/* SLIDER IMAGES */
.menu-slider {
    box-shadow: 12px 10px var(--gray-b);
	opacity: 1;
	overflow: hidden;
    padding: 0;
    position: relative;
	transition: opacity 1s, width 1s;
}
.accordion-open .menu-slider {
	opacity: 0;
	width: 0;
}
.menu-slider .slide {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 1.6s ease;
    width: 100%;
}
.menu-slider .slide:first-child {
    position: relative;
}
.menu-slider .slide.active {
    opacity: 1;
}
.menu-slider img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.accordion-open .accordion {
	width: 100%;
}
/* ==================== */
/* === PAGE ESPACES === */
/* ==================== */
.spaces-grid-head {
	margin-bottom: 100px;
}
/* === GRILLE DES ESPACES === */
#spaces-grid {
	margin: 0 auto;
	max-width: 860px;
}
#spaces-grid .row > div {
	display: flex;
		justify-content: center;
	position: relative;
}
#spaces-grid .row > div:nth-child(2) {
    top: -80px;
}
#spaces-grid .row > div:nth-child(4) {
    left: -40px;
}
#spaces-grid .row > div:nth-child(6) {
    right: -40px;
}
#spaces-grid .row > div:nth-child(5) .space-card {
	padding: 0;
}
.roy-spaces-png {
    aspect-ratio: 220 / 340;
    background-image: url('https://cdn.roydespagne.be/img/roy-spaces.png');
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
        left: 50%;
        top: 32%;
    transform: translate(-50%, -50%);
    width: 220px;
}
.roy-spaces-png img {
    display: block;
    width: 100%;
}
.floor-zone {
    background-color: rgba(255, 255, 255, .6);
    pointer-events: none;
    position: absolute;
        left: 0;
    transition: background-color 0.3s;
    width: 100%;
}
.floor-zone.active,
.roy-spaces-png:is(:hover, :focus, :focus-visible, :active) .floor-zone {
    background-color: rgba(255, 255, 255, 0);
}
.space-card {
    border-radius: 12px;
    display: block;
	max-width: 200px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    width: 100%;
}
/* NOM DE LA SALLE EN OVERLAY */
.space-name {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    left: 0;
    padding: 8px;
    position: absolute;
    text-align: center;
    width: 100%;
}
/* === DETAILS POUR CHAQUE ESPACES === */
#spaces-details > div {
	padding: 80px 20px;
}
#spaces-details > div:nth-child(2n) {
	background-color: #fff;
}
#spaces-details h2 {
	font-size: 36px;
}
#spaces-details h3 {
	border-bottom: 1px solid #222;
	font-size: 20px;
	margin: 20px 0 10px;
	padding-bottom: 6px;
}
.space-description ul {
	text-align: left;
	list-style: inside;
	margin-bottom: 20px;
}
.space-description span[class^="icon-"] {
	margin: 0 8px;
}
#spaces-details .row div p {
	text-align: left;
}
/* === SLIDER COMMENTAIRES === */
.slider {
	position: relative;
}
.slider .glider-slide {
	display: flex;
		flex-direction: column;
		justify-content: flex-start;
	margin: 10px;
	position: relative;
}
.slider .glider-slide::before {
	color: var(--sand);
	content: '\e914';
	font-family: 'Icomoon';
	font-size: 4rem;
	position: absolute;
		left: 10px;
		top: -40px;
	text-shadow: 6px 6px 1px rgba(0,0,0,.1);
}
.slider .glider-slide div {
	background-color: #fff;
	padding: 20px 30px;
	border-radius: 12px;
}
.slider h3 {
	position: relative;
	margin-bottom: 16px;
}
.slider p {
    font-size: 16px;
    text-align: justify;
    max-height: 130px;
    overflow: hidden;
    position: relative;
    transition: max-height .3s;
}
.slider p.open {
    max-height: 1000px;
	padding-bottom: 30px;
}
.slider p span.comment-toggle {
	background-color: rgba(255,255,255,.8);
	border: none;
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 2rem;
	margin-top: 10px;
	position: absolute;
		bottom: -4px;
		left: 0;
	text-align: center;
	width: 100%;
}
.slider > div {
	margin-bottom: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
}
.slider > div::-webkit-scrollbar {
	display: none;
}
.slider button {
	position: absolute;
		top: 50%;
		transform: translateY(-50%);
}
.slider button:not(.disabled) {
	cursor: pointer;
}
.slider button.slider-prev {
	left: -40px;
}
.slider button.slider-next {
	right: -40px;
}
.slider button span {
	font-size: 2rem;
	color: var(--gray-5);
}
.slider button.disabled span {
	opacity: .5;
}
.dots button.active {
	background-color: var(--gray-5);
}
.dots .glider-dot {
	background-color: var(--gray-b);
}
.gslide-image img {
    transition: transform .3s ease;
}
/* ==================== */
/* === PAGE CONTACT === */
/* ==================== */
#contact-forms-infos ul.contact-infos, 
#contact-forms-infos .mini-map {
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}
#contact-forms-infos .tab-btn {
	background-color: var(--sand);
	border: 3px solid var(--sand);
	border-radius: 4px 4px 0 0;
	color: var(--contrast);
	margin: 0;
	padding: 10px 20px 4px;
	position: relative;
		bottom: -3px;
}
#contact-forms-infos .tab-btn:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--gray-e);
	border-bottom-color: var(--gray-e);
	padding: 10px 20px;
}
#contact-forms-infos .tab-btn.active {
	background-color: var(--gray-e);
	border: 3px solid var(--sand);
	border-bottom-color: var(--gray-e);
	color: var(--contrast);
	padding: 10px 20px;
	pointer-events: none;
}
.contact-tabs {
	background-color: var(--gray-e);
	border: 3px solid var(--sand);
	border-radius: 0 12px 12px 12px;
	padding: 24px 20px 20px;
}
.tab-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease;
}
.tab-content.active {
    grid-template-rows: 1fr;
}
.tab-content > div {
    overflow: hidden;
}
.tab-content > div > p {
	color: var(--gray-3);
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 16px;
	padding: 8px 14px;
}
.contact-tabs form textarea {
	height: 240px;
}
.contact-tabs form textarea,
.contact-tabs form input[type="text"], 
.contact-tabs form input[type="email"], 
.contact-tabs form input[type="tel"],
.contact-tabs form input[type="radio"],
.contact-tabs form input[type="checkbox"],
.contact-tabs form input[role="combobox"],
.contact-tabs form div[aria-label="Dropdown"] {
	background-color: #fff;
	border-color: var(--sand);
	border-radius: 6px;
	padding: 4px 10px;
}
.tab-content .bf-err-msg p {
	background-color: var(--red);
	color: #fff;
	font-size: 15px;
	margin-top: 8px !important;
	padding: 2px 14px;
	border-radius: 6px;
}
.contact-tabs form button[type="submit"] {
	border: 2px solid var(--gray-2);
	border-radius: 6px;
	background-color: var(--gray-2);
	margin-top: 14px;
	transition: background-color .3s, border-color .3s;
}
.contact-tabs form button[type="submit"]:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--gold);
	border-color: var(--gold);
}
#contact-forms-infos ul.contact-infos {
	background-color: var(--gray-e);
	border: 3px solid var(--sand);
	border-radius: 12px;
	color: var(--gray-5);
	margin-top: 54px;
	padding: 14px 20px;
}
#contact-forms-infos ul.contact-infos li:not(:last-child) {
	margin-bottom: 6px;
}
#contact-forms-infos .contact-infos a,
#contact-forms-infos .contact-infos a span[class^="icon-"] {
	color: var(--gray-3);
}
/* === MINI MAP === */
#contact-forms-infos .mini-map {
	border: 3px solid var(--sand);
	border-radius: 12px;
	height: 250px;
	margin-top: 20px;
	overflow: hidden;
}
#contact-forms-infos .mini-map a {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}
#contact-forms-infos .mini-map .map-bg {
	background-image: url('https://cdn.roydespagne.be/img/contact-mini-map.jpg');
	background-size: cover;
	background-position: center;
	display: block;
	height: 100%;
	width: 100%;
	transition: opacity .3s, transform .3s;
}
#contact-forms-infos .mini-map a:is(:hover, :focus, :focus-visible, :active) .map-bg {
	opacity: .4;
	transform: scale(1.1);
}
#contact-forms-infos .mini-map .map-label {
	background-color: rgba(0,0,0,.6);
	width: 100%;
	color: #fff;
	padding: 6px 0;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
/* ============================= */
/* ====== PAGE BE ROYALS ====== */
/* ============================= */
#beroyals-benefits .cards img {
	height: 200px;
}
#beroyals-pitch blockquote {
	margin-bottom: 0;
	max-width: 580px;
}
#beroyals-benefits .grid-container > p {
	margin-bottom: 30px;
}
#beroyals-events .mini-gallery {
	margin: 40px auto 30px;
}
/* ========================== */
/* ====== PAGE GALERIE ====== */
/* ========================== */
#image-gallery.padding-section {
	padding: 80px 40px;
}
/* =========================== */
/* ====== PAGE A PROPOS ====== */
/* =========================== */
#about-us-content blockquote {
	max-width: 780px;
}
/* =========================== */
/* ====== PAGE PRODUITS ====== */
/* =========================== */
.vol-au-vent h2 {
	margin: 60px 0 30px;
}
.map-be, 
.vol-au-vent p {
	margin-bottom: 30px;
}
/* ========================= */
/* ====== PAGE EQUIPE ====== */
/* ========================= */
.equipe-chefs .equipe-labels {
	margin-top: 80px;
}
.equipe-chefs .alternate-rows {
	margin-top: 40px;
}
/* ========================== */
/* ====== PAGE HISTORY ====== */
/* ========================== */
#history-notes li, 
#history-notes p {
	font-size: 14px;
}
#history-notes ol {
	margin-bottom: 40px;
}
/* ==================== */
/* ======= BLOG ======= */
/* ==================== */
body:is(.blog, .search, .archive) main#main {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 40px;
}
body:is(.blog, .search, .archive) article {
    display: flex;
    margin: 0;
}
body:is(.blog, .search, .archive) .inside-article {
    display: flex;
    flex-direction: column;
    padding: 0;
}
body:is(.blog, .search, .archive) .inside-article .entry-header {
    padding: 10px 20px;
}
body:is(.blog, .search, .archive) .inside-article h2.entry-title {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	text-align: center;
}
body:is(.blog, .search, .archive) .inside-article h2.entry-title a {
	color: var(--gray-6);
}
body:is(.blog, .search, .archive) .inside-article .post-image {
    display: flex;
    margin: 0;
    order: -1;
}
body:is(.blog, .search, .archive) .inside-article .post-image a {
    width: 100%;
}
body:is(.blog, .search, .archive) .inside-article .entry-summary {
    color: var(--gray-5);
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    padding: 0 20px;
}
body:is(.blog, .search, .archive) .inside-article .entry-summary p {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
}
body:is(.blog, .search, .archive) .inside-article .entry-summary .read-more {
    background-color: var(--gray-3);
    border-radius: 3px;
    color: #fff;
    display: block;
    font-weight: 600;
    margin: auto auto 10px;
    max-width: 120px;
    padding: 4px 10px;
    text-align: center;
    text-transform: uppercase;
}
body:is(.blog, .search, .archive) .inside-article .entry-summary .read-more:is(:hover, :focus, :focus-visible, :active) {
    background-color: var(--gold);
}
body:is(.blog, .search, .archive) .inside-article footer.entry-meta {
    margin-top: 0;
    padding: 0 20px 10px;
}
main#main .no-results form.search-form,
body:is(.blog, .search, .archive, .single) article header .entry-meta,
body:is(.blog, .search, .archive, .single) footer.entry-meta .tags-links,
body:is(.blog, .search, .archive, .single) footer.entry-meta .comments-link,
body:is(.blog, .search, .archive) #right-sidebar aside > div > div:not(.blog-search) {
    display: none;
}
body:is(.blog, .search, .archive) article .inside-article,
body:is(.blog, .search, .archive) aside .blog-search {
    box-shadow: 3px 3px 4px rgba(0,0,0,.1);
}
body:is(.blog, .search, .archive) aside .blog-search {
    padding: 0;
}
body:is(.blog, .search, .archive) #page #content {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
body:is(.blog, .search, .archive) #page #content > div {
    width: 100%;
}
main#main .no-results,
body:is(.blog, .search, .archive) main#main .page-header {
    box-shadow: 2px 2px 4px rgba(0,0,0,.1);
    grid-column: 1 / -1;
    margin: 0;
}
body:is(.blog, .search, .archive) main#main .paging-navigation {
    grid-column: 1 / -1;
}
main#main .page-header {
	box-shadow: 2px 2px 4px rgba(0,0,0,.1);
	margin: 0;
	padding: 20px;
}
main#main .page-header .page-title {
    color: var(--gray-7);
	font-size: 24px;
}
main#main .page-header .page-title span {
    color: initial;
}
main#main .page-header .page-title:not(:has(> span)) {
    color: initial;
	margin-bottom: 20px;
}
main#main .page-header p {
	font-size: 16px;
}
main#main .no-results .entry-content {
	margin: 0;
	padding: 20px;
}
/* ======================= */
/* ======= SIDEBAR ======= */
/* ======================= */
.single #right-sidebar {
	margin: 0 auto;
	min-width: 348px;
}
.sidebar .widget {
	background-color: transparent;
}
body:is(.blog, .search, .archive) #page #content > div#right-sidebar {
    order: -1;
}
#right-sidebar h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
form.blog-search-form {
	position: relative;
}
aside .blog-search form label input,
aside .blog-search form label input:is(:hover, :focus, :focus-visible, :active) {
    background-color: #fff;
	border: none;
	height: 50px;
    width: 100%;
}
aside .blog-search form button, 
aside .blog-search form button:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--gray-4);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
		align-items: center;
		justify-content: center;
	height: 54px;
	position: absolute;
		right: -2px;
		top: -2px;
	width: 54px;
}
aside .blog-search form button:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--gray-1);
}
form.search-form button,
form.search-form button:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--contrast);
	border: none;
}
aside.widget_custom_html:has(.be-royals-side-content) {
	text-align: center;
	padding: 0;
}
.single .be-royals-side,
.single main#main > article, 
.single main#main > .comments-area {
	box-shadow: var(--box-shadow);
}
.be-royals-side-content {
	background-color: #fff;
	padding: 24px;
}
.be-royals-side-banner {
	background-image: url('https://cdn.roydespagne.be/img/be-royals-banner-sidebar.jpg');
	background-repeat: no-repeat;
	display: block;
	height: 160px;
}
.be-royals-side-content h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
.be-royals-side .btn {
	margin-top: 20px;
}
/* ======================== */
/* ======= ARTICLES ======= */
/* ======================== */
.single #content {
	padding: 0 20px;
}
.single .blog-search,
.error404 .blog-search {
	margin-bottom: 20px;
}
.single .blog-search form label input,
.single .blog-search form label input:is(:hover, :focus, :focus-visible, :active) {
	box-shadow: var(--box-shadow);
}
.blog #page,
.search #page,
.single #page,
.archive #page,
.author #page,
.error404 #page {
	padding-top: 60px;
}
.single article > nav {
	background-color: var(--gray-f);
	border-radius: 10px;
	margin: 40px 0;
	padding: 16px 24px;
	position: relative;
}
.single article > nav::before {
	content: 'Sommaire';
	font-weight: 600;
	text-transform: uppercase;
	color: var(--gray-6);
}
.single article nav > ul {
	list-style: square;
	padding-left: 20px;
}
.single article nav > ul li > ul {
	list-style: disc;
}
.single article nav a {
	color: var(--link);
}
.single article nav a:is(:hover, :focus, :focus-visible, :active) {
	color: var(--contrast);
}
.single article h2 {
	margin: 40px 0;
}
.single article h3 {
	margin: 30px 0;
}
.single article p {
	margin-bottom: 16px;
}
.single article > ul {
	list-style: disclosure-closed;
	padding-left: 20px;
}
.single article > ul li {
	margin-bottom: 10px;
}
.single article dd {
	margin: 8px 0 22px;
}
.single article footer nav > div {
	display: flex;
	margin: 10px 0 0;
}
.single article footer nav span::before {
	display: none;
}
/* ESPACE COMMENTAIRES */
h2.comments-title {
	font-size: 18px;
}
h3.comment-reply-title {
	font-size: 22px;
	margin-bottom: 10px;
}
p.logged-in-as,
p.comment-form-cookies-consent {
	font-size: 16px;
	margin-bottom: 10px;
}
.comment-metadata a {
	color: var(--link);
}
.comment-metadata a:is(:hover, :focus, :focus-visible, :active) {
	color: #222;
}
.comment-body {
	padding: 10px 0;
}
.comment-content {
	padding: 0;
}
.comment-author cite {
	font-weight: 600;
}
.comment-content .reply {
	font-size: 14px;
	display: block;
}
.comment-content,
.comment .children,
.depth-1.parent > ul.children {
	border: none;
	margin: 0;
}
.comment ul.children
.depth-1.parent > ul.children {
	padding: 0 0 0 30px;
}
.single article .comment-content p {
	background-color: var(--gray-f);
	border-radius: 4px;
	margin: 12px 0;
	padding: 8px 18px;
}
.comment-content .comment-reply-link {
	background-color: var(--gray-6);
	border-radius: 3px;
	color: #fff;
	padding: 2px 8px;
}
.form-submit input[type="submit"] {
	background-color: var(--gray-3);
	border-radius: 4px;
}
.sce-edit-button-main {
	color: #fff;
	padding: 4px 14px;
	border-radius: 3px;
}
.sce-edit-button-main,
.form-submit input[type="submit"]:hover,
.comment-content .comment-reply-link:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--gold);
}
.sce-edit-button-main:is(:hover, :focus, :focus-visible, :active) {
	background-color: var(--gray-6);
	color: #fff;
}
/* =========================== */
/* ====== PAGES LEGALES ====== */
/* =========================== */
#privacy-cookies h2,
#legal-notice-terms-of-use h2 {
	margin: 30px 0;
}
#privacy-cookies h3,
#legal-notice-terms-of-use h3 {
	margin: 20px 0;
}
#privacy-cookies ul,
#legal-notice-terms-of-use ul {
	list-style: inside;
}
#privacy-cookies a,
#legal-notice-terms-of-use a {
	color: var(--link);
}
#privacy-cookies p,
#legal-notice-terms-of-use p {
	margin-bottom: 10px;
}
/* ======================== */
/* ====== ERREUR 404 ====== */
/* ======================== */
.error404 .entry-content {
	margin: 0;
}
.error-content {
	text-align: center;
}
.error-content h2 {
	margin-bottom: 20px;
	font-family: 'Outfit', sans-serif;
}
.error-content > img, 
.error-content > p {
	margin-bottom: 20px;
}
.error404 form.search-form {
	margin: 30px auto 0;
	text-align: center;
}
/* ==================== */
/* ====== FOOTER ====== */
/* ==================== */
.site-footer a:not(.btn) {
	color: #ddd;
}
.site-footer a:hover,
.roy .footer-widgets,
.roy footer.site-info {
	color: #fff;
}
.roy .footer-widgets {
	background-color: var(--gray-2);
}
.roy footer.site-info {
	background-color: var(--gray-1);
}
.footer-widgets h2, 
.footer-widgets h3 {
	color: var(--contrast-3);
}	
.footer-widgets h2 {
	font-size: 20px;
	margin-bottom: 30px;
}
.footer-widgets h3 {
	font-size: 18px;
	margin: 16px 0 8px;
}
aside.widget h2:not(:first-of-type) {
	margin-top: 30px;
}
.footer-one h2:last-of-type {
	margin-bottom: 20px;
}
.nav-footer ul li {
	list-style: outside;
}
.footer-two ul li {
	margin: 0;
}
.nav-footer {
	max-width: 320px;
}
.roy .footer-bar-active .inside-site-info {
	flex-direction: column;
}
.roy .footer-bar-active .footer-bar {
	margin-bottom: 10px;
}
.roy .footer-bar-align-right .copyright-bar {
	color: #888;
	margin-right: 0;
	order: unset;
}
.beroyals-footer p {
	line-height: 26px;
	padding: 10px 0 20px;
}
/* ============================= */
/* === FORMULAIRE NEWSLETTER === */
/* ============================= */
form.newsletter-form {
	background-color: var(--gray-4);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	padding: 10px 20px;
}
form.newsletter-form > * {
	margin-bottom: 10px;
}
form.newsletter-form p {
	font-size: 16px;
	line-height: 20px;
}
#error-message,
#success-message {
	border-radius: 6px;
	padding: 4px 14px;
}
#error-message {
	background-color: #9E3636;
}
#success-message {
	background-color: #439E36;
}
#error-message,
#success-message,
.input--hidden {
	display: none;
}
form.newsletter-form input[type="text"], 
form.newsletter-form input[type="email"] {
	border: none;
	border-radius: 4px;
	padding: 6px 12px;
}
.newsletter-consent {
    display: flex;
        align-items: flex-start;
    gap: 12px;
}
.newsletter-consent input[type="checkbox"] {
	margin-top: 5px;
	transform: scale(1.5);
}
.newsletter-consent span,
.newsletter-consent span a {
	font-size: 15px;
	color: #fff;
}
form.newsletter-form .btn {
	padding: 8px 40px;
	margin: 20px auto 0;
}
.nl-message {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease;
}
.nl-message.visible {
    grid-template-rows: 1fr;
}
.nl-message > span {
	font-size: 16px;
	line-height: 20px;
	overflow: hidden;
}
.nl-error,
.nl-success {
	border-radius: 3px;
	color: #fff;
	padding: 10px;
	text-align: center;
}
.nl-success {
	background-color: var(--dark-green);
}
.nl-error {
	background-color: var(--dark-red);
}
.btn.loading {
    color: transparent;
    pointer-events: none;
    position: relative;
}
.btn.loading::after {
    animation: spin 0.8s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    content: '';
    height: 16px;
    width: 16px;
    position: absolute;
        left: 50%;
        top: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* === LIEN RETOUR HAUT DE PAGE === */
.roy a.generate-back-to-top {
	background-color: var(--gray-5);
	border-radius: 50%;
}
/* ============================================== */
/* === FORMULAIRE NEWSLETTER MODALE BE ROYALS === */
/* ============================================== */
.beroyals-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.4s, visibility 0.4s;
    visibility: hidden;
    width: 100%;
    z-index: 60;
}
body.beroyals-open .beroyals-modal {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.beroyals-modal-inner {
    background-color: var(--base-2);
    border-radius: 8px;
    max-height: 90vh;
    max-width: 480px;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s;
    width: 90%;
}
body.beroyals-open .beroyals-modal-inner {
    transform: translateY(0);
}
.close-beroyals-modal {
    background: none;
    border: none;
    color: var(--gray-6);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    transition: color 0.2s;
}
.close-beroyals-modal:is(:hover, :focus, :focus-visible, :active) {
    color: var(--gray-3);
}
.beroyals-modal-content {
    text-align: center;
}
body .beroyals-modal-content .icon-crown::before {
	font-size: 60px;
}
.beroyals-modal-content h2 {
    margin-bottom: 0.5rem;
}
.beroyals-modal-content > p {
    color: var(--gray-7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.beroyals-modal .newsletter-form input[type="text"],
.beroyals-modal .newsletter-form input[type="email"] {
	background-color: #fff;
    margin-bottom: 0.75rem;
    width: 100%;
}
.beroyals-modal .newsletter-form button[type="submit"] {
    margin-top: 0.5rem;
    width: 100%;
}
/* ======================== */
/* === FENETRES MODALES === */
/* ======================== */
.allergens-modal,
.reservation-modal {
    border-radius: 10px;
    max-height: 86vh;
    opacity: 0;
    overflow-y: auto;
    padding: 44px 20px 20px 20px;
    position: fixed;
        left: 50%;
        top: -200%;
    transform: translateX(-50%);
    transition: opacity .5s ease;
    width: calc(100% - 40px);
    z-index: 999;
}
body.allergens-open .allergens-modal,
body.reservation-open .reservation-modal {
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}
.reservation-modal {
    background-color: #eaddae;
    max-width: 480px;
}
.allergens-modal {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    overflow-y: hidden;
    padding: 0;
}
.allergens-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 44px 20px 20px 20px;
}
.close-allergens-modal,
.close-resa-modal {
    position: absolute;
        right: 16px;
        top: 14px;
}
.close-allergens-modal span,
.close-resa-modal span {
    cursor: pointer;
}
.reservation-modal .warning p {
	border: 1px solid #000;
	color: #222;
	font-size: .8em;
	line-height: 16px;
	margin-top: 20px;
	padding: 10px;
}
.allergens-content h2 {
	margin-bottom: 10px;
}
.allergens-content .row p {
	color: var(--gray-6);
	line-height: 16px;
	font-size: 16px;
	font-weight: 600;
	margin-top: 4px;
}
/* ====================== */
/* === OVERLAY GLOBAL === */
/* ====================== */
.global-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    position: fixed;
        left: 0;
        top: 0;
    transition: opacity 0.4s, visibility 0.4s;
    visibility: hidden;
    z-index: 55;
}
.global-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
/* ================== */
/* === RESPONSIVE === */
/* ================== */
@media (orientation: landscape) and (max-height: 500px) {
    #home-video {
        min-height: 600px;
    }
}
@media (min-width: 1921px) {
    header#masthead {
        left: 50%;
        transform: translateX(-50%);
        width: 1920px;
    }
    .custom-burger-toggle {
        right: calc(50vw - 940px);
    }
    .roy-mobile-nav {
        opacity: 0;
        right: calc(50vw - 960px);
        transform: translateX(100%);
        transition: opacity .3s, transform 0s .3s;
    }
    body.menu-open .roy-mobile-nav {
        opacity: 1;
        transform: translateX(0);
        transition: opacity .3s, transform 0s;
    }
    body.menu-open header#masthead,
    body.menu-open #main-container {
        right: unset;
        transform: translateX(-50%);
    }
    #main-container {
        left: 50%;
        max-width: 1920px;
        position: relative;
        transform: translateX(-50%);
        width: 100%;
    }
} /* FIN MIN 1920PX */
@media (min-width: 1200px) {
	.space-gallery.mini-gallery {
		width: 580px;
	}
} /* FIN MIN 1200PX */
@media (max-width: 1024px) {
	.home-content img {
		margin-bottom: 20px;
		width: 320px;
	}
	.home-content h1 {
		font-size: 32px;
	}
	.home-content h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.home-content p {
		display: none;
	}
	.btn {
		padding: 8px 20px;
	}
	.roy .icon-close.close-panel {
		bottom: 60px;
		left: auto;
		right: 30px;
		top: auto;
	}
} /* FIN MAX 10240PX */
@media (max-width: 960px) {
	h1 { font-size: 36px; }
	h2 { font-size: 32px; }
	h3 { font-size: 26px; }
	h4 { font-size: 24px; }
	h5 { font-size: 21px; }
	h6 { font-size: 18px; }
	.main-nav .top-nav-elmt {
		display: none;
	}
	#home-intro .grid-container .row {
		justify-content: center;
	}
	#home-intro .grid-container .row > div {
		min-width: 50%;
	}
	.inside-footer-widgets > div.footer-widget-3 {
		display: none;
	}
	body:is(.blog, .search, .archive)  main#main {
        grid-template-columns: repeat(3, 1fr);
    }
	.single .site-content {
		display: block;
	}
	.single .container .site-content .content-area {
		width: auto;
	}
	.single .is-left-sidebar.sidebar, 
	.single .is-right-sidebar.sidebar {
		order: initial;
	}
	.large-text {
		font-size: 20px;
	}
    .alternate-rows .row:has(.mini-gallery) > div:not(:has(.mini-gallery)),
    .alternate-rows .row div:has(> .mini-gallery) {
        width: 100%;
    }
    .alternate-rows .row div:has(.mini-gallery) {
        display: block;
        order: -1;
    }
} /* FIN MAX 960PX */
@media (max-width: 920px) {
	.alternate-rows .cols-2 > div:has(img) {
		margin-top: 14px;
	}
	.alternate-rows .row img, 
	.alternate-rows .row a:has(img) {
		max-width: 200px;
	}
} /* FIN MAX 920PX */
@media (min-width: 601px) and (max-width: 920px) {
	.alternate-rows .cols-2 > div:has(img) {
		width: 240px;
	}
	.alternate-rows .cols-2 > div:not(:has(img)) {
		width: calc(100% - 240px);
	}	
}
@media (max-width: 860px) {	
	#spaces-details .space-description,
	#spaces-details .mini-gallery {
		width: 100%;
	}
	#spaces-details .mini-gallery {
		order: -1;
	}
    .row.cols-2.one-two-thirds > *:first-child,
    .row.cols-2.one-two-thirds > *:last-child,
    .row.cols-2.two-one-thirds > *:first-child,
    .row.cols-2.two-one-thirds > *:last-child {
        flex: 0 0 100%;
    }
}
@media (max-width: 820px) {
	.roy.nav-float-right #site-navigation {
		margin: 0 auto 0 0;
	}
	header#masthead .inside-header {
		padding: 10px 30px;
	}
	.main-navigation .main-nav ul li.main-menu-btn {
		margin-left: 0;
	}
	section:not(.no-bg).page-intro {
		background-image: url('https://cdn.roydespagne.be/img/bg-grand-place-mob.jpg');
	}
	.page-intro-txt a.back-home img {
		width: 160px;
	}
	.page-intro-txt p {
		font-size: 16px;
	}
	#home-last-posts .row.cols-3 > article {
		width: 50%;
	}
	#home-last-posts article:last-of-type {
		display: none;
	}
	#map-location {
		background-image: url('https://cdn.roydespagne.be/img/contact-map-mob.jpg');
		background-attachment: unset;
		height: 400px;
	}
} /* FIN MAX 820PX */
@media (max-width: 800px) {
	#menu-container .row > div {
		width: 100%;
	}
	#menu-container .row > div.menu-slider {
		display: none;
	}
	.pdf-menu {
		margin-top: 40px;
	}
	.padding-section {
		padding: 80px 40px;
	}
	.row.cols-4 > * {
		width: 50%;
	}
	.spaces-grid-head {
		margin-bottom: 30px;
	}
	.roy #spaces-grid .row > div {
		position: unset;
	}
	#spaces-grid .row div:nth-child(5),
	#spaces-grid .row div:nth-child(10),
	#spaces-grid .row div:nth-child(12) {
		display: none;
	}
	.alternate-rows:not(.no-margin) .row:not(:last-of-type) {
		margin-bottom: 60px;
	}
	.alternate-rows {
		margin: 40px auto;
	}
	.alternate-rows .cols-2 > div:has(img),
	.alternate-rows .cols-2 > div:not(:has(img)) {
		width: 100%;
	}
	.alternate-rows .cols-2 > div:has(img) {
        order: -1;
    }
	.cards > div:not(:last-of-type) {
		margin-bottom: 40px;
	}
} /* FIN MAX 800PX */
@media (max-width: 768px) {
	.inside-footer-widgets {
		flex-direction: row;
	}
	body:is(.blog, .search, .archive)  main#main {
        grid-template-columns: repeat(2, 1fr);
    }
} /* FIN MAX 768PX */
@media (max-width: 720px) {
	section#beroyals-tiers .row.cols-3 > div {
		width: 100%;
	}
	.home-content img {
		width: 280px;
	}
	.home-content h1 span, 
	.home-content h2 span,
	.btn-group {
		display: block;
	}
	.btn-group li:first-child {
		margin-bottom: 10px;
	}
	#menu-intro .btn-group {
		display: none;
	}
	#image-gallery.padding-section {
		padding: 60px 30px;
	}
} /* FIN MAX 720PX */
@media (min-width: 622px) and (max-width: 761px) {
	#spaces-details .mini-gallery {
		margin: 0 auto;
		max-width: 580px;
	}
}
@media (min-width: 601px) { /* MIN 601PX */
	#home-video {
		background-image: url('https://cdn.roydespagne.be/img/roy-poster.webp');
	}
	#info-strip {
		top: -38px;
	}
	.mobile-reservation-btn {
		display: none !important;
	}
} /* FIN MIN 601PX */
@media (max-width: 600px) {
	h1 { font-size: 32px; }
	h2 { font-size: 28px; }
	h3 { font-size: 24px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 17px; }
	.row > * {
		padding: 8px;
	}
	.home-content img {
		width: 240px;
	}
	#home-video {
		background-image: url('https://cdn.roydespagne.be/img/roy-poster-mobile.webp');
	}
	#primary-menu > ul > li > a .wpml-ls-native,
	.home-content .btn-group {
		display: none;
	}
	.roy .main-navigation ul li.wpml-ls-item ul.sub-menu {
		left: -80px;
	}
	#info-strip {
		background-color: #222;
		top: 0;
	}
	.accordion h2 {
		font-size: 24px;
	}
	.accordion h3 {
		font-size: 16px;
		font-weight: 600;
	}
	/* BOUTONS RESERVATION MOBILES */
    body {
        padding-bottom: 54px; /* EGAL A LA HAUTEUR DE LA BARRE DES BOUTONS */
    }	
	.mobile-reservation-btn {
		border-top: 3px solid #000;
		position: fixed;
			bottom: 0;
			left: 0;
			right: 0;
		z-index: 9;
	}
	.mobile-reservation-btn a {
		font-size: 14px;
		padding: 16px 0 14px;
		text-transform: uppercase;
	}
	.mobile-reservation-btn a.btn-left {
		border-right: 3px solid #000;
	}
	#home-intro > div > p {
		font-size: 18px;
	}
	.generate-back-to-top {
		bottom: 60px;
		right: 10px;
	}
	#home-last-posts .row.cols-3 > article {
		padding: 0;
		width: 100%;
	}
	#home-last-posts article:first-of-type {
		margin-bottom: 40px;
	}
	.inside-footer-widgets {
		flex-direction: column;
	}
	.roy .icon-close.close-panel {
		bottom: 84px;
		right: 10px;
	}
	.space-card {
		border-radius: 6px;
	}
	.large-text {
		font-size: 18px;
	}
	.float-img img {
		max-width: 200px;
	}
} /* FIN MAX 600PX */
@media (max-width: 580px) {
	#info-strip .contact-infos li:nth-child(1) {
		display: none;
	}
	#info-strip .contact-infos li:nth-child(2) {
		margin-left: 0;
	}
	.main-navigation .main-nav ul li.main-menu-btn a {
		border-radius: 0;
		box-shadow: unset;
		font-size: 14px;
		line-height: unset;
		padding: 4px 6px 2px;
	}
	.main-navigation .main-nav ul li.main-menu-btn a:is(:hover, :focus, :focus-visible, :active) {
		border-radius: 0;
		box-shadow: unset;
	}
} /* FIN MAX 580PX */
@media (max-width: 480px) {
	body {
		font-size: 16px;
		padding-bottom: 44px;
	}
	h1 { font-size: 28px; }
	h2 { font-size: 26px; }
	h3 { font-size: 22px; }
	h4 { font-size: 20px; }
	h5 { font-size: 18px; }
	h6 { font-size: 16px; }
	.separate-containers .inside-article, 
	.separate-containers .comments-area, 
	.separate-containers .page-header, 
	.separate-containers .paging-navigation, 
	.one-container .site-content, 
	.inside-page-header {
		padding: 20px;
	}
	.row.cols-4 > * {
		width: 100%;
	}
	#roy-mobile-nav {
		padding: 40px 30px 60px;
	}
	.padding-section {
		padding: 80px 20px;
	}
	.custom-burger-toggle {
		right: 10px;
		top: 0px;
	}
	header#masthead .inside-header {
		padding: 0 10px;
	}
	.roy .main-navigation ul li.wpml-ls-item ul.sub-menu {
		top: 44px;
	}
	.mobile-reservation-btn a {
		padding: 12px 0 10px;
	}
	.mobile-reservation-btn,
	.mobile-reservation-btn a.btn-left {
		border-width: 2px;
	}
	#home-intro .grid-container .row > div {
		margin-top: 0;
	}
	#home-intro .grid-container .row > div:not(:last-of-type) {
		margin-bottom: 40px;
	}
	#spaces-intro a.btn {
		display: none;
	}
	#spaces-details .mini-gallery {
		margin: 0 auto 20px;
		max-width: 360px;
	}
	.allergens-modal {
		max-width: 320px;
	}
	.allergens-modal .row.cols-4 > div {
		width: 50%;
	}
	blockquote {
		font-size: 22px;
	}
	blockquote:has(> span) {
		margin: 90px auto;
	}
	blockquote::after {
		left: -10px;
		top: -50px;
	}
	blockquote::before {
		bottom: -50px;
		right: -10px;
	}
	blockquote span {
		bottom: -50px;
		font-size: 16px;
		right: 50%;
		transform: translateX(50%);
		width: 100%;
	}
	body:is(.blog, .search, .archive)  main#main {
        grid-template-columns: 1fr;
    }
	#image-gallery.padding-section {
		padding: 40px 20px;
	}
	.large-text {
		line-height: 24px;
	}
	.mini-gallery:not(.space-gallery) {
		max-width: 400px;
	}
	#spaces-details .mini-gallery a {
		flex-basis: 80px;
		max-width: 96px;
	}
	body:is(.blog, .search, .archive) .inside-article .entry-header {
		text-align: center;
	}
	body:is(.blog, .search, .archive) .inside-article .entry-summary {
		line-height: unset;
	}
    body:is(.blog, .search, .archive) .inside-article .entry-summary p {
        display: block;
        font-size: 0;
    }
    body:is(.blog, .search, .archive) .inside-article .entry-summary .read-more {
        font-size: 14px;
        margin: 10px auto;
    }
} /* FIN MAX 480PX */
@media (max-width: 478px) {
	#spaces-grid .cols-3 > div {
		margin: 0 auto;
		width: 50%;
	}	
	.main-nav .main-menu-btn span {
		display: none;
	}
	.main-navigation .main-nav ul li.main-menu-btn a {
		font-size: 12px;
	}
} /* FIN MAX 478PX */
@media (max-width: 440px) {
	#home-intro .grid-container .row > div {
		margin: 0;
		min-width: 100%;
	}
	.home-content h1 {
		font-size: 30px;
	}
	#home-intro .row img {
		max-width: 200px;
	}
	.float-img img {
		float: none;
		margin: 0 auto 30px;
	}
} /* FIN MAX 440PX */
@media (max-width: 420px) {
	#primary-menu .dropdown-menu-toggle {
		display: none;
	}
	.contact-tabs {
		border-radius: 0 0 12px 12px;
	}
	#contact-forms-infos .tab-btn,
	#contact-forms-infos .tab-btn.active,
	#contact-forms-infos .tab-btn:is(:hover, :focus, :focus-visible, :active),
	#contact-forms-infos .tab-btn.active:is(:hover, :focus, :focus-visible, :active) {
		font-size: 14px;
		padding: 6px 8px;
	}
} /* FIN MAX 390PX */
@media (max-width: 375px) {
	.home-content h1 {
		font-size: 28px;
	}
	.main-navigation #primary-menu li.social a span.icon-facebook::before {
		font-size: 16px;
	}
		.main-navigation #primary-menu li.social a span::before {
		font-size: 14px;
	}
	.main-navigation #primary-menu li.social a {
		padding: 0 8px;
	}
} /* FIN MAX 375PX */
@media (max-width: 360px) {
	h1 { font-size: 24px; }
	h2 { font-size: 22px; }
	h3 { font-size: 20px; }
	h4 { font-size: 18px; }
	h5 { font-size: 17px; }
	.separate-containers .inside-article, 
	.separate-containers .comments-area, 
	.separate-containers .page-header, 
	.separate-containers .paging-navigation, 
	.one-container .site-content, 
	.inside-page-header {
		padding: 10px;
	}
	.row > * {
		padding: 4px;
	}
	.home-content h1 {
		font-size: 26px;
	}
	.home-content h2 {
		font-size: 18px;
	}
	.mobile-reservation-btn span,
	#info-strip .contact-infos li:nth-child(2) {
		display: none;
	}
	#info-strip .contact-infos li:nth-child(3) {
		margin-left: 0;
	}
	#menu-container.padding-section {
		padding: 30px 10px;
	}
	.single #content,
	body:is(.blog, .search, .archive)  #page #content {
		padding: 0 10px;
	}
	blockquote {
		font-size: 20px;
	}
} /* FIN MAX 360PX */