/* COLORS
#370e04 - Dark Brown
#746f64 - Grey
#dacca9 - Beige
#f8f3f2 - Off-white
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Bold.eot');
  src: url('../fonts/Canela-Boldd41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Canela-Bold.woff2') format('woff2'),
    url('../fonts/Canela-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Medium.eot');
  src: url('../fonts/Canela-Mediumd41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Canela-Medium.woff2') format('woff2'),
    url('../fonts/Canela-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Regular.eot');
  src: url('../fonts/Canela-Regulard41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Canela-Regular.woff2') format('woff2'),
    url('../fonts/Canela-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Black-Trial.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-BlackItalic-Trial.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Bold-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-BoldItalic-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Light-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-LightItalic-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Medium-Trial.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-MediumItalic-Trial.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Regular-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-RegularItalic-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Thin-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-ThinItalic-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

/* General Styles */
:root {
  --primary: #370e04;
  --primary-hover: #6f1f08;
  --secondary: #746f64;
  --tertiary: #dacca9;
  --gold: #e0d5bf;
  --light: #f8f3f2;
  --lighter: #f5efef;
  --white: #ffffff;
  --primary-font: "Lato", sans-serif;
  --secondary-font: "Canela", serif;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: var(--primary-font);
  background-color: var(--light);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--primary);
}

h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

.btn {
  border-radius: 0;
  font-family: var(--primary-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: all 0.3s ease;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}


/* Preloader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: var(--light);
  overflow-x: hidden;
  max-width: 100vw;
}

.logo-container,
.g-logo {
  max-width: 100vw;
  box-sizing: border-box;
}

.g-logo {
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: rotate 3s ease-in-out infinite alternate;
}

.g-logo path {
  fill: transparent;
  stroke: #dccdab;
  stroke-width: 4;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: draw 1s ease forwards, fillIn 0.5s 1s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fillIn {
  from {
    fill: transparent;
    stroke-width: 4;
  }

  to {
    fill: #dccdab;
    stroke-width: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-5deg) scale(0.95);
  }

  25% {
    transform: rotate(0deg) scale(1);
  }

  75% {
    transform: rotate(0deg) scale(1);
  }

  100% {
    transform: rotate(5deg) scale(0.95);
  }
}

.shadow {
  position: absolute;
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  bottom: 40px;
  filter: blur(5px);
  transform: scaleX(1.5);
  opacity: 0;
  animation: shadowFade 3s ease-in-out infinite alternate;
}

@keyframes shadowFade {
  0% {
    opacity: 0.4;
    transform: translateX(-20px) scaleX(1.3);
  }

  25% {
    opacity: 0.6;
    transform: translateX(0) scaleX(1.5);
  }

  75% {
    opacity: 0.6;
    transform: translateX(0) scaleX(1.5);
  }

  100% {
    opacity: 0.4;
    transform: translateX(20px) scaleX(1.3);
  }
}

.logo-container {
  width: 150px;
  ;
  position: relative;
  animation: float 2s ease-in-out infinite;
  text-align: center;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Create a subtle glow effect */
.glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 205, 171, 0.3) 0%, rgba(220, 205, 171, 0) 70%);
  filter: blur(15px);
  opacity: 0;
  animation: glow 2s 1.5s infinite alternate;
}

@keyframes glow {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Redraw animation */
.redraw {
  animation: redrawPath 3s 1.5s infinite;
}

@keyframes redrawPath {
  0% {
    stroke-dashoffset: 0;
    fill: #dccdab;
    stroke-width: 0;
  }

  5% {
    stroke-dashoffset: 0;
    fill: transparent;
    stroke-width: 4;
  }

  15% {
    stroke-dashoffset: 2400;
    fill: transparent;
    stroke-width: 4;
  }

  45% {
    stroke-dashoffset: 0;
    fill: transparent;
    stroke-width: 4;
  }

  50% {
    stroke-dashoffset: 0;
    fill: #dccdab;
    stroke-width: 0;
  }

  100% {
    stroke-dashoffset: 0;
    fill: #dccdab;
    stroke-width: 0;
  }
}

/* Navigation */
.navbar {
  background-color: transparent;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
}

/* Navigation Custom Flex Layout */
.custom-navbar {
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
 .custom-navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    z-index: -1;
}

.custom-navbar .nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /*max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;*/
}

.custom-navbar .nav-flex>* {
  width: 33.33%;
}

.custom-navbar .navbar-logo {
  display: block;
  text-align: center;
}

.custom-navbar .navbar-logo img {
  width: 90px;
}

.custom-navbar .nav-reserve-btn {
  font-size: 1.3rem;
  padding: 0.8rem 1.3rem;
  background: var(--white);
  color: var(--primary);
  border: 0;
  transition: all 0.3s;
  text-transform: uppercase;
}

