@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --animate-delay: 0.25s;
}

html {
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #ff0033;
  line-height: 1.25;
  text-transform: uppercase;
}
h1.h1,
h2.h1,
h3.h1,
h4.h1,
h5.h1,
h6.h1 {
  font-size: 72px;
}
h1.h2,
h2.h2,
h3.h2,
h4.h2,
h5.h2,
h6.h2 {
  font-size: 60px;
}
h1.h3,
h2.h3,
h3.h3,
h4.h3,
h5.h3,
h6.h3 {
  font-size: 48px;
}
h1.h4,
h2.h4,
h3.h4,
h4.h4,
h5.h4,
h6.h4 {
  font-size: 36px;
}
h1.h5,
h2.h5,
h3.h5,
h4.h5,
h5.h5,
h6.h5 {
  font-size: 24px;
}

p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

a {
  text-decoration: none;
}

button{
border: none;
}
::-webkit-scrollbar {
  width: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar-track {
  width: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #ff0033;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #d3bc6c;
}

section{
  scroll-margin-top: 5.5rem;
}

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.c-nav--top {
  display: flex;
  justify-content: space-between;
  background-color: #1a1a1a;
  border-top: 0.3rem solid #d3bc6c;
  border-bottom: 0.3rem solid #ff0033;
  padding-left: 30px;
  color: #f9f9f9;
}
.c-nav--top__contacts {
  margin-bottom: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style-type: none;
}
.c-nav--top__contacts a {
  transition: all 0.3s ease-in-out;
  color: #f9f9f9;
  text-decoration: none;
}
.c-nav--top__contacts a:hover {
  text-decoration: none;
  color: #d3bc6c;
}
.c-nav--top__contacts a span {
  font-weight: 400;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.c-nav--top__contacts li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: var(--white);
}
@media (max-width: 992px) {
  .c-nav--top__contacts {
    margin-left: 0;
  }
}
.c-nav--top__social {
  margin-bottom: 0 !important;
  height: 100%;
  background-color: #ff0033;
  width: 30%;
  padding: 0.625rem 0;
  padding-right: 5%;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  list-style-type: none;
}
@media (max-width: 450px) {
  .c-nav--top__social {
    width: 50%;
    padding: 0.5rem 1rem;
  }
}
.c-nav--top__social a {
  transition: all 0.3s ease-in-out;
  color: #f9f9f9;
  text-decoration: none;
}
.c-nav--top__social a:hover {
  text-decoration: none;
  color: #d3bc6c;
}
.c-nav .c-nav--main {
  background-color: #f9f9f9;
  color: #1a1a1a;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease-in-out;
}
.c-nav .c-nav--main .c-nav--container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.c-nav .c-nav--main .c-nav--logo {
  height: 60px;
  transform: translateY(2.5px);
  width: auto;
  display: block;
}
.c-nav .c-nav--main .c-nav--menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-nav .c-nav--main .c-nav--menu li {
  margin-left: 20px;
}
.c-nav .c-nav--main .c-nav--menu li a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.c-nav .c-nav--main .c-nav--menu li a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: #d3bc6c;
  bottom: 0;
  transition: width 0.3s ease;
}
.c-nav .c-nav--main .c-nav--menu li a:hover {
  color: #d3bc6c;
}
.c-nav .c-nav--main .c-nav--menu li a:hover::before {
  width: 100%;
}
.c-nav .c-nav--main .c-nav--hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
  height: 18px;
  width: 24px;
  margin-left: auto;
}
.c-nav .c-nav--main .c-nav--hamburger:hover span {
  background-color: #d3bc6c;
}
.c-nav .c-nav--main .c-nav--hamburger span {
  height: 2px;
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.c-nav .c-nav--main .c-nav--hamburger.active span {
  background-color: #ff0033;
}
.c-nav .c-nav--main .c-nav--hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-nav .c-nav--main .c-nav--hamburger.active span:nth-child(2) {
  opacity: 0;
}
.c-nav .c-nav--main .c-nav--hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.c-nav .c-nav--main .c-nav--sliding-menu {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: calc(100% - 44px - 0.3rem);
  transform: translateY(calc(44px + 0.3rem));
  background-color: #ff0033;
  border-top: 0.3rem solid #d3bc6c;
  padding: 45.33px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: right 0.4s ease;
}
.c-nav .c-nav--main .c-nav--sliding-menu h3 {
  color: #f9f9f9;
  font-family: "Montserrat", sans-serif;
}
.c-nav .c-nav--main .c-nav--sliding-menu a {
  color: #f9f9f9;
  text-decoration: none;
  margin: 10px 0;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.c-nav .c-nav--main .c-nav--sliding-menu a:hover {
  color: #d3bc6c;
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d3bc6c;
  color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--close:hover {
  background-color: #e5d7a7;
  transform: scale(1.1);
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--social {
  width: 100%;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--social li {
  margin: 5px;
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--social li a {
  font-size: 48px;
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--dynamic-menu {
  width: 100%;
  margin-bottom: 3rem !important;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--dynamic-menu li {
  margin: 5px;
}
.c-nav .c-nav--main .c-nav--sliding-menu .c-nav--dynamic-menu li a {
  font-size: 20px;
}
.c-nav .c-nav--main .c-nav--sliding-menu.active {
  right: 0;
}
.c-nav .c-nav--dynamic-menu {
  display: none;
}
.c-nav .c-nav--main.scrolled {
  background-color: #ff0033 !important; /* Background color when scrolled */
}
.c-nav .c-nav--main.scrolled a {
  color: #f9f9f9 !important;
}
.c-nav .c-nav--main.scrolled a:hover {
  color: #d3bc6c !important;
}
.c-nav .c-nav--main.scrolled .c-nav--hamburger span {
  background-color: #f9f9f9 !important; /* Background color when scrolled */
}
.c-nav .c-nav--main.scrolled .c-nav--hamburger:hover span {
  background-color: #d3bc6c !important;
}
@media (max-width: 992px) {
  .c-nav .c-nav--main .c-nav--menu {
    display: none;
  }
  .c-nav .c-nav--main .c-nav--hamburger {
    display: flex;
  }
  .c-nav .c-nav--main .c-nav--socials.active {
    display: block;
  }
  .c-nav .c-nav--main .c-nav--dynamic-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .c-nav .c-nav--dynamic-menu {
    display: none !important;
  }
  .c-nav .c-nav--social {
    align-items: flex-start;
    height: 100%;
  }
}
@media (max-width: 450px) {
  .c-nav .c-nav--sliding-menu {
    height: calc(100% - 40px - 0.3rem) !important;
    transform: translateY(calc(40px + 0.3rem)) !important;
  }
  .c-nav .c-nav--sliding-menu.active {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .c-nav .c-nav--sliding-menu.active {
    width: 50%;
  }
}

.c-hero {
  background-image: url("../img/bg-3.webp"); /* Replace with your image path */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  height: 60vh; /* Takes up half of the viewport height */
  display: flex; /* Enables flexbox for centering */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  color: white; /* Text color */
  position: relative; /* Position relative for any child absolute positioning */
}

.c-hero__overlay {
  position: absolute; /* Position it absolutely within the section */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 1; /* Place it below the content */
}

.c-hero__content {
  z-index: 2; /* Ensure it stays above the overlay */
  padding: 40px; /* Padding around the text */
}
@media (max-width: 768px) {
  .c-hero {
    height: 40vh; /* Make it smaller on mobile */
  }
  .c-hero__content {
    padding: 15px; /* Adjust padding on mobile */
  }
}
.c-intro {
  padding: 40px 15px;
}

.c-promo {
  padding: 20px 15px 0px 15px;
}

/* General styles for the section */
.c-info {
  padding: 40px 0;
}

/* Left side content styling */
.c-info__content {
  padding-left: 15px; /* Padding to align with container */
  padding-right: 15px; /* Padding to align with container */
}

/* Right side image styling */
.c-info__image img {
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image covers its container */
  height: 100%; /* Full height */
  max-height: 600px; /* Optional: set max height for the image */
  width: 100%;
}

/* Remove extra padding from the right-side column */
.c-info__image--right {
  padding-right: 0; /* No padding around the image */
}
.c-info__image--left {
  padding-left: 0; /* No padding around the image */
}
.c-info__image--height {
  height: 100% !important;
}
@media (max-width: 992px) {
  .c-info__image {
    padding-left: 15px; /* No padding around the image */
    padding-right: 15px; /* No padding around the image */
    order: 2 !important;
  }
}

.c-gallery-area {
  padding: 40px 0;
}

.gallery-img {
  height: 100%;
  width: 100%; /* Full width */
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image covers its container */
  overflow: hidden;
}

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

.gallery-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-overnachting {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/bg-2.webp"); /* Replace with your image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 60%; /* Centers the image */
  height: 100%;
  color: #f9f9f9 !important;
  margin: 40px 0;
}

.c-wellness {
  padding: 40px 0;
}

.c-prijzen {
  padding: 40px 0;
  background-color: rgba(255, 0, 51, 0.025);
}

.c-menu {
  padding: 40px 0;
}
.c-menu--img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-menu--img2 {
  height: 400px !important;
}

.c-contact {
  padding: 40px 0;
  background-color: rgba(255, 0, 51, 0.025);
}

.c-footer {
  color: #f9f9f9;
  font-size: 18px;
  font-weight: 400;
  padding: 40px 0 !important;
  background-color: #1a1a1a;
  -webkit-clip-path: polygon(90% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(90% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
@media (max-width: 420px) {
  .c-footer {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.c-footer a {
  transition: all 0.3s ease-in-out;
  color: #f9f9f9;
  text-decoration: none;
}
.c-footer a:hover {
  text-decoration: none;
  color: #d3bc6c !important;
}
.c-footer a span {
  font-weight: 400;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.c-grid {
  padding: 40px 0;
}

.c-bg-red {
  background-color: #ff0033;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  pointer-events: none;
}

.offcanvas-backdrop.show {
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}

.c-btn {
  background-color: #ff0033;
  color: #f9f9f9;
  font-weight: 400;
  padding: 12px 44px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 70%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 70%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  text-decoration: none;
}
.c-btn:hover {
  color: #1a1a1a;
  background-color: #d3bc6c;
  text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #ff0033;
  color: #fff;
  padding: 10px 15px;
  font-size: 20px;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
}

.back-to-top:hover {
  background-color: #d3bc6c; /* Slightly change color on hover */
  color: #fff;
}

.back-to-top i {
  font-size: 20px;
}

/* Custom slideOutRight animation to control the distance */
@keyframes customSlideOutRight {
  0% {
    transform: translateX(0); /* Starting position */
    opacity: 1;
  }
  100% {
    transform: translateX(200%); /* Adjust the distance for slide-out */
    opacity: 0;
  }
}
@keyframes customSlideInRight {
  0% {
    transform: translateX(100%); /* Starting position */
    opacity: 0;
  }
  100% {
    transform: translateX(0%); /* Adjust the distance for slide-out */
    opacity: 1;
  }
}
.c-slide {
  visibility: hidden;
  animation-fill-mode: forwards;
}

.fadeIn {
  animation: customFadeInUp 0.5s forwards;
}

/* Custom fadeInUp animation to control the distance */
@keyframes customFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
    visibility: visible;
  }
}
/* Apply customSlideOutRight when the button should hide */
.back-to-top.custom-slide-out {
  animation: customSlideOutRight 0.5s forwards;
}

.back-to-top.custom-slide-in {
  animation: customSlideInRight 0.5s forwards;
}

/* Make the button visible when the user scrolls */
.show {
  display: block;
}

.c-white {
  color: #f9f9f9 !important;
}

.c-red {
  color: #ff0033 !important;
}

.card {
  height: 100% !important;
  background-color: #ff0033; /* Semi-transparent black overlay */
  color: #f9f9f9;
  border: none;
  border-radius: 0 !important;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 80% 100%, 100% 80%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 80% 100%, 100% 80%);
}
.card-long {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 90% 100%, 100% 80%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 90% 100%, 100% 80%);
}
.card-heigh {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 80% 100%, 100% 85%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 80% 100%, 100% 85%);
}
.card-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
  -o-object-position: top;
     object-position: top;
}

.c-underline {
  text-decoration: underline;
}

.c-ul {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.c-ul-1 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
}

.c-liststyle {
  list-style-type: none;
  padding: 0;
}

.c-ahref {
  color: #ff0033;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.c-ahref::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: #ff0033;
  bottom: 0;
  transition: width 0.3s ease;
}
.c-ahref:hover {
  color: #ff0033;
}
.c-ahref:hover::before {
  width: 100%;
}

.c-opacity {
  opacity: 0 !important;
}

.c-hide {
  display: none !important;
}
@media (max-width: 768px) {
  .c-hide--small {
    display: none !important;
  }
}

.white-img {
  filter: contrast(0%) brightness(200%);
  transition: all 0.3s ease-in-out;
}

.form-group{
  margin: 1rem 0;
}

.form-control{
  border-radius: 0;
  margin: 0.3rem 0 0 0;
}

.accordion-item {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 0 !important;
}
.accordion-item .accordion-button {
  font-weight: 700;
  line-height: 1.25;
  font-size: 24px !important;
  color: #ff0033;
  border-radius: 0 !important;
}
.accordion-item .accordion-button:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 51, 0.25) !important;
}
.accordion-item .accordion-button:not(.collapsed) {
  background-color: #ff0033;
  color: #f9f9f9;
}
.accordion-item .accordion-button:not(.collapsed)::after {
  filter: contrast(0%) brightness(200%);
}

.c-map--right {
  padding-right: 0; /* No padding around the image */
}
@media (max-width: 992px) {
  .c-map {
    padding-left: 0; /* No padding around the image */
    padding-right: 0; /* No padding around the image */
    order: 2 !important;
  }
}

.c-focus--right {
  -o-object-position: 80% center;
     object-position: 80% center;
}

.c-space {
  margin-left: 10px;
}

.c-translate {
  margin-top: -50px; /* Adjust this value according to your design */
  z-index: 90;
}
.c-translate--bg {
  z-index: 90;
  background-color: #ff0033;
  padding: 20px;
  /*box-shadow: #1a1a1a 0px 5px 20px;*/
}

.animate__animated {
  opacity: 0; /* Ensure elements are invisible initially */
}