/*
Theme Name: Grenadebar
Theme URI: https://www.grenadebar.ca/
Author: Nuagelab
Author URI: https://nuagelab.com
Description: Thème personnalisé pour Resto-bar Grenade - Brasserie orientale sur le Plateau Mont-Royal
Version: 1.0.0
Text Domain: grenadebar
*/
:root {
  --color-black: #0a0a0a;
  --color-dark: #1a1a1a;
  --color-dark-overlay: rgba(0, 0, 0, 0.7);
  --color-white: #ffffff;
  --color-light: #f5f5f5;
  --color-accent: #c4a35a;
  --color-accent-dark: #a88a3d;
  --color-gray: #888888;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Karla', sans-serif;
  --font-accent: 'Great Vibes', cursive;
  --container-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: rgba(255, 123, 15, 0.63);
  background-image: url('assets/images/pattern-bg.jpg');
  background-position: 50%;
  background-size: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #c4a35a;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: 1.25rem;
}
.accent-text {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.5rem;
  color: #c4a35a;
  display: block;
  margin-bottom: 0.5rem;
}
.grey-text {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  margin-bottom: 24px;
  text-align: justify;
}
.divider {
  width: 70px;
  height: 4px;
  margin: 16px auto;
  background-color: rgba(223, 162, 95, 0.8);
  border: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.section {
  padding: 6rem 0;
}
.section--dark {
  background-color: #1a1a1a;
}
.section--black {
  background-color: #0a0a0a;
}
.section--overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section--overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.section--overlay > .container {
  position: relative;
  z-index: 1;
}
.section--accent {
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.1), rgba(196, 163, 90, 0.05));
  border-top: 1px solid rgba(196, 163, 90, 0.3);
  border-bottom: 1px solid rgba(196, 163, 90, 0.3);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}