.custom-navbar .nav-reserve-btn:hover {
  background: var(--tertiary);
  color: #fff;
}



/* Menu Toggle Button */
.custom-navbar .menu-toggle {
  background: transparent;
  border: none;
  color: var(--tertiary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.custom-navbar .menu-toggle .icon {
  width: 64px;
  height: 64px;
  background: url('../img/icons/bars.svg') no-repeat center;
}

.custom-navbar.custom-navbar-primary .menu-toggle .icon {
  width: 64px;
  height: 64px;
  background: url('../img/icons/bars-primary.svg') no-repeat center;
}

/* Fullscreen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(55, 14, 4, 0.98);
  z-index: 2000;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fullscreen-menu.open {
  height: 100vh;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-close span {
  font-size: 1.5rem;
  margin-right: 5px;
}

.menu-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.fullscreen-menu.open .menu-content {
  opacity: 1;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.menu-items li {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fullscreen-menu.open .menu-items li {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.open .menu-items li:nth-child(1) {
  transition-delay: 0.2s;
}

.fullscreen-menu.open .menu-items li:nth-child(2) {
  transition-delay: 0.3s;
}

.fullscreen-menu.open .menu-items li:nth-child(3) {
  transition-delay: 0.4s;
}

.fullscreen-menu.open .menu-items li:nth-child(4) {
  transition-delay: 0.5s;
}

.fullscreen-menu.open .menu-items li:nth-child(5) {
  transition-delay: 0.6s;
}

.fullscreen-menu.open .menu-items li:nth-child(6) {
  transition-delay: 0.7s;
}

.fullscreen-menu.open .menu-items li:nth-child(7) {
  transition-delay: 0.8s;
}

.fullscreen-menu.open .menu-items li:nth-child(8) {
  transition-delay: 0.9s;
}

.fullscreen-menu.open .menu-items li:nth-child(9) {
  transition-delay: 1s;
}

.fullscreen-menu.open .menu-items li:nth-child(10) {
  transition-delay: 1.1s;
}

.menu-items a {
  color: var(--white);
  font-family: var(--secondary-font);
  font-size: 2.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.menu-items a:hover {
  color: var(--tertiary);
  padding-left: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-no-overlay::before {
  display: none;
}

.hero-content {
  position: absolute;
  z-index: 1;
  bottom: 35%;
  max-width: 830px;
  right: 10%;

}

.hero-content h1 {
  color: #e0d5bf;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.hero-content-logo {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 60%;
}

.hero-content-logo img {
  width: 400px;
}

.hero .reservation-form {
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 1s ease;
}

.reservation-form.fixed {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reservation-form.absolute {
    position: absolute;
    animation: fadeIn 1s ease;
}


.hero .reservation-form-container {
    background-color: #f9f7f0;
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .reservation-form-container .form-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--primary-hover);
}
.hero .reservation-form-container .form-field:nth-child(1) {  width: 40%; }
.hero .reservation-form-container .form-field:nth-child(2) {  width: 40%; }
.hero .reservation-form-container .form-field:nth-child(2) input {
  width: 70%;
}
.hero .reservation-form-container .form-field:nth-child(2) input::placeholder {
  text-align: center;
}
.hero .reservation-form-container .form-field:nth-child(3) {  width: 20%; border-right: none; }

.hero .reservation-form-container .form-field img {
  margin-right: 1rem;
}

.hero .reservation-form-container .form-field input, .hero .reservation-form-container .form-field span#traveler-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--primary-hover);
  font-size: 1.4rem;
}

.hero .reservation-form-container .form-field input::placeholder {
  color: var(--primary-hover);
}

.hero .reservation-form-container .submit-btn {
    display: flex;
    justify-content: center;
    width: 20%;
}

.hero .reservation-form-container .submit-btn .reserve-btn {
  background-color: #dbccab;
  border: 0;
  font-size: 1.2rem;
  padding: 0.75rem 1.2rem;
  color: var(--primary-hover);
  text-transform: uppercase;
}

.hero .reservation-form-container .submit-btn .reserve-btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

/* --- Popover & Datepicker Custom Styles --- */
.popover {
  border-radius: 5px;
  border-color: rgba(0,0,0,0.1);
}
.popover-header {
  font-weight: bold;
  background-color: #dbccab;
  padding: 1rem;
  color: var(--primary-hover);
}
.traveler-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: #333;
}
.traveler-counter span { font-size: 16px; }
.btn-counter {
  border: 1px solid #ccc;
  background-color: #fff;
  color: #555;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  margin: 0 10px;
}

/* Mobile Trigger Button (visible only on small screens) */
.mobile-reservation-trigger {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 1rem; /* Add some padding on the sides */
}

.mobile-reservation-trigger.fixed {
    position: fixed;
    bottom: 1rem;
    z-index: 1000;

}

.mobile-reservation-trigger .btn {
  width: 100%;
  background-color: #dbccab;
  border: 0;
  font-size: 1rem;
  padding: 0.75rem;
  color: var(--primary-hover);
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.mobile-reservation-trigger .btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

/* Modal Content Styling */
.reservation-modal .modal-content {
  background-color: #f9f7f0;
  border-radius: 1rem;
  border: none;
}

.reservation-modal .modal-header {
  border-bottom: 1px solid rgba(111, 31, 8, 0.2);
  color: var(--primary);
}

.reservation-modal .modal-header .modal-title {
  font-family: var(--secondary-font);
  font-weight: 500;
}

.reservation-modal .modal-header .btn-close {
  background-size: 0.8em;
}

/* Form inside the Modal */
.reservation-modal .modal-body .reservation-form-container.mobile-form {
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background-color: transparent;
  gap: 0.5rem;
}

.reservation-modal .modal-body .mobile-form .form-field {
  width: 100% !important;
  border-right: none;
  border-bottom: 1px solid rgba(111, 31, 8, 0.2);
  padding: 0.8rem 0;
  justify-content: flex-start;
  display: flex;
}

.reservation-modal .modal-body .mobile-form .form-field img {
  margin-right: 1rem;
}

.reservation-modal .modal-body .mobile-form .form-field:nth-child(3) {
  border-bottom: none;
}

.reservation-modal .modal-body .mobile-form .form-field input,
.reservation-modal .modal-body .mobile-form .form-field span {
  border: none;
  outline: none;
  color: var(--primary-hover);
  background-color: transparent;
}

.reservation-modal .modal-body .mobile-form .form-field input,
.reservation-modal .modal-body .mobile-form .form-field span#traveler-input-mobile {
  width: 100% !important;
  text-align: left;
}
.reservation-modal .modal-body .mobile-form .form-field input::placeholder {
  text-align: left;
  color: var(--primary-hover);
}

.reservation-modal .modal-body .mobile-form .submit-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.reservation-modal .modal-body .mobile-form .submit-btn .reserve-btn {
  width: 100%;
  padding: 1rem;
}


/* Global Section */
.section-padding {
  padding: 4.5rem 0;
}

.section .section-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.section .section-title.center {
    align-items: center;
    justify-content: center;
}

.section .section-title .section-title__title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 0;
}
.section .section-title .section-title__logo {
  width: 130px;
  margin-top: 10px;
}
.section .section-title .section-title__logo img {
    width: 100%;
}


