/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.sn-pro-regular {
  font-family: "SN Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sn-pro-medium {
  font-family: "SN Pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.sn-pro-bold {
  font-family: "SN Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sn-pro-extrabold {
  font-family: "SN Pro", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.sn-pro-black {
  font-family: "SN Pro", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.sn-pro-light {
  font-family: "SN Pro", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.felipa-regular {
  font-family: "Felipa", serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --primary-color: #367f3b;
  --secondary-color: #cd6b73;
  --accent-color: #b44950;
  --text-color: #5e5e5e;
  --light-color: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "SN Pro", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 6px;
}

.lang-btn {
  padding: 7px 10px;
  border: 1px solid var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

/* Navigation */
#header-root {
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.5s ease;
  transform: translateY(-100%);
}

.navbar.visible {
  transform: translateY(0);
}

#header-root .navbar {
  position: relative;
  top: auto;
  z-index: auto;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 12px 20px;
  max-width: 92%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Felipa", serif;
}
.logo-text2 {
  background: linear-gradient(
    180deg,
    var(--accent-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: math;
}

.logo:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: clamp(18px, 2vw, 30px);
  margin: auto;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  padding: 8px;
  padding-top: 4px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .navbar .container {
    gap: 16px;
  }

  .logo {
    gap: 10px;
    font-size: 19px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 18px;
  }

  .lang-btn {
    padding: 6px 9px;
    font-size: 12px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px 20px;
  margin-top: -8vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 0 15px 15px;
    margin-top: 0;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/hero.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}

.hero-bg.fade-in {
  opacity: 1;
  animation: heroFinalFlash 0.9s ease-out;
}

@keyframes heroFinalFlash {
  0% {
    filter: brightness(1.35);
  }
  55% {
    filter: brightness(1.15);
  }
  100% {
    filter: brightness(1);
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-video.hidden {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    169deg,
    rgb(154 215 255 / 35%) 0%,
    rgb(6 49 0 / 25%) 50%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-overlay.fade-in {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-content.fade-in {
  opacity: 1;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  animation: fadeIn 1.2s ease-out 0.2s both;
}

@media (max-width: 768px) {
  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 15px;
  }
}

.title-line {
  display: block;
  font-weight: 400;
  font-size: 0.9em;
  opacity: 0.9;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(5, 64, 0, 0.532);
}

.title-highlight {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(5, 64, 0, 0.532);
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeIn 1.4s ease-out 0.4s both;
  text-shadow: 0 1px 4px rgb(4 45 0);
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }
}

.hero-features {
  display: none;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1.6s ease-out 0.6s both;
  text-shadow: 0 1px 4px rgb(4 45 0);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 20px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1.8s ease-out 0.8s both;
}

@media (max-width: 768px) {
  .hero-cta {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .cta-button {
    width: 100%;
    max-width: 280px;
  }
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 116, 122, 0.3);
  border: 2px solid transparent;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}

.cta-button:hover {
  background: #c46474;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 116, 130, 0.4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--white);
  box-shadow: none;
  text-shadow: 0px 0px 6px rgb(1, 43, 0);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  width: 2px;
  height: 30px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Rooms Section */
.rooms-section {
  padding: 80px 20px;
  background: var(--white);
}

@media (max-width: 768px) {
  .rooms-section {
    padding: 60px 15px;
  }
}

.rooms-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.room-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.room-flower-decoration {
  position: absolute;
  bottom: -157px;
  left: -52px;
  right: 0;
  height: 527px;
  rotate: 50deg;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.65;
}

.room-flower-decoration .flower-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.15;
}

.room-image {
  position: relative;
  overflow: hidden;

  height: 254px;
  margin-top: -2px;
}

@media (max-width: 768px) {
  .room-image {
    height: 200px;
  }
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-info {
  padding: 30px;
  position: relative;
}

@media (max-width: 768px) {
  .room-info {
    padding: 20px;
  }
}

.room-info h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.room-info p {
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 15px;
}

.amenities {
  list-style: none;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenities li {
  padding: 6px 12px;
  background: var(--light-color);
  border-radius: 20px;
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 500;
}

.room-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px;
  background: #ffffff3d;
  border-radius: 12px;
  z-index: 2;
  position: relative;
  border: 2px solid rgb(197 197 197 / 42%);
  backdrop-filter: blur(3px);
}

.price-label {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 14px;
}

.price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
}

.room-cta {
  display: block;
  text-align: center;
  padding: 14px;
  z-index: 2;
  position: relative;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.2);
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .room-cta {
    padding: 12px;
    font-size: 15px;
  }
}
.margherita {
  background: var(--white);
  color: rgb(206, 172, 0);
}
.giglio {
  background: rgb(255, 253, 225);
  color: rgb(206, 113, 0);
}
.rosa {
  background: rgb(221, 22, 59);

  color: rgb(255, 227, 232);
}
.room-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 246, 216, 0.464);
}

/* Entire House Section */
.entire-house-section {
  padding: 80px 20px;
  background: linear-gradient(15deg, var(--light-color) 20%, #ffebee);
}

@media (max-width: 768px) {
  .entire-house-section {
    padding: 60px 15px;
  }
}

.entire-house-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 768px) {
  .entire-house-content {
    flex-direction: column;
    gap: 30px;
  }
}

.entire-house-image {
  flex: 1;
}

.entire-house-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.entire-house-info {
  flex: 1;
}
.entire-house-info .price-label {
  font-weight: 500;
  color: rgb(93, 61, 36);
  font-size: 14px;
}
.entire-house-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.entire-house-info p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: var(--white);
}

.services-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.service-item {
  text-align: center;
  padding: 30px;
  background: var(--light-color);
  border-radius: 10px;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-item p {
  color: var(--secondary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 20px 20px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-links {
  font-size: 14px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  margin: 0 5px;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .language-switcher {
    position: fixed;
    top: auto;
    bottom: 20px;
    right: 20px;
    gap: 3px;
    margin-left: 0;
    z-index: 98;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-color);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-left: 0;
    padding: 40px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    height: fit-content;
    transition:
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.5s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
  }

  .nav-link::after {
    bottom: -8px;
    height: 3px;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 101;
  }

  .mobile-menu-btn.active {
    position: fixed;

    right: 20px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  h1 {
    font-weight: 700;
  }
  h2 {
    font-weight: 600;
  }
  h3 {
    font-weight: 500;
  }

  .hero h1 {
    font-size: 32px;
    font-weight: 700;
  }

  .entire-house-content {
    flex-direction: column;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* Booking Section */
.booking-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-color), #fff);
}

@media (max-width: 768px) {
  .booking-section {
    padding: 60px 15px;
  }
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-header h1 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .booking-header h1 {
    font-size: 32px;
  }
}

.booking-header p {
  font-size: 18px;
  color: var(--secondary-color);
}

.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .booking-form-container {
    padding: 25px;
    border-radius: 16px;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.extras {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px;
  background: var(--light-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  background: #e8e8e8;
}

.checkbox-label.hidden {
  display: none;
}

.form-help,
.booking-info-note {
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 1.5;
}

.cancellation-waiver {
  align-items: flex-start;
  border: 1px solid rgba(212, 116, 122, 0.28);
  color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.price-summary {
  background: linear-gradient(
    180deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
}

.price-summary.hidden {
  display: none;
}

.price-summary h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.hidden {
  display: none;
}

.price-row.discount {
  color: #e8ffd8;
  font-weight: 700;
}

.price-row.total {
  font-size: 20px;
  font-weight: 700;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: var(--white);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 32px;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 32px;
  min-width: 50px;
}

.contact-details h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--text-color);
  line-height: 1.6;
}

.contact-form-container {
  background: var(--light-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 25px;
    border-radius: 16px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container {
  margin-top: 60px;
  text-align: center;
}

.map-placeholder {
  background: var(--light-color);
  padding: 60px;
  border-radius: 20px;
  border: 2px dashed var(--secondary-color);
}
.map-section h1 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .map-section h1 {
    font-size: 28px;
  }
}
.map-section {
  background: var(--light-color);
  padding: 20px 20px 40px;
}

@media (max-width: 768px) {
  .map-section {
    padding: 40px 15px;
  }
}

.map-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }
}
/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

#confirmation-details {
  text-align: left;
  margin: 20px 0;
  padding: 20px;
  background: var(--light-color);
  border-radius: 10px;
}

#confirmation-details p {
  margin: 10px 0;
  color: var(--text-color);
}

/* Legal Modal */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.legal-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.3s ease;
}

.legal-modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.legal-modal-header h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 24px;
}

.legal-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.legal-modal-close:hover {
  background: var(--light-color);
  color: var(--primary-color);
}

.legal-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.legal-modal-body h2 {
  color: var(--primary-color);
  margin: 25px 0 15px;
  font-size: 20px;
}

.legal-modal-body h2:first-child {
  margin-top: 0;
}

.legal-modal-body h3 {
  color: var(--secondary-color);
  margin: 20px 0 10px;
  font-size: 18px;
}

.legal-modal-body p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

.legal-modal-body ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.legal-modal-body li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-color);
}