.section-header p + p {
  margin-top: 1rem;
}
.section-cta {
  text-align: center;
  margin-top: 4rem;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-columns--reverse .column-content {
  order: 2;
}
.two-columns--reverse .column-image {
  order: 1;
}
.column-content h2 {
  margin-bottom: 1rem;
}
.column-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}
.column-content p:last-of-type {
  margin-bottom: 2rem;
}
.column-image {
  position: relative;
  overflow: hidden;
}
.column-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.column-image:hover img {
  transform: scale(1.05);
}
.content-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.content-block h2 {
  margin-bottom: 1.5rem;
}
.content-block .accent-text {
  margin-bottom: 0.5rem;
}
.content-block p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
}
.content-block .btn {
  margin-top: 1rem;
}
.content-block--left {
  text-align: left;
}
.content-text {
  margin-bottom: 1rem;
}
.image-section {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.image-divider {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.promo-card {
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid #c4a35a;
  padding: 4rem;
  text-align: center;
}
.promo-card h3 {
  color: #c4a35a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.promo-card p {
  opacity: 0.9;
  line-height: 1.6;
}
.frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #e3e3e3;
  pointer-events: none;
  z-index: 0;
}
.frame.white-frame {
  inset: 8px;
  border-color: #ffffff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
  border: 1px solid #ffffff;
  border-radius: 30px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn:hover {
  background-color: #ffffff;
  color: #0a0a0a;
}
.btn--primary {
  background-color: #5a8f5a;
  border-color: #5a8f5a;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #4a7a4a;
  border-color: #4a7a4a;
  color: #ffffff;
}
.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}
.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}
.button.small-button {
  background-color: #86a579;
  color: #ffffff;
  font-size: 13px;
  padding: 10px 24px;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button.small-button.white-hover-button:hover {
  background-color: #6b8f5e;
}
.button.bookbutton {
  background-color: #86a579;
  color: #ffffff;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  padding: 12px 32px;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button.bookbutton:hover {
  background-color: #729165;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  background: transparent;
  transition: background-color 0.3s ease;
  transform: translateY(0);
}
.site-header--visible,
.site-header.scrolled {
  background: #c9a882;
}
.site-header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.site-logo img {
  height: 50px;
  width: auto;
}
.main-navigation ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-navigation li {
  position: relative;
  border: none;
}
.main-navigation a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  display: block;
  position: relative;
  border: none;
  border-left: none;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c02231;
  transition: width 0.3s ease;
}
.main-navigation a:hover {
  color: #ffffff;
}
.main-navigation a:hover::after {
  width: 100%;
}
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
  width: 100%;
}
.main-navigation .menu-item:last-child a,
.main-navigation a[href*="reserv"],
.main-navigation a[href*="reserver"] {
  background-color: #86a579;
  color: #ffffff;
  height: 40px;
  padding: 10px 24px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 24px;
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  text-transform: none;
}
.main-navigation .menu-item:last-child a:hover,
.main-navigation a[href*="reserv"]:hover,
.main-navigation a[href*="reserver"]:hover {
  background-color: #769a69;
}
.main-navigation .menu-item:last-child a::after,
.main-navigation a[href*="reserv"]::after,
.main-navigation a[href*="reserver"]::after {
  display: none;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.header-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.header-social {
  display: flex;
  gap: 0.75rem;
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.header-social a:hover {
  color: #c4a35a;
}
.header-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 5;
}
.hero-center-content {
  position: absolute;
  top: 13%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 66.66%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  text-align: center;
  z-index: 10;
  color: #fff;
}
.hero-logo {
  margin-top: -1px;
  margin-bottom: -1px;
}
.hero-logo img {
  width: 31%;
  height: auto;
  margin: 0 auto;
}
.hero-text {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #ffffff;
  line-height: 37px;
  margin-top: 1px;
  margin-bottom: 1em;
}
.hero-text p {
  margin: 0;
}
.hero-description {
  max-width: 600px;
  margin: 16px auto 25px;
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
  text-transform: none;
}
.hero-description p {
  margin: 0;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 20;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.hero-arrow:hover {
  opacity: 1;
}
.hero-arrow--left {
  left: 1.5rem;
}
.hero-arrow--right {
  right: 1.5rem;
}
.hero-arrow img {
  width: 50px;
  height: 50px;
  filter: invert(1);
}
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}
.hero-phone:hover {
  color: #c4a35a;
}
.hero-phone-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.hero-social {
  display: flex;
  gap: 12px;
}
.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #ffffff;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.hero-social-link:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}
.hero-social-link img {
  width: 20px;
  height: 20px;
}
.hero-scroll {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 96px;
  height: 40px;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 11px;
  background-image: url('assets/images/hero-scroll-base.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 96px;
}
.hero-scroll:hover {
  opacity: 0.9;
}
.hero-scroll img {
  width: 16px;
  height: 16px;
  filter: invert(1) brightness(0.3);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero--small {
  min-height: 50vh;
  padding-top: 100px;
}
.hero--small .hero-content {
  padding-top: 2rem;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
.about-section {
  margin-top: 61px;
  padding: 0 56px;
  background-color: transparent;
}
.about-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.side-card-feature {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0 15px;
}
.side-card-image {
  flex: 0 1 auto;
  width: 550px;
  min-height: 750px;
  background-size: cover;
  background-position: 50% 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.side-card {
  width: 538px;
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 94px;
  position: relative;
  margin-right: -50px;
  z-index: 1;
  align-self: center;
  height: fit-content;
}
.side-card-content {
  position: relative;
  z-index: 1;
  padding: 0;
}
.side-card-header {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 36px;
  margin-bottom: 8px;
  text-align: center;
}
.food-section {
  margin-top: 61px;
  padding: 0 56px;
  background-color: transparent;
  position: relative;
  overflow: visible;
}
.food-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.side-image-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.side-image {
  flex: 0 1 auto;
  width: 420px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.side-image-content {
  flex: 0 1 auto;
  width: 560px;
  background-color: #ffffff;
  padding: 94px 57px;
  margin-left: 50px;
  align-self: center;
  height: fit-content;
}
.heading-10 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 36px;
  margin-bottom: 12px;
  text-align: center;
}
.drink-section {
  margin-top: 61px;
  padding: 0 56px;
  background-color: transparent;
  position: relative;
  overflow: visible;
}
.drink-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.side-card-feature.reversed {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: flex-start;
}
.side-card-image.side-card-image--2 {
  width: 550px;
  min-height: 750px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.side-card.reversed {
  width: 538px;
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 94px;
  margin-left: 0;
  margin-right: -50px;
  position: relative;
  z-index: 1;
  align-self: center;
  height: fit-content;
}
.grid-section {
  margin-top: 61px;
  padding: 0 56px 66px;
  background-color: transparent;
  position: relative;
}
.grid-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.feature-image {
  flex: 1 1 45%;
  height: 384px;
  margin: 0 15px 30px;
  padding: 32px 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: 960px;
  background-position: 50% 50%;
  text-align: center;
}
.feature-image-header {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}
.p-grid {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 400px;
}
.feature-text {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px 40px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.feature-text .grey-text {
  max-width: 800px;
  text-align: center;
}
.feature-banner {
  display: none;
}
.feature-banner-content {
  position: relative;
  z-index: 1;
}
.badge.banner-badge {
  font-family: 'Karla', sans-serif;
  font-size: 19px;
  color: #ffffff;
  padding: 0 8px;
  display: block;
  margin-bottom: 8px;
}
.text-block-3 {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background-color: #f5f5f5;
  color: #1a1a1a;
  position: relative;
}
.section-grid--pattern::before,
.section-grid--pattern::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: repeating-linear-gradient(-45deg, #d4b896, #d4b896 2px, #c9a882 2px, #c9a882 4px);
}
.section-grid--pattern::before {
  left: 0;
}
.section-grid--pattern::after {
  right: 0;
  background: repeating-linear-gradient(45deg, #d4b896, #d4b896 2px, #c9a882 2px, #c9a882 4px);
}
.section-grid__item {
  padding: 3rem 4rem;
  padding-left: 80px;
}
.section-grid__item:nth-child(2) {
  padding-left: 4rem;
  padding-right: 80px;
}
.section-grid__item h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-grid__item p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
.section-grid__item .btn {
  margin-top: 1rem;
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.section-grid__item .btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}
.section-grid__item--promo {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  background: rgba(196, 163, 90, 0.1);
}
.section-grid__item--happy-hour,
.section-grid__item--events {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.section-grid__item--happy-hour h2,
.section-grid__item--events h2 {
  color: #ffffff;
}
.section-grid__item--happy-hour p,
.section-grid__item--events p {
  color: rgba(255, 255, 255, 0.9);
}
.section-grid__item--happy-hour .btn,
.section-grid__item--events .btn {
  color: #ffffff;
  border-color: #ffffff;
}
.section-grid__item--happy-hour .btn:hover,
.section-grid__item--events .btn:hover {
  background: #ffffff;
  color: #1a1a1a;
}
.section-grid__item--decor-text {
  background: linear-gradient(135deg, #d4c4a8, #c9b896);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-grid__item--decor-text p {
  color: #4a4a4a;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0;
}
.section-grid__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.section-grid__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.promo-box {
  text-align: center;
  max-width: 500px;
}
.promo-box h3 {
  color: #a88a3d;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.promo-box p {
  color: #666;
  font-size: 0.9rem;
}
.section-grid__item--promo {
  position: relative;
  background-size: cover;
  background-position: center;
  grid-column: span 1;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-grid__item--promo .promo-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  text-align: center;
  max-width: 350px;
}
.section-grid__item--promo .promo-box h3 {
  color: #a88a3d;
}
.section-grid__item--promo .promo-box p {
  color: #666;
}
.decor-section {
  height: 810px;
  margin-top: 0;
  padding: 120px 40px;
  background-color: #111111;
  background-size: auto, cover;
  background-position: 0px 0px, 50% 50%;
  background-attachment: scroll, fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.decor-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
.decor-section .cta-content {
  max-width: 1039px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.decor-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.decor-section .divider--white {
  width: 70px;
  height: 4px;
  background-color: rgba(223, 162, 95, 0.8);
  margin: 8px auto 24px;
}
.decor-section .section-description {
  font-family: 'Karla', sans-serif;
  font-size: 19px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 40px;
}
.section-split {
  display: flex;
  min-height: 600px;
  background-color: #e8dfd0;
  color: #1a1a1a;
  position: relative;
}
.section-split--pattern {
  position: relative;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4c4a8' fill-opacity='0.4'%3E%3Cpath d='M20 0C10 10 0 20 0 30c10-5 20-10 30-10 5 0 10 5 10 10s-5 10-10 10c-10 0-20-5-30-10 0 10 10 20 20 30 10-10 20-20 30-20 5 0 10 5 10 10s-5 10-10 10c-10 0-20-10-30-20-5 10-10 20-10 30 10-5 20-10 30-10 5 0 10 5 10 10s-5 10-10 10c-10 0-20-5-30-10'/%3E%3C/g%3E%3C/svg%3E"), linear-gradient(135deg, #e8dfd0 0%, #ddd2c0 100%);
  background-size: 80px 80px, 100% 100%;
}
.section-split--pattern::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, #c9a882 0%, #d4b896 30%, #c9a882 60%, #d4b896 100%);
  left: 0;
  z-index: 1;
}
.section-split--pattern::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to left, #c9a882 0%, #d4b896 30%, #c9a882 60%, #d4b896 100%);
  right: 0;
  z-index: 1;
}
.section-split--reverse {
  flex-direction: row-reverse;
}
.section-split--reverse .section-split__content {
  padding-left: 4rem;
  padding-right: 80px;
}
.section-split__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  padding-left: 80px;
}
.section-split__text {
  max-width: 550px;
}
.section-split__text h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-split__text p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.section-split__text p:last-child {
  margin-bottom: 0;
}
.section-split__image {
  flex: 1;
  min-height: 500px;
}
.section-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adresse-map {
  margin-top: 0;
  padding: 60px 56px;
  display: block;
}
.adresse-map .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.adresse-map .contact {
  display: flex;
  width: 100%;
  max-width: 1200px;
}
.adresse-map .contact-card {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px 0px;
  width: 100%;
}
.adresse-map .contact-card-info {
  flex: 1;
  padding: 40px 28px 48px;
  text-align: center;
}
.adresse-map .contact-card-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.adresse-map .contact-card-info .divider {
  width: 70px;
  height: 4px;
  background-color: rgba(223, 162, 95, 0.8);
  margin: 8px auto;
}
.adresse-map .contact-card-info .grey-text {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 24px;
}
.adresse-map .contact-card-email {
  font-family: 'Karla', sans-serif;
  font-size: 21px;
  color: #111111;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.adresse-map .contact-card-email:hover {
  color: rgba(223, 162, 95, 0.8);
}
.adresse-map .red-text {
  font-family: 'Karla', sans-serif;
  font-size: 27px;
  font-weight: 800;
  color: #111111;
}
.adresse-map .contact-card-map {
  width: 573px;
  min-width: 573px;
  height: 276px;
}
.adresse-map .contact-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h4,
.contact-hours h4 {
  color: #c4a35a;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-item {
  margin-bottom: 2rem;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item h4 {
  color: #c4a35a;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.contact-item p {
  opacity: 0.9;
}
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-posts h4 {
  color: #c4a35a;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.hours-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hours-table tr:last-child {
  border-bottom: none;
}
.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
.hours-table td:last-child {
  text-align: right;
  color: #c4a35a;
}
.visite-virtuelle-section {
  width: 100%;
  height: 600px;
  margin-top: 0;
  background: #000;
}
.visite-virtuelle-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.site-footer {
  background-color: #86a579;
  padding: 60px 0 20px;
  color: #ffffff;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
.footer-column {
  padding-right: 30px;
}
.footer-column:last-child {
  padding-right: 0;
}
.footer-column h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 24px;
  color: #ffffff;
}
.footer-column p {
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-column a {
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.footer-column a:hover {
  opacity: 0.8;
  color: #ffffff;
}
.footer-column--newsletter p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.footer-column--newsletter .newsletter-form {
  display: flex;
  flex-direction: row;
  gap: 0;
}
.footer-column--newsletter input[type="email"] {
  flex: 1;
  padding: 0 12px;
  height: 38px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #333;
  font-size: 14px;
  border-radius: 0;
}
.footer-column--newsletter input[type="email"]::placeholder {
  color: #999;
}
.footer-column--newsletter button {
  padding: 9px 15px;
  background-color: #252525;
  color: #ffffff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.footer-column--newsletter button:hover {
  background-color: #333;
}
.footer-address-link {
  display: block;
  margin-bottom: 10px;
}
.footer-address-link p {
  margin-bottom: 0;
}
.footer-email {
  color: #c02231 !important;
  text-decoration: none;
}
.footer-email:hover {
  color: #c02231 !important;
  text-decoration: underline;
}
.footer-phone {
  margin-bottom: 15px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.footer-social a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.footer-social svg,
.footer-social img {
  width: 18px;
  height: 18px;
  fill: currentColor;
  filter: brightness(0) invert(1);
}
.footer-privacy-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  font-size: 15px;
}
.hours-note {
  font-style: italic;
  font-size: 14px !important;
  margin-bottom: 15px !important;
  opacity: 0.9;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-row {
  display: flex;
  align-items: baseline;
  font-size: 15px;
  line-height: 24px;
}
.hours-day {
  white-space: nowrap;
}
.hours-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  position: relative;
  top: -4px;
}
.hours-time {
  white-space: nowrap;
  text-transform: uppercase;
}
.footer-posts {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.footer-posts li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-posts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-posts .post-date {
  font-size: 13px;
  opacity: 0.7;
  display: block;
  margin-bottom: 5px;
}
.footer-posts a {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}
.footer-link {
  font-size: 15px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.footer-link:hover {
  opacity: 0.8;
  color: #ffffff;
}
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.recent-posts-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.recent-posts-list li:last-child {
  border-bottom: none;
}
.recent-posts-list .post-date {
  display: block;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}
.recent-posts-list a {
  font-size: 0.9rem;
  opacity: 0.9;
}
.footer-bottom {
  background-color: #86a579;
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer-bottom .heart {
  color: #e74c3c;
}
.scroll-up-button {
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.3s ease;
}
.scroll-up-button:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
.scroll-up-button svg {
  width: 20px;
  height: 20px;
}
.footer-credit {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}
.footer-credit a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-credit a:hover {
  opacity: 0.8;
}
.page-hero-section.menu-hero {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 417px;
  padding: 79px 40px;
  background-color: #111111;
  background-position: 0px 0px, 50% 70%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}
.page-hero-section.menu-hero .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-header {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.section-menu-grenade {
  background-color: transparent;
  padding: 60px 20px;
}
.menu-pdf-wrapper {
  max-width: 940px;
  margin: 0 auto;
}
.menu-pdf-header {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0;
}
.menu-pdf-download {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #86a579;
  color: #ffffff;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}
.menu-pdf-download:hover {
  background: #769a69;
  color: #ffffff;
}
.menu-pdf-iframe {
  display: block;
  width: 100%;
  height: 1200px;
  border: none;
}
body.page-template-template-menu {
  background-color: rgba(255, 123, 15, 0.63);
  background-image: url('assets/images/menu-pattern-bg.jpg');
  background-size: auto;
  background-repeat: repeat;
}
@media (max-width: 991px) {
  .page-hero-section.menu-hero {
    height: auto;
    min-height: 300px;
    padding: 60px 30px;
  }
  .page-hero-header {
    font-size: 38px;
    line-height: 48px;
  }
  .menu-pdf-iframe {
    height: 1000px;
  }
}
@media (max-width: 767px) {
  .page-hero-section.menu-hero {
    padding: 50px 20px;
  }
  .page-hero-header {
    font-size: 28px;
    line-height: 36px;
  }
  .section-menu-grenade {
    padding: 40px 15px;
  }
  .menu-pdf-iframe {
    height: 800px;
  }
}
@media (max-width: 479px) {
  .page-hero-header {
    font-size: 24px;
    line-height: 32px;
  }
  .menu-pdf-iframe {
    height: 600px;
  }
}
body.page {
  background-color: rgba(255, 123, 15, 0.63);
  background-image: url('assets/images/menu-pattern-bg.jpg');
  background-size: auto;
  background-repeat: repeat;
}
.page-content-section {
  padding: 67px 20px 80px;
}
.page-content-section .wrapper {
  max-width: 940px;
  margin: 0 auto;
}
.page-content {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #111111;
  text-align: left;
}
.page-content p {
  margin-bottom: 24px;
}
.page-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #111111;
  text-transform: uppercase;
  margin: 32px 0 12px;
}
.page-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #111111;
  text-transform: uppercase;
  margin: 32px 0 12px;
}
.page-content a {
  color: #c02231;
  text-decoration: none;
}
.page-content a:hover {
  text-decoration: underline;
}
.page-content ul,
.page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.page-content li {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .page-content-section {
    padding: 40px 20px 60px;
  }
  .page-content {
    font-size: 14px;
    line-height: 22px;
  }
  .page-content h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-hero-section.reservation-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 417px;
  padding: 79px 40px;
  background-color: #111111;
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}
.page-hero-section.reservation-hero .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.form-restomtl {
  padding: 60px 56px;
  min-height: 600px;
}
.reservation-iframe-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 500px;
}
.reservation-iframe {
  width: 90%;
  height: 600px;
  border: 0px solid #333;
}
body.page-template-template-reservation {
  background-color: rgba(255, 123, 15, 0.63);
  background-image: url('assets/images/menu-pattern-bg.jpg');
  background-size: auto;
  background-repeat: repeat;
}
@media (max-width: 991px) {
  .page-hero-section.reservation-hero {
    height: auto;
    min-height: 300px;
    padding: 60px 30px;
  }
  .form-restomtl {
    padding: 40px 30px;
  }
  .reservation-iframe {
    width: 100%;
    height: 550px;
  }
}
@media (max-width: 767px) {
  .page-hero-section.reservation-hero {
    padding: 50px 20px;
  }
  .form-restomtl {
    padding: 30px 20px;
  }
  .reservation-iframe {
    height: 500px;
  }
}
@media (max-width: 479px) {
  .reservation-iframe {
    height: 450px;
  }
}
body.page-template-template-nouvelles {
  background-color: rgba(255, 123, 15, 0.63);
  background-image: url('assets/images/menu-pattern-bg.jpg');
  background-size: auto;
  background-repeat: repeat;
}
.page-hero-section.news-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 417px;
  padding: 79px 40px;
  background-color: #111111;
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}
.page-hero-section.news-hero .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.news-section {
  padding: 40px 56px 75px;
}
.news-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-posts {
  display: block;
}
.post-card {
  display: flex;
  background: #ffffff;
  height: 480px;
  margin-bottom: 40px;
  transition: opacity 600ms, transform 800ms;
}
.post-card-info {
  display: flex;
  flex: 0 1 auto;
  width: 42%;
  padding: 48px 94px;
  position: relative;
}
.post-card-info .frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid #e3e3e3;
  pointer-events: none;
}
.post-card-content {
  padding: 8px 0 0;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  background-color: #f03e5a;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 12px;
}
.badge:hover {
  background-color: #e91234;
}
.post-card-category {
  margin-bottom: 16px;
}
.post-card-header-link {
  display: block;
  text-decoration: none;
}
.post-card-header-link h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #111111;
  text-transform: uppercase;
  margin: 0 0 16px;
  transition: color 0.2s;
}
.post-card-header-link:hover h3 {
  color: #c4a35a;
}
.post-card-content .grey-text {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 22px;
  color: #000;
  margin-bottom: 20px;
}
.post-card-date {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #888;
  margin-top: 16px;
}
.post-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 58%;
  height: 100%;
  background-color: #f0f0f0;
  background-image: url('assets/images/pattern-bg.jpg');
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  text-decoration: none;
}
.post-card-image .arrow-button {
  opacity: 0;
  transition: opacity 0.3s;
}
.post-card-image:hover .arrow-button {
  opacity: 1;
}
.button.white-button {
  background: #ffffff;
  color: #111111;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.button.white-button:hover {
  background: #111111;
  color: #ffffff;
}
.no-posts {
  text-align: center;
  padding: 6rem;
  background: #ffffff;
}
.no-posts p {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  color: #111111;
}
body.single-post {
  background-color: #ffffff;
  background-image: none;
}
.post-hero-section {
  position: relative;
  display: block;
  height: 670px;
  min-height: 670px;
  padding: 138px;
  background-color: #111111;
  background-size: cover;
  background-position: 50% 50%;
  border: 12px solid #ffffff;
}
.post-hero-section::before {
  display: none;
}
.post-hero-section > .wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
.post-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 86px 0 120px;
  position: relative;
  text-align: center;
  height: 100%;
}
.post-hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-post-header {
  font-family: 'Oswald', sans-serif;
  font-size: 63px;
  font-weight: 700;
  line-height: 80px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin: 26px 0 24px;
}
.divider-2 {
  width: 70px;
  height: 4px;
  background: transparent;
  border-top: 1px solid rgba(223, 162, 95, 0.5);
  border-bottom: 1px solid rgba(223, 162, 95, 0.5);
  margin: 8px 0;
}
#Post.about-section.pattern-section {
  padding: 0 56px;
  background-color: transparent;
  background-image: none;
}
#Post.about-section.pattern-section > .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.post.w-clearfix {
  background: #ffffff;
  width: 970px;
  max-width: 970px;
  margin: -128px 115px 0;
  padding: 80px 15px 96px;
  position: relative;
  z-index: 10;
  text-align: left;
}
.first-letter-2 {
  float: left;
  font-family: Arial, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 32px;
  color: rgba(223, 162, 95, 0.5);
  margin: 15px 8px 0 157px;
}
.post.w-clearfix .post-content.w-richtext,
.post-content.w-richtext {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}
.post.w-clearfix .post-content.w-richtext p,
.post-content.w-richtext p {
  margin: 8px 157px 24px;
}
.post.w-clearfix .post-content.w-richtext h2,
.post-content.w-richtext h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #111111;
  text-transform: uppercase;
  margin: 40px 0 20px;
}
.post.w-clearfix .post-content.w-richtext h3,
.post-content.w-richtext h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #111111;
  text-transform: uppercase;
  margin: 32px 0 16px;
}
.post.w-clearfix .post-content.w-richtext img,
.post-content.w-richtext img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
}
.post.w-clearfix .post-content.w-richtext figure,
.post-content.w-richtext figure {
  margin: 32px 0;
  text-align: center;
}
.post.w-clearfix .post-content.w-richtext figure img,
.post-content.w-richtext figure img {
  margin: 0;
}
.post.w-clearfix .post-content.w-richtext figure figcaption,
.post-content.w-richtext figure figcaption {
  font-size: 14px;
  color: #888;
  margin-top: 12px;
}
.post.w-clearfix .post-content.w-richtext ul,
.post-content.w-richtext ul,
.post.w-clearfix .post-content.w-richtext ol,
.post-content.w-richtext ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.post.w-clearfix .post-content.w-richtext li,
.post-content.w-richtext li {
  margin-bottom: 8px;
}
.post.w-clearfix .post-content.w-richtext blockquote,
.post-content.w-richtext blockquote {
  border-left: 4px solid rgba(223, 162, 95, 0.8);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #555;
}
.post.w-clearfix .post-content.w-richtext a,
.post-content.w-richtext a {
  color: #c4a35a;
  text-decoration: underline;
}
.post.w-clearfix .post-content.w-richtext a:hover,
.post-content.w-richtext a:hover {
  color: #a88a3d;
}
@media (max-width: 991px) {
  .page-hero-section.news-hero {
    height: auto;
    min-height: 300px;
    padding: 60px 30px;
  }
  .news-section {
    padding: 40px 30px 60px;
  }
  .post-card {
    flex-direction: column;
    height: auto;
  }
  .post-card-info {
    width: 100%;
    padding: 40px;
  }
  .post-card-image {
    width: 100%;
    height: 300px;
  }
  .post-hero-section {
    height: auto;
    min-height: 400px;
    padding: 80px 30px;
    border-width: 8px;
  }
  .blog-post-header {
    font-size: 42px;
    line-height: 52px;
  }
  #Post.about-section.pattern-section {
    padding: 0 30px;
  }
  .post.w-clearfix {
    width: auto;
    max-width: 100%;
    margin: -80px 30px 0;
    padding: 60px 30px 70px;
  }
  .first-letter-2 {
    margin-left: 40px;
  }
  .post-content.w-richtext p {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .page-hero-section.news-hero {
    padding: 50px 20px;
  }
  .news-section {
    padding: 40px 20px 50px;
  }
  .post-card-info {
    padding: 30px 20px;
  }
  .post-card-image {
    height: 250px;
  }
  .post-card-header-link h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .post-hero-section {
    padding: 60px 20px;
    min-height: 350px;
    border-width: 6px;
  }
  .blog-post-header {
    font-size: 32px;
    line-height: 40px;
  }
  #Post.about-section.pattern-section {
    padding: 0 20px;
  }
  .post.w-clearfix {
    margin: -60px 20px 0;
    padding: 40px 20px 50px;
  }
  .first-letter-2 {
    font-size: 42px;
    margin-left: 20px;
    margin-right: 6px;
  }
  .post-content.w-richtext {
    font-size: 14px;
    line-height: 22px;
  }
  .post-content.w-richtext p {
    margin-left: 20px;
    margin-right: 20px;
  }
  .post-content.w-richtext h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .post-content.w-richtext h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 479px) {
  .post-card-image {
    height: 200px;
  }
  .blog-post-header {
    font-size: 28px;
    line-height: 36px;
  }
  .first-letter-2 {
    font-size: 36px;
    margin-left: 10px;
  }
  .post-content.w-richtext p {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeSlideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.split-animate-left,
.split-animate-right {
  opacity: 0;
}
.split-animate-left.animate-in {
  animation: fadeSlideFromLeft 0.8s ease-out forwards;
}
.split-animate-right.animate-in {
  animation: fadeSlideFromRight 0.8s ease-out forwards;
  animation-delay: 0.15s;
}
.info-bar {
  background: #c4a35a;
  padding: 0.75rem 0;
  border-bottom: none;
}
.info-bar a,
.info-bar span {
  color: #0a0a0a;
}
.info-bar a:hover {
  color: #1a1a1a;
}
.info-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.info-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #0a0a0a;
}
.info-bar-phone svg {
  width: 16px;
  height: 16px;
  fill: #0a0a0a;
}
.info-bar-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.info-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.info-bar-social a:hover {
  opacity: 1;
}
.info-bar-social img,
.info-bar-social svg {
  filter: brightness(0);
}
.section--newsletter {
  background: #0a0a0a;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section-newsletter {
  background: #1a1a1a;
  padding: 2rem;
  text-align: center;
}
.section-newsletter p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.section-newsletter .newsletter-form {
  justify-content: center;
}
.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-content h3 {
  margin-bottom: 1rem;
  color: #c4a35a;
}
.newsletter-content p {
  margin-bottom: 2rem;
  opacity: 0.8;
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #c4a35a;
}
@media (max-width: 992px) {
  .about-section {
    margin-top: 40px;
    padding: 0 30px;
  }
  .side-card-feature {
    flex-direction: column-reverse;
  }
  .side-card-image {
    width: 100%;
    min-height: 400px;
  }
  .side-card {
    margin-right: 0;
    margin-bottom: -40px;
    padding: 60px 40px;
    z-index: 2;
  }
  .food-section {
    margin-top: 40px;
    padding: 0 30px;
  }
  .side-image-wrapper {
    flex-direction: column;
  }
  .side-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
  .side-image-content {
    width: 100%;
    margin-left: 0;
    margin-top: -40px;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
  }
  .drink-section {
    margin-top: 40px;
    padding: 0 30px;
  }
  .side-card-feature.reversed {
    flex-direction: column;
  }
  .side-card-image.side-card-image--2 {
    width: 100%;
    min-height: 400px;
  }
  .side-card.reversed {
    margin-left: 0;
    margin-top: -40px;
    padding: 60px 40px;
  }
  .grid-section {
    padding: 40px 30px;
    margin-top: 0;
  }
  .feature-image {
    flex: 1 1 100%;
    height: 300px;
    padding: 24px 30px;
  }
  .feature-text {
    padding: 24px 30px;
  }
  .feature-banner {
    flex: 1 1 100%;
    padding: 30px;
  }
  .decor-section {
    height: auto;
    min-height: 600px;
    padding: 80px 30px;
    background-attachment: scroll, scroll;
  }
  .decor-section h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .decor-section .section-description {
    font-size: 17px;
    line-height: 26px;
  }
  .adresse-map {
    padding: 40px 30px;
  }
  .adresse-map .contact-card {
    flex-direction: column;
  }
  .adresse-map .contact-card-map {
    width: 100%;
    min-width: 100%;
    height: 300px;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cta {
    grid-column: span 2;
    margin-top: 2rem;
  }
  .section-split {
    flex-direction: column;
  }
  .section-split--reverse {
    flex-direction: column;
  }
  .section-split__content {
    padding: 3rem 2rem;
    padding-left: 60px;
    padding-right: 60px;
  }
  .section-split--reverse .section-split__content {
    padding-left: 60px;
    padding-right: 60px;
  }
  .section-split__image {
    min-height: 300px;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .section-grid__item {
    padding: 2rem;
    padding-left: 60px;
    padding-right: 60px;
  }
  .section-grid__item:nth-child(2) {
    padding-left: 60px;
    padding-right: 60px;
  }
  .section-grid__item--promo {
    grid-column: span 1;
  }
  .section-contact {
    flex-direction: column;
  }
  .section-contact__info {
    padding: 2rem;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 3rem;
  }
  .main-navigation,
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .main-navigation.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-navigation.active ul {
    flex-direction: column;
    gap: 0;
  }
  .main-navigation.active li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-navigation.active a {
    padding: 1rem 0;
    display: block;
  }
  .two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-columns--reverse .column-content,
  .two-columns--reverse .column-image {
    order: unset;
  }
  .column-image img {
    height: 300px;
  }
  .content-block--left {
    text-align: center;
  }
  .about-section {
    margin-top: 30px;
    padding: 0 20px;
  }
  .side-card {
    padding: 40px 30px;
  }
  .side-card-header {
    font-size: 22px;
    line-height: 28px;
  }
  .grey-text {
    font-size: 15px;
    line-height: 20px;
  }
  .food-section {
    margin-top: 30px;
    padding: 0 20px;
  }
  .side-image-content {
    padding: 40px 30px;
  }
  .heading-10 {
    font-size: 22px;
    line-height: 28px;
  }
  .drink-section {
    margin-top: 30px;
    padding: 0 20px;
  }
  .side-card.reversed {
    padding: 40px 30px;
  }
  .grid-section {
    padding: 30px 20px;
    margin-top: 0;
  }
  .feature-image {
    height: 280px;
    padding: 20px;
  }
  .feature-image-header {
    font-size: 22px;
  }
  .p-grid {
    font-size: 14px;
  }
  .feature-text {
    padding: 20px;
  }
  .feature-banner {
    padding: 24px;
  }
  .decor-section {
    padding: 60px 20px;
    min-height: 500px;
  }
  .decor-section h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .decor-section .section-description {
    font-size: 16px;
    line-height: 24px;
  }
  .decor-section .button.bookbutton {
    padding: 10px 24px;
    font-size: 14px;
  }
  .adresse-map {
    padding: 30px 20px;
  }
  .adresse-map .contact-card-info {
    padding: 30px 20px 40px;
  }
  .adresse-map .contact-card-info h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .adresse-map .contact-card-email {
    font-size: 18px;
  }
  .adresse-map .red-text {
    font-size: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-cta {
    grid-column: auto;
  }
  .hours-table {
    margin: 0 auto;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-column {
    padding-right: 0;
  }
  .footer-social {
    justify-content: center;
  }
  .hours-row {
    justify-content: center;
  }
  .hours-dots {
    max-width: 80px;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
  }
  .scroll-up-button {
    position: static;
  }
  .menu-items--grid {
    grid-template-columns: 1fr;
  }
  .menu-category-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .visite-virtuelle-section {
    height: 400px;
  }
  .section-split--pattern::before,
  .section-split--pattern::after,
  .section-grid--pattern::before,
  .section-grid--pattern::after,
  .section-contact--pattern::before,
  .section-contact--pattern::after {
    width: 20px;
  }
  .section-split__content,
  .section-split--reverse .section-split__content,
  .section-grid__item,
  .section-grid__item:nth-child(2),
  .section-contact__info {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: none;
  }
}