.section .section-title .section-title__title.center  {
    text-align: center;
}

.section .section-title .section-title__title.primary  {
    color: var(--primary);
}
.section .section-title .section-title__title.primary-light  {
    color: var(--primary-hover);
}
.section .section-title .section-title__title.light {
    font-weight: 500;
}
.section .section-title .section-title__title.uppercase {
    text-transform: uppercase;
}

.section .section-title .section-title__subtitle {
    font-size: 2rem;
  font-weight: 500;
  color: var(--primary-hover);
  font-style: italic;
}

.btn-underline {
  position: relative;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  color: var(--secondary);
}

.btn-lg-underline {
  font-size: 1.2rem;
  padding-bottom: 0.6rem;
  font-weight: 600;
}

.btn-underline-primary {
    color: var(--primary);
}

.btn-underline-secondary {
    color: var(--tertiary);
}

.btn-underline-primary-light {
  color: var(--primary-hover);
}

.btn-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary);
  transition: all 0.3s ease;
}

.btn-underline:hover::after {
    width: 50%;
}

.btn-underline:hover {
    color: var(--primary);
}



.btn-underline-primary:hover {
    color: var(--primary-hover);
}

.btn-underline-secondary:hover {
    color: var(--gold);
}

.btn-underline-primary::after {
    background-color: var(--primary);
}

.btn-underline-secondary::after {
    color: var(--gold);
}

.btn-underline-primary-light::after {
  background-color: var(--primary-hover);
}

.btn-underline-primary:hover::after {
    background-color: var(--primary-hover);
}

/* Apartments Section */
.apartments {
  background-color: #ffffff;
  position: relative;
}
.apartments .swiper {
  padding-top: 10%;
}

.apartments .swiper .swiper-wrapper {
  align-items: flex-end;
}

.swiper-backface-hidden .swiper-slide {
  transform: scale(0.92);
  transition: all 0.3s ease;
}

.apartments .swiper .swiper-slide.swiper-slide-next {
  transform: scale(1.15) translateY(-8%);
  transition: all 0.3s ease;
}

/* --- Swiper Navigation Buttons --- */
.apartments .swiper-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.apartments .swiper-button-prev,
.apartments .swiper-button-next {
  position: static;
  width: 60px;
  height: 60px;
  margin: 0;
  background-color: transparent;
  border: 1px solid #999388;
  border-radius: 60px;
  color: var(--text-color);
  transition: background-color 0.3s ease;
}