.legal-modal-body a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-modal-body a:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .legal-modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .legal-modal-header {
    padding: 20px;
  }

  .legal-modal-header h2 {
    font-size: 20px;
  }

  .legal-modal-body {
    padding: 20px;
  }

  .legal-modal-body h2 {
    font-size: 18px;
  }

  .legal-modal-body h3 {
    font-size: 16px;
  }
}

/* Room Detail Page */
.room-detail {
  padding: 100px 20px;
  background: var(--white);
}

@media (max-width: 768px) {
  .room-detail {
    padding: 60px 15px;
  }
}

.room-header {
  text-align: center;
  margin-bottom: 50px;
}

.room-header h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .room-header h1 {
    font-size: 36px;
  }
}

.room-subtitle {
  font-size: 20px;
  color: var(--secondary-color);
}

.room-gallery {
  margin-bottom: 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.room-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .room-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.room-description,
.room-amenities,
.room-pricing,
.room-booking {
  background: var(--light-color);
  padding: 30px;
  border-radius: 16px;
}

.room-description h2,
.room-amenities h2,
.room-pricing h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.room-description p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.amenities-list li {
  padding: 8px 0;
  color: var(--text-color);
}

.price-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.seasonal-price-list {
  display: grid;
  gap: 16px;
}

.seasonal-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

.seasonal-price-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.seasonal-price-period {
  color: #0d6f7e;
  font-size: 17px;
  font-weight: 500;
}

.seasonal-price-value {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.price-note {
  font-size: 13px;
  color: var(--secondary-color);
  margin-top: 10px;
  font-style: italic;
}

.cta-button.large {
  padding: 18px 50px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .price-card {
    padding: 18px;
  }

  .seasonal-price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .seasonal-price-period {
    font-size: 16px;
  }

  .seasonal-price-value {
    font-size: 18px;
  }

  .cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
  }
}

/* Slideshow Styles - Collage/Mosaic */
.slideshow {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--light-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  padding: 8px;
}

@media (max-width: 768px) {
  .slideshow {
    max-height: 400px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 6px;
    padding: 6px;
  }
}

.undertitle {
  filter: invert(0.34) sepia(0.4) hue-rotate(15deg);
  pointer-events: none;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.slide img:hover {
  transform: scale(1.05);
}

/* Image Zoom Modal */
.image-zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-zoom-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.image-zoom-content {
  max-width: 95%;
  max-height: 95%;
  position: relative;
}

.image-zoom-content img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.image-zoom-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.image-zoom-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .image-zoom-close {
    top: -40px;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}

/* History Badge */
.history-badge {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  text-shadow: 0 1px 4px rgb(4 45 0);
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: 30px;
  }
}

/* Products Section */
.products-section {
  padding: 80px 20px;
}

.local-seo-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--light-color) 100%);
}