.apartments .swiper-button-prev:hover,
.apartments .swiper-button-next:hover {
  background-color: var(--card-background);
}

.apartments .swiper-button-prev::after,
.apartments .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
  color: #999388;
}


.apartments .apartment-card {
  display: block;
  transition: all 0.3s ease;
  color: #000;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 40px;
  background-color: #e0d5bf;
}

.apartments .apartment-image img {
  width: 100%;
  height: 340px;
  border-radius: 40px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.apartments .apartment-info {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.apartments .apartment-info h3 {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--secondary);
  /*font-weight: 700;*/
}

.apartments .apartment-info .apartment-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apartments .apartment-card .apartment-info .apartment-description p {
  font-size: 1rem;
  text-align: center;
  max-width: 90%;
  margin-bottom: 0;
}

.apartments .apartment-card .apartment-info .btn-arrow {
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: var(--secondary);
}

.apartments .apartment-card:hover .btn-arrow {
  transform: translateX(5px);
}


/* Intro Section */
.intro {
  background-color: #f4f2eb;
}

.intro .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro .intro-logo img {
  width: 200px;
}

.intro .intro-text {
  max-width: 590px;
}

.intro .intro-text p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.7;
}

.intro .intro-icons {
    padding: 3rem 0;
}

.intro .intro-icons h3 {
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
  color: var(--primary-hover);
}

.intro .intro-icons .intro-icons-list .intro-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro .intro-icons .intro-icons-list .intro-icon-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.intro .intro-icons .intro-icons-list .intro-icon-item p {
    letter-spacing: 2px;
    color: var(--primary-hover);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

/* * JOURNAL HERO SECTION
*/
.journal-hero {
  background-image: url('../img/bg/bg1.webp');
  background-size: cover;
  background-position: center;
  color: var(--tertiary);
  display: flex;
  align-items: center;
  padding: 6rem 2.5rem;
  position: relative;
}

.journal-hero .journal-content {
  text-align: center;
}

.journal-hero .journal-content h2 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.journal-hero .journal-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
}


/* EXCLUSIVE BENEFITS SECTION STYLES */
.exclusive-benefits {
  background-color: #f9f7f0;
}

.exclusive-benefits .benefits-image {
  background-image: url('../img/sources/width_1600-01.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.exclusive-benefits .benefits-content {
  padding: 4rem;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exclusive-benefits .benefits-title {
  font-family: var(--secondary-font);
  color: var(--primary-hover);
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exclusive-benefits .benefits-list {
  list-style: none;
  padding-left: 3rem;
  margin-bottom: 3.5rem;
}

.exclusive-benefits .benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-size: 1.1rem;
}

.exclusive-benefits .benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 50%;
}

.exclusive-benefits .benefits-btn {
    display: flex;
    justify-content: flex-end;
}


/* Label Section */
.label {
  background-color: var(--white);
}

.label .label-image img {
  width: 90%;
  height: 500px;
  object-fit: cover;
}

.label .label-text {
  color: var(--primary);
}

.label .label-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 1.2rem;
}

/* Hospitality Section */
.hospitality {
  background-color: var(--light);
}


.hospitality .hospitality-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hospitality .hospitality-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  text-align: left;
  margin-bottom: 1.2rem;
  max-width: 90%;
  color: var(--primary);
}

.hospitality .hospitality-image {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
}

.hospitality .hospitality-image:hover {
  transform: translateY(-10px);
}

.hospitality .hospitality-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.hospitality .hospitality-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.0));
}

.hospitality .hospitality-image img {
  border-radius: 1rem;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hospitality .hospitality-image .image-caption {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  text-align: left;
  font-family: var(--primary-font);
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--tertiary);
  padding: 1rem 2rem;
  z-index: 10;
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.7)
}

/* Journal Section */
.journal {
  background-color: var(--white);
}

.journal .journal-entry {
  margin-bottom: 5rem;
}

.journal .journal-entry:last-child {
  margin-bottom: 0;
}

.journal .journal-entry .journal-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.journal .journal-entry .journal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.journal .journal-entry .journal-content .wellhall-title {
  color: var(--primary-hover);
  font-size: 1.6rem;
  margin: 1rem 0;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  font-family: var(--primary);
  text-transform: uppercase;
  line-height: 1.6;
}

.journal .journal-entry .journal-content .author {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--secondary);
  text-align: center;
}

.journal .journal-entry .journal-content .description {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--secondary);
  max-width: 340px;
  text-align: center;
  font-weight: 700;
}


/* Newsletter Section */
.newsletter {
  background-color: var(--primary);
  letter-spacing: 2px;
}

.newsletter .newsletter-content {
  border-bottom: 1px solid #fff;
  padding: 3rem 0;
}

.newsletter .newsletter-content h2 {
  color: var(--white);
  margin-bottom: 0;
}

.newsletter .newsletter-form .form-control {
  border-radius: 0;
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--primary-font);
  background-color: var(--white);
}

.newsletter .newsletter-form .btn-subscribe {
  background-color: var(--secondary);
  color: var(--tertiary);
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 1rem;
  margin-left: 0.5rem !important;
}

.newsletter .newsletter-form .btn-subscribe:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Footer */
.footer {
  padding-top: 5rem;
  background-color: var(--primary);
  color: var(--white);
  padding-bottom: 5rem;
}

.footer .footer-title h2 {
  color: var(--tertiary);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer .footer-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer .footer-list ul li {
  margin-bottom: 1rem;
}

.footer .footer-list ul li a {
  color: var(--white);
  transition: all 0.3s ease;
}

.footer .footer-list ul li a:hover {
  color: var(--tertiary);
  padding-left: 5px;
}

.footer .footer-contact {
  list-style: none;
  margin-top: 2rem;
    padding-left: 0;
}

.footer .footer-contact li {
  margin-bottom: 2rem;
    position: relative;
}

.footer .footer-contact li::before {
    /*content: "✓";*/
    position: absolute;
    left: -30px;
    text-align: center;
    font-weight: 900;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    top: 5px;
    color: var(--white);
    background-color: var(--secondary);
}


.footer .footer-contact li a {
  color: var(--white);
  transition: all 0.3s ease;
}

.footer .footer-contact li a:hover {
  color: var(--tertiary);
  padding-left: 5px;
}

.footer .footer-about {
    display: flex;
    flex-direction: column;
}

.footer .footer-about img {
    max-width: 180px;
}
.footer .list-contact {
    list-style: none;
    color: var(--white);
}

.footer .list-contact li  {
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

.footer .list-contact li a {
    color: var(--white);
}

.footer .list-contact li i {
    color: var(--tertiary);
    margin-right: 1rem;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
}

.footer-bottom .footer-logo img {
  width: 120px;
}


/* Intro Section */
.owner-intro {
  background-color: var(--light);
}

.owner-intro .owner-intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.owner-intro .owner-intro-content {
  padding: 2rem 0;
}

.owner-intro .owner-intro-content p {
  font-size: 1.2rem;
  padding: 0 1rem 1rem 1rem;
  text-align: center;
  color: var(--primary);
}

/* Approach Section */
.approach {
  background-color: var(--white);
}

.approach .section-title__title {
  color: var(--primary-hover);
  font-size: 3rem;
}

.approach .content-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
}

.approach .content-wrapper .curve-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 10;
  width: 100px;
  overflow: visible;
}

.approach .content-wrapper .curve-svg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.approach .content-wrapper .curve-svg svg {
  height: 100%;
  width: 100%;
}

.approach .content-wrapper .curve-svg svg path {
  stroke: var(--primary);
  stroke-width: 3px;
  fill: none;
}

.approach .content-wrapper .left-column {
  width: 50%;
  padding-right: 20px;
}

.approach .content-wrapper .right-column {
  width: 50%;
  padding-left: 20px;
}

.approach .content-wrapper .approach-section {
  position: relative;
  margin-bottom: 2rem;
}