.local-seo-section .eyebrow {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.local-seo-section h2 {
  color: var(--primary-color);
  font-size: 36px;
  line-height: 1.2;
  margin: 0 auto 20px;
  max-width: 860px;
  text-align: center;
}

.local-seo-section > .container > p:not(.eyebrow) {
  font-size: 18px;
  margin: 0 auto 35px;
  max-width: 920px;
  text-align: center;
}

.local-seo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-seo-grid article {
  background: var(--white);
  border: 1px solid rgba(54, 127, 59, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 26px;
}

.local-seo-grid h3 {
  color: var(--primary-color);
  font-size: 21px;
  margin-bottom: 10px;
}

.map-intro {
  color: var(--text-color);
  font-size: 17px;
  margin: 0 auto 24px;
  max-width: 820px;
  text-align: center;
}

@media (max-width: 768px) {
  .local-seo-section {
    padding: 60px 15px;
  }

  .local-seo-section h2 {
    font-size: 28px;
  }

  .local-seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 60px 15px;
  }
}

.products-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .products-section h2 {
    font-size: 28px;
  }
}

.products-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .products-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.products-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.products-scroll::-webkit-scrollbar {
  height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
  background: #e0e0e000;
  border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.product-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 260px;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-info p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Booking Info Accordion */
.booking-info-accordion {
  max-width: 600px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .booking-info-accordion {
    margin: 0 auto 30px;
  }
}

.accordion-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 16px 20px;
    font-size: 15px;
  }
}

.accordion-header:hover {
  background: var(--light-color);
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-content p,
.accordion-content ul {
  padding: 0 24px 20px;
  color: var(--text-color);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .accordion-content p,
  .accordion-content ul {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

.accordion-content ul {
  list-style: none;
  padding-left: 40px;
}

.accordion-content ul li {
  margin-bottom: 8px;
  position: relative;
}

.accordion-content ul li::before {
  content: "•";
  position: absolute;
  left: -20px;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Room Included Services */
.room-included {
  background: var(--light-color);
  padding: 30px;
  border-radius: 16px;
  margin-top: 20px;
}

.room-included h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.included-list li {
  padding: 8px 0;
  color: var(--text-color);
}

/* Room Schedule */
.room-schedule {
  background: var(--light-color);
  padding: 30px;
  border-radius: 16px;
  margin-top: 20px;
}

.room-schedule h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.schedule-info p {
  margin: 10px 0;
  color: var(--text-color);
  line-height: 1.6;
}

.schedule-info strong {
  color: var(--primary-color);
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 20px 0;
  margin-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-color);
}

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

.breadcrumb-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-color);
  opacity: 0.5;
  font-size: 12px;
}

.breadcrumb-item.current {
  color: var(--text-color);
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 15px 0;
  }

  .breadcrumb-list {
    gap: 5px;
  }

  .breadcrumb-item {
    font-size: 13px;
  }
}