.approach .content-wrapper .approach-title {
  font-weight: 500;
  color: var(--primary-hover);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.approach .content-wrapper .left-column .approach-section .approach-title {
  text-align: right;
}

.approach .content-wrapper .approach-text {
  text-align: right;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.approach .content-wrapper .approach-description p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Story Section */
.story {
  background-color: var(--light);
  padding-top: 0;
  overflow: hidden;
}

.story .story-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -17%;
  overflow: hidden;
}

.story .story-image-container .story-image {
  width: 700px;
  height: 700px;
  max-width: 80%;
  border-radius: 700px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 3rem;
}


.story .story-content {
  padding: 2rem;
  text-align: center;
}

.story .story-content p {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Brand Section */
.owner-brand {
  height: 400px;
  background-position: center center;
  background-size: cover;
}



/* Benefits Section */
.benefits {
  background-color: var(--light);
  padding-bottom: 0;
}

.benefits .section-title .section-title__title {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 2.5rem;
    line-height: 1.1;
}

.benefits .benefit-items .benefit-item .benefit-image {
    background-size: cover;
    background-position: center center;
    height: 600px;
}

.benefits .benefit-items .benefit-item .benefit-content {
    padding: 2rem;
}

.benefits .benefit-items .benefit-item .benefit-content .title {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 2rem;
    line-height: 1.3;
    color: #6f6b60;
    margin-bottom: 3rem;
}

.benefits .benefit-items .benefit-item .benefit-content .benefit-list {
    font-size: 1.3rem;
    color: var(--primary);
}


/* Conclusion Section */
.conclusion {
  background-position: center center;
  background-size: cover;
}

.conclusion .conclusion-content {
  background-color: var(--white);
  padding: 3rem;
}

.conclusion .conclusion-content .conclusion-title {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 2rem;
    color: #6f6b60;
    margin-bottom: 3rem;
}

.conclusion .conclusion-content p {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

.categories .categories-description {
    margin-bottom: 5rem;
}

.categories .categories-description p {
    font-size: 1.2rem;
    color: var(--primary);
    text-align: center;
}

.categories .categories-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.categories .categories-items .categorie-item {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: block;
    margin-bottom: 5rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
}

.categories .categories-items .categorie-item:hover {
    transform: scale(1.02);
}

.categories .categories-items .categorie-item-title {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 3.5rem;
    color: var(--white);
    padding: 2rem;
    z-index: 10;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Collection Section */
.collection-section {
    background-color: #f6f6f6;
}

.collection-section .section-title .section-title__title {
    color: var(--tertiary);
}

.collection-section .section-title .section-title__subtitle {
    color: var(--primary-hover);
    font-size: 2.1rem;
}

.collection-section .collection-description {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.collection-section .collection-description p {
    font-size: 1.2rem;
    text-align: justify;
}

/* Collection Items Section */
.collection-items-section {
    background-color: var(--white);
}

.collection-items .collection-item {
    margin-bottom: 100px;
}

.collection-items .collection-item .item-image {
    background-position: center center;
    background-size: cover;
    height: 750px;
}

.collection-items .collection-item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 15%;
    height: 100%;
}

.collection-items .collection-item .item-header {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.collection-items .collection-item .item-header .item-title {
    font-size: 3.2rem;
    color: var(--primary-hover);
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #222222;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.collection-items .collection-item .item-content .item-description {
    padding: 1.2rem;
}

.collection-items .collection-item .item-content .item-description p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.collection-items .collection-item .item-content .item-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.collection-items .collection-item .item-content .item-features .feature {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.collection-items .collection-item .item-content .item-features .feature .feature-icon {
    width: 2.5rem;
    display: inline-flex;
    justify-content: center;
    color: #6f6b60;
}

.collection-items .collection-item .item-content .item-features .feature .feature-icon img {
    width: 100%;
}

.collection-items .collection-item .item-content .item-features .feature .feature-text {
    font-size: 1.2rem;
}

/* Detail Section */
.hero-detail {
  height: 85vh;
  background-position: center center;
  background-size: cover;
}

.property-intro {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.intro-text {
  text-align: center;
}

.property-collection-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #dacca9;
  letter-spacing: 0.161em;
  text-transform: uppercase;
}

.property-title {
  font-size: 3rem;
  font-weight: 500;
  font-style: normal;
  color: #6e1f08;
  letter-spacing: 0.141em;
  text-transform: uppercase;
}

.property-intro .property-desc {
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
    padding: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

}

.property-features {
    margin: 2rem 0;
}

.property-features .feature-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.property-features .feature-box img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    object-position: bottom;
}

.property-features .feature-box p {
  font-size: 1.2rem;
}

.property-intro .reservation-btn {
  text-align: center;
}

.property-lieux .property-lieux-banner {
  background-position: center center;
  background-size: cover;
  height: 75vh;
}

.property-lieux-content {
  padding: 4rem 2rem;
}

.property-lieux-title {
  padding-bottom: 1.75rem;
  border-bottom: 2px solid #dacca9;
  margin-bottom: 2rem;
}

.property-lieux-title h2 {
  font-size: 3rem;
  letter-spacing: 8px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6e1f08;
}

.property-lieux-text p {
  text-align: justify;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.property-description-item {
  background-color: #f9f7f0;
  margin-bottom: 1.5rem;
}

.property-description-item__image {
  background-size: cover;
  background-position: center center;
  min-height: 650px;
  width: 100%;
}

.property-description-item__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.property-description-item__title {
  text-align: center;
  margin-bottom: 2rem;
}
.property-description-item__title h3 {
  color: #6e1f08;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #6e1f08;
  display: inline-block;
  padding: 2rem;
}

.property-description-item__content p {
  text-align: justify;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.property-owner-banner {
  background-size: cover;
  background-position: center center;
  height: 35vh;
}

.property-owner-content {
  padding: 4rem 2rem;
}

.property-owner-title {
  padding-bottom: 2rem;
  border-bottom: 2px solid #dacca9;
  margin-bottom: 2rem;
}

.property-owner-title h2 {
  font-size: 3rem;
  letter-spacing: 8px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6e1f08;
}

.property-owner-text p {
  text-align: justify;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/*.property-gallery .slider-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.property-gallery .slider-row {
  width: 100%;
  display: flex;
}

.property-gallery .slider-images {
  display: flex;
  flex-shrink: 0;

  animation-name: slide;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  animation-delay: -30s;
}

.property-gallery .slider-row.reverse .slider-images {
  animation-direction: reverse;
}

.property-gallery .slider-images img {
  width: 33%;
  height: 350px;
  object-fit: cover;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 1.1rem;
}

@keyframes slide {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-50%);
  }
}*/
.property-gallery .slider-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-gallery .slider-row {
    overflow: hidden; /* Crucial: Hides the parts of the slider that are off-screen */
    position: relative;
    display: flex;
}

.property-gallery .slider-images {
    display: flex; /* Lines up images horizontally */
    flex-shrink: 0; /* Prevents the container from shrinking */
    gap: 1rem; /* Space between images */
    width: max-content;
}

.property-gallery .slider-images a,
.property-gallery .slider-images img {
    flex-shrink: 0; /* CRUCIAL: Prevents individual images from being squeezed */
    height: 360px; /* Or your desired height */
    width: auto;
    border-radius: 8px;
    cursor: pointer;
}

.property-gallery #row1 .slider-images {
    animation: slideLeft 360s linear infinite;
}
.property-gallery #row2 .slider-images {
    animation: slideRight 360s linear infinite;
}

#image-gallery:hover .slider-images {
    animation-play-state: paused;
}

@keyframes slideLeft {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

.property-location {
    padding: 4rem 2rem;
}

.property-location-title {
    padding-bottom: 2rem;
    border-bottom: 2px solid #dacca9;
    margin-bottom: 2rem;
}

.property-location h3 {
    font-size: 3rem;
    font-weight: 500;
    color: #6e1f08;
    letter-spacing: 0.161em;
    text-transform: uppercase;
    text-align: center;
}

.property-location iframe {
    width: 100%;
}


.property-reviews {
  padding: 4rem 2rem;
}

.property-reviews-title {
  padding-bottom: 2rem;
  border-bottom: 2px solid #dacca9;
  margin-bottom: 2rem;
}

.property-reviews h3 {
  font-size: 3rem;
  font-weight: 500;
  color: #6e1f08;
  letter-spacing: 0.161em;
  text-transform: uppercase;
  text-align: center;
}


.property-collections-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6e1f08;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.property-collection-item {
  background-size: cover;
  background-position: center center;
  height: 250px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.property-collection-item:hover {
  transform: scale(1.02);
}

.property-collection-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}

.sketch-intro {
    background-size: cover;
    background-position: center center;
    height: 110vh;
    background-image: url('../img/bg/sketch.jpg');
}

.sketch-intro-content {
  margin-top: 20vh;
}

.sketch-intro-content__title h2 {
    text-align: center;
    color: #dacca9;
    font-size: 3.1rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
}

.sketch-intro-content__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.sketch-intro-content__description p {
  font-size: 1.1rem;
  letter-spacing: 3px;
  line-height: 1.7;
  text-transform: uppercase;
  color: white;
  font-family: var(--secondary-font);
}

.sketch-form {
  margin-top: -35vh;
  padding-bottom: 3rem;
}

.sketch-form-box {
  background-color: var(--white);
  border: 1px solid #000;
  padding: 6rem 3rem;
  min-height: 60vh;
}

.sketch-form-box__title {
  font-size: 1.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  margin-bottom: 5rem;
}


.sketch-form-box .wizard-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  text-align: center;
}

.sketch-form-box .wizard-step.active {
  display: block;
}

/* Question text before radio groups */
.sketch-form-box .form-question {
  font-size: 1.1rem;
  color: var(--primary-hover);
  margin-bottom: 1rem;
  text-align: left;
  margin-top: 2rem;
  text-transform: uppercase;
}

.sketch-form-box .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--secondary);
  background-color: transparent;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  color: var(--primary);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  min-height: 50px;
  font-family: var(--primary-font);
}
.sketch-form-box .form-group textarea::placeholder {
  color: var(--secondary);
  opacity: 0.8;
}
.sketch-form-box .form-group textarea:focus {
  border-bottom-color: var(--primary-hover);
}


/* 2-column layout for specific radio groups */
.sketch-form-box .form-options-grid.radio-2-col {
  grid-template-columns: repeat(2, 1fr);
}

/* Custom File Input */
.sketch-form-box .form-group-file {
  text-align: center;
  border: 2px dashed var(--tertiary);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fdfbf5;
}
.sketch-form-box .form-group-file:hover {
  border-color: var(--primary-hover);
  background-color: #f9f7f0;
}
.sketch-form-box .form-group-file input[type="file"] {
  display: none;
}
.sketch-form-box .form-group-file label {
  cursor: pointer;
  color: var(--secondary);
  font-size: 1.1rem;
}
.sketch-form-box .form-group-file label i {
  margin-right: 10px;
  color: var(--primary-hover);
  font-size: 1.3rem;
}
.sketch-form-box .file-name {
  display: block;
  margin-top: 10px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--primary-hover);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Elements */
.sketch-form-box .form-group {
  position: relative;
  margin-bottom: 5rem;
}

.sketch-form-box .form-group input, .sketch-form-box .form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--secondary);
  background-color: transparent;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  color: var(--primary-hover);
  outline: none;
  transition: border-color 0.3s;
}

.sketch-form-box .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23370e04'%3E%3Cpath d='M6 9L0 3h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.sketch-form-box .form-group input::placeholder {
  color: transparent;
}

.sketch-form-box .form-group .form-label {
  position: absolute;
  top: 0.5rem;
  left: 0;
  color: var(--secondary);
  font-size: 1.2rem;
  pointer-events: none;
  transition: all 0.3s;
}

.sketch-form-box .form-group input:focus + .form-label,
.sketch-form-box .form-group textarea:focus + .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--primary-hover);
}

.sketch-form-box .form-group input:focus, .sketch-form-box .form-group select:focus, .sketch-form-box .form-group textarea:focus {
  border-bottom-color: var(--primary-hover);
}

/* Radio Button Options */
.sketch-form-box .form-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sketch-form-box .form-option input[type="radio"] {
  display: none;
}

.sketch-form-box .form-option label {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--tertiary);
  text-align: center;
  font-size: 1.1rem;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sketch-form-box .form-option label:hover {
  background-color: #f5f1e9;
  border-color: var(--primary-hover);
}

.sketch-form-box .form-option input[type="radio"]:checked + label {
  background-color: var(--tertiary);
  border-color: var(--primary-hover);
  color: var(--primary);
  font-weight: 700;
}

/* Contact Info Grid */
.sketch-form-box .form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sketch-form-box .error-message {
  color: #c0392b;
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}



/* Wizard Navigation */
.sketch-form-box .wizard-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.sketch-form-box .btn-wizard-next, .sketch-form-box .btn-wizard-submit, .sketch-form-box .btn-wizard-prev {
  padding: 0.8rem 2.5rem;
  border: 1px solid transparent;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sketch-form-box .btn-wizard-next, .sketch-form-box .btn-wizard-submit {
  background-color: var(--primary-hover);
  color: var(--light);
}
.sketch-form-box .btn-wizard-next:hover, .sketch-form-box .btn-wizard-submit:hover {
  background-color: var(--primary-hover);
}

.sketch-form-box .btn-wizard-prev {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.sketch-form-box .btn-wizard-prev:hover {
  background-color: var(--secondary);
  color: var(--light);
}

.sketch-form-box .btn-wizard-submit {
  display: none;
}


.placeholder-loader {
    position: relative;
    overflow: hidden;
    border-color: #b9b9b9!important
}

.placeholder-loader.absolute {
    position: absolute
}

.placeholder-loader.p-w100 {
    width: 100%
}

.placeholder-loader.p-w90 {
    width: 90%
}

.placeholder-loader.p-w80 {
    width: 80%
}

.placeholder-loader.p-w70 {
    width: 70%
}

.placeholder-loader.p-w60 {
    width: 60%
}

.placeholder-loader.p-w50 {
    width: 50%
}

.placeholder-loader.p-w40 {
    width: 40%
}

.placeholder-loader.p-w30 {
    width: 30%
}

.placeholder-loader.p-w20 {
    width: 20%
}

.placeholder-loader.p-h300 {
    height: 300px
}

.placeholder-loader.p-h200 {
    height: 200px
}

.placeholder-loader.p-h150 {
    height: 150px
}

.placeholder-loader.p-h100 {
    height: 100px
}

.placeholder-loader.p-h80 {
    height: 70px
}

.placeholder-loader.p-h60 {
    height: 60px
}

.placeholder-loader.p-h50 {
    height: 50px
}

.placeholder-loader.p-h40 {
    height: 40px
}

.placeholder-loader.p-h30 {
    height: 30px
}

.placeholder-loader.p-h20 {
    height: 20px
}

.placeholder-loader:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #b9b9b9;
    z-index: 8
}

.placeholder-loader:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 500%;
    margin-left: -250%;
    pointer-events: none;
    content: " ";
    z-index: 9;
    background: linear-gradient(to right,rgba(255,255,255,0) 46%,rgba(255,255,255,.35) 50%,rgba(255,255,255,0) 54%) 50% 50%;
    animation: ph-animation .8s linear infinite
}

@keyframes ph-animation {
    0% {
        transform: translate3d(-30%,0,0)
    }

    to {
        transform: translate3d(30%,0,0)
    }
}
