@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #2B2B2B;
  line-height: 1.5;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.max-w-7xl {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .site-footer .lg-grid-cols-4 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.site-header-topbar {
  background-color: #2F7D5C;
  color: #ffffff;
  padding: 0.5rem 1rem;
}
.site-header-topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem; /* text-xs */
}
.site-header-topbar .contact-links a {
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-header-topbar .contact-links a:hover {
  color: #6BCB77;
}

.site-header-main {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  transition: all 0.3s;
}
.site-header-main.is-scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.site-header-main .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.site-header-main .nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .site-header-main .nav-desktop {
    display: flex;
  }
}
.site-header-main .nav-desktop li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.site-header-main .nav-desktop a {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  color: #2B2B2B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header-main .nav-desktop a:hover, .site-header-main .nav-desktop a.active, .site-header-main .nav-desktop a.current-menu-item > a {
  color: #6BCB77;
}
.site-header-main .nav-mobile-btn {
  display: block;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .site-header-main .nav-mobile-btn {
    display: none;
  }
}

.nav-mobile-menu {
  display: block;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .nav-mobile-menu {
    display: none;
  }
}
.nav-mobile-menu .menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.nav-mobile-menu .menu-inner li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile-menu .menu-inner a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2B2B2B;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s;
}
.nav-mobile-menu .menu-inner a:hover, .nav-mobile-menu .menu-inner a.active, .nav-mobile-menu .menu-inner a.current-menu-item > a {
  background-color: #EAF7F0;
  color: #6BCB77;
}
.nav-mobile-menu .menu-inner .mobile-reserve-btn {
  background-color: #6BCB77;
  color: #ffffff !important;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}
.nav-mobile-menu .menu-inner .mobile-reserve-btn:hover {
  background-color: #2F7D5C;
  color: #ffffff;
}

/* Home Page Specific SCSS */
.home-hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero .hero-bg {
  position: absolute;
  inset: 0;
}
.home-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.home-hero .home-hero-content {
  position: relative;
  z-index: 10;
  color: white;
}
.home-hero .home-hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.home-hero .home-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #f3f4f6;
}
.home-hero .home-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .home-hero .home-hero-buttons {
    flex-direction: row;
  }
}
.home-hero .btn-secondary {
  background-color: white;
  color: #2F7D5C;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
.home-hero .btn-secondary:hover {
  background-color: #f3f4f6;
}

.booking-engine-wrapper {
  margin-top: 3rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
}

.booking-form .form-group {
  text-align: left;
}
.booking-form .form-label {
  font-size: 0.875rem;
  color: #4b5563;
  display: block;
  margin-bottom: 0.25rem;
}
.booking-form .form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
}
.booking-form .align-end {
  align-items: flex-end;
}

.highlight-item {
  margin-bottom: 2rem;
}
.highlight-item .highlight-icon {
  background-color: #EAF7F0;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.highlight-item .icon-svg {
  color: #6BCB77;
  width: 32px;
  height: 32px;
}
.highlight-item .highlight-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.highlight-item .highlight-desc {
  color: #4b5563;
  font-size: 0.875rem;
}

.card-hover-shadow {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background-color: white;
}
.card-hover-shadow:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.card-hover-shadow .room-img-small {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.card-hover-shadow .room-content-small {
  padding: 1.5rem;
}
.card-hover-shadow .room-title-small {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.card-hover-shadow .room-desc-small {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dish-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dish-list .dish-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dish-list .svg-check {
  color: #6BCB77;
}
.dish-list .dish-txt {
  color: #374151;
  font-weight: 500;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-list .location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.location-list .location-icon {
  color: #6BCB77;
  margin-top: 0.25rem;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.location-list .location-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}
.location-list .location-desc {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.mt-auto {
  margin-top: auto;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.gap-xs {
  gap: 0.25rem;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 2rem;
}

.gap-xl {
  gap: 3rem;
}

.p-sm {
  padding: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pb-lg {
  padding-bottom: 2rem;
}

.pt-xl {
  padding-top: 4rem;
}

.pb-xl {
  padding-bottom: 4rem;
}

.pt-xxl {
  padding-top: 6rem;
}

.pb-xxl {
  padding-bottom: 6rem;
}

.py-xxl {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 3rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.text-gray-light {
  color: #f3f4f6;
}

.text-gray {
  color: #4b5563;
}

.text-gray-dark {
  color: #374151;
}

.text-primary {
  color: #6BCB77;
}

.bg-white {
  background-color: #ffffff;
}

.bg-light-green {
  background-color: #EAF7F0;
  color: #4DA8DA;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-md {
  border-radius: 0.375rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-64 {
  height: 16rem;
}

.h-80 {
  height: 20rem;
}

.h-96 {
  height: 24rem;
}

.object-cover {
  object-fit: cover;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.cursor-pointer {
  cursor: pointer;
}

.d-block {
  display: block;
}

.border-light {
  border: 1px solid #e5e7eb;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay:not(.hidden) {
  display: flex;
}

.modal-container {
  background-color: white;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 48rem;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  background: white;
  border-radius: 50%;
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.modal-close-btn:hover {
  background-color: #f3f4f6;
}

.room-card {
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s, transform 0.3s;
}
.room-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-item .group-hover-scale {
  transition: transform 0.3s ease;
}
.gallery-item:hover .group-hover-scale {
  transform: scale(1.1);
}

.w-hover-white-to-green {
  background-color: #6BCB77 !important;
  color: white !important;
}
.w-hover-white-to-green:hover {
  background-color: white !important;
  color: #2F7D5C !important;
}

.food-card .food-img-wrapper {
  overflow: hidden;
}
.food-card .food-img {
  transition: transform 0.3s ease;
}
.food-card:hover .food-img {
  transform: scale(1.1);
}

.page-contact .contact-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-contact .contact-hero {
    height: 400px;
  }
}
.page-contact .contact-hero .hero-bg-wrapper {
  position: absolute;
  inset: 0;
}
.page-contact .contact-hero .hero-bg-wrapper .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-contact .contact-hero .hero-bg-wrapper .hero-overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.page-contact .contact-hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
}
.page-contact .contact-hero .hero-content .hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-contact .contact-hero .hero-content .hero-title {
    font-size: 3rem;
  }
}
.page-contact .contact-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: #f3f4f6;
}
@media (min-width: 768px) {
  .page-contact .contact-hero .hero-content .hero-subtitle {
    font-size: 1.5rem;
  }
}
.page-contact .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.page-contact .container-large {
  max-width: 80rem;
}
.page-contact .container-medium {
  max-width: 56rem;
}
.page-contact .container-small {
  max-width: 48rem;
}
.page-contact .contact-cards-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.page-contact .contact-cards-section .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .page-contact .contact-cards-section .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-contact .contact-cards-section .quick-contact-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s;
}
.page-contact .contact-cards-section .quick-contact-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.page-contact .contact-cards-section .quick-contact-card .card-icon-wrapper {
  background-color: #EAF7F0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background-color 0.3s;
}
.page-contact .contact-cards-section .quick-contact-card .card-icon {
  color: #6BCB77;
  transition: color 0.3s;
}
.page-contact .contact-cards-section .quick-contact-card .card-icon svg {
  width: 32px;
  height: 32px;
}
.page-contact .contact-cards-section .quick-contact-card:hover .card-icon-wrapper {
  background-color: #6BCB77;
}
.page-contact .contact-cards-section .quick-contact-card:hover .card-icon {
  color: white;
}
.page-contact .contact-cards-section .quick-contact-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}
.page-contact .contact-cards-section .quick-contact-card .card-content {
  color: #1f2937;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.page-contact .contact-cards-section .quick-contact-card .card-subtitle-small {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.page-contact .contact-cards-section .quick-contact-card .card-action-text {
  color: #6BCB77;
  font-weight: 500;
  transition: color 0.3s;
}
.page-contact .contact-cards-section .quick-contact-card:hover .card-action-text {
  color: #2F7D5C;
}
.page-contact .contact-info-map-section {
  padding: 5rem 0;
  background-color: #EAF7F0;
}
.page-contact .contact-info-map-section .info-map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .page-contact .contact-info-map-section .info-map-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-contact .contact-info-map-section .map-container-box {
  height: 24rem;
  background-color: rgba(238, 85, 238, 0.7333333333);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.page-contact .contact-info-map-section .map-container-box .map-iframe-full {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.page-contact .contact-info-map-section .contact-details-box {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
}
.page-contact .contact-info-map-section .contact-details-box .details-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}
.page-contact .contact-info-map-section .contact-details-box .details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-icon {
  color: #6BCB77;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-icon svg {
  width: 24px;
  height: 24px;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-text {
  color: #374151;
  word-break: break-all;
  margin: 0;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-text-link {
  color: #374151;
  word-break: break-all;
  transition: color 0.3s;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-text-link:hover {
  color: #6BCB77;
}
.page-contact .contact-info-map-section .contact-details-box .detail-item .detail-subtext {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.page-contact .contact-form-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.page-contact .contact-form-section .form-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-contact .contact-form-section .form-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}
@media (min-width: 768px) {
  .page-contact .contact-form-section .form-title {
    font-size: 2.25rem;
  }
}
.page-contact .contact-form-section .form-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
}
.page-contact .contact-form-section .form-container-wrapper {
  background-color: #F5F7FA;
  padding: 2rem;
  border-radius: 0.5rem;
}
.page-contact .contact-form-section .static-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-contact .contact-form-section .static-form .grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .page-contact .contact-form-section .static-form .grid-2-cols {
    grid-template-columns: 1fr 1fr;
  }
}
.page-contact .contact-form-section .static-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-contact .contact-form-section .static-form .input-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.page-contact .contact-form-section .static-form .form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: white;
  font-family: inherit;
}
.page-contact .contact-form-section .static-form .form-input:focus {
  border-color: #6BCB77;
  outline: none;
}
.page-contact .contact-form-section .static-form .resize-none {
  resize: none;
}
.page-contact .contact-form-section .static-form .submit-button-full {
  width: 100%;
  background-color: #6BCB77;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.page-contact .contact-form-section .static-form .submit-button-full:hover {
  background-color: #2F7D5C;
}
.page-contact .useful-info-section {
  padding: 5rem 0;
  background-color: #EAF7F0;
  text-align: center;
}
.page-contact .useful-info-section .useful-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;
}
@media (min-width: 768px) {
  .page-contact .useful-info-section .useful-title {
    font-size: 2.25rem;
  }
}
.page-contact .useful-info-section .useful-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .page-contact .useful-info-section .useful-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-contact .useful-info-section .useful-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.page-contact .useful-info-section .useful-card .useful-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}
.page-contact .useful-info-section .useful-card .useful-card-desc {
  color: #4b5563;
}
.page-contact .contact-cta-section {
  padding: 5rem 0;
  background-color: #2F7D5C;
  color: white;
}
.page-contact .contact-cta-section .cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .page-contact .contact-cta-section .cta-title {
    font-size: 2.25rem;
  }
}
.page-contact .contact-cta-section .cta-subtitle {
  font-size: 1.25rem;
  color: #f3f4f6;
  margin-bottom: 2rem;
}
.page-contact .contact-cta-section .cta-button {
  display: inline-block;
  background-color: #6BCB77;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
}
.page-contact .contact-cta-section .cta-button:hover {
  background-color: white;
  color: #2F7D5C;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

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

.reserve-page .reserve-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .reserve-page .reserve-hero {
    height: 400px;
  }
}
.reserve-page .reserve-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reserve-page .reserve-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reserve-page .reserve-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.reserve-page .reserve-hero__container {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;
}
.reserve-page .reserve-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .reserve-page .reserve-hero__title {
    font-size: 3rem;
  }
}
.reserve-page .reserve-hero__subtitle {
  font-size: 1.25rem;
  color: #f3f4f6;
}
@media (min-width: 768px) {
  .reserve-page .reserve-hero__subtitle {
    font-size: 1.5rem;
  }
}
.reserve-page .booking-section {
  padding: 5rem 0;
  background-color: #F5F7FA;
}
.reserve-page .booking-section__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reserve-page .booking-section .booking-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}
.reserve-page .booking-section .booking-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.reserve-page .booking-section .booking-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reserve-page .booking-section .booking-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reserve-page .booking-section .booking-form__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.reserve-page .booking-section .booking-form__field {
  display: flex;
  flex-direction: column;
}
.reserve-page .booking-section .booking-form__field--submit {
  justify-content: flex-end;
}
.reserve-page .booking-section .booking-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reserve-page .booking-section .booking-form__icon {
  color: #6BCB77;
}
.reserve-page .booking-section .booking-form__input, .reserve-page .booking-section .booking-form__select {
  padding: 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  width: 100%;
  transition: border-color 0.2s;
}
.reserve-page .booking-section .booking-form__input:focus, .reserve-page .booking-section .booking-form__select:focus {
  outline: none;
  border-color: #6BCB77;
}
.reserve-page .booking-section .booking-form__button {
  width: 100%;
  background-color: #6BCB77;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.reserve-page .booking-section .booking-form__button:hover {
  background-color: #2F7D5C;
}
.reserve-page .rooms-selection {
  padding: 5rem 0;
  background-color: #ffffff;
}
.reserve-page .rooms-selection__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reserve-page .rooms-selection__header {
  text-align: center;
  margin-bottom: 3rem;
}
.reserve-page .rooms-selection__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .reserve-page .rooms-selection__title {
    font-size: 2.25rem;
  }
}
.reserve-page .rooms-selection__subtitle {
  font-size: 1.125rem;
  color: #4B5563;
}
.reserve-page .rooms-selection .rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .reserve-page .rooms-selection .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reserve-page .rooms-selection .room-item {
  background-color: #ffffff;
  border: 2px solid #E5E7EB;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.2s;
}
.reserve-page .rooms-selection .room-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #6BCB77;
}
.reserve-page .rooms-selection .room-item__image-wrapper {
  height: 14rem;
  overflow: hidden;
}
.reserve-page .rooms-selection .room-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reserve-page .rooms-selection .room-item__content {
  padding: 1.5rem;
}
.reserve-page .rooms-selection .room-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.reserve-page .rooms-selection .room-item__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.reserve-page .rooms-selection .room-item__capacity {
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.reserve-page .rooms-selection .room-item__price-box {
  text-align: right;
}
.reserve-page .rooms-selection .room-item__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F7D5C;
}
.reserve-page .rooms-selection .room-item__per-night {
  font-size: 0.875rem;
  color: #4B5563;
}
.reserve-page .rooms-selection .room-item__features {
  margin-bottom: 1.5rem;
}
.reserve-page .rooms-selection .room-item__features-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.reserve-page .rooms-selection .room-item__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.reserve-page .rooms-selection .room-item__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}
.reserve-page .rooms-selection .room-item__feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #6BCB77;
  border-radius: 50%;
}
.reserve-page .rooms-selection .room-item__button {
  display: block;
  width: 100%;
  background-color: #6BCB77;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}
.reserve-page .rooms-selection .room-item__button:hover {
  background-color: #2F7D5C;
}
.reserve-page .stay-info {
  padding: 5rem 0;
  background-color: #EAF7F0;
}
.reserve-page .stay-info__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reserve-page .stay-info__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.reserve-page .stay-info__card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.reserve-page .stay-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reserve-page .stay-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reserve-page .stay-info__block-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reserve-page .stay-info__icon {
  color: #6BCB77;
}
.reserve-page .stay-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reserve-page .stay-info__item {
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.reserve-page .direct-benefits {
  padding: 5rem 0;
  background-color: #ffffff;
}
.reserve-page .direct-benefits__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reserve-page .direct-benefits__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.reserve-page .direct-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reserve-page .direct-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reserve-page .direct-benefits .benefit-card {
  background-color: #EAF7F0;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.reserve-page .direct-benefits .benefit-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.reserve-page .direct-benefits .benefit-card__desc {
  color: #374151;
}
.reserve-page .support-section {
  padding: 5rem 0;
  background-color: #EAF7F0;
}
.reserve-page .support-section__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.reserve-page .support-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.reserve-page .support-section__subtitle {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2rem;
}
.reserve-page .support-section__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .reserve-page .support-section__buttons {
    flex-direction: row;
  }
}
.reserve-page .support-section .support-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  color: #111827;
  transition: box-shadow 0.2s;
}
.reserve-page .support-section .support-button:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.reserve-page .support-section .support-button__icon {
  color: #6BCB77;
}
.reserve-page .platforms-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.reserve-page .platforms-section__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.reserve-page .platforms-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.reserve-page .platforms-section__desc {
  color: #374151;
  margin-bottom: 2rem;
}
.reserve-page .platforms-section__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .reserve-page .platforms-section__buttons {
    flex-direction: row;
  }
}
.reserve-page .platforms-section .platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s;
}
.reserve-page .platforms-section .platform-button:hover {
  opacity: 0.9;
}
.reserve-page .reserve-cta {
  padding: 5rem 0;
  background-color: #2F7D5C;
  color: #ffffff;
  text-align: center;
}
.reserve-page .reserve-cta__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reserve-page .reserve-cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .reserve-page .reserve-cta__title {
    font-size: 2.25rem;
  }
}
.reserve-page .reserve-cta__subtitle {
  font-size: 1.25rem;
  color: #f3f4f6;
  margin-bottom: 2rem;
}
.reserve-page .reserve-cta__button {
  display: inline-block;
  background-color: #6BCB77;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.2s;
}
.reserve-page .reserve-cta__button:hover {
  background-color: #ffffff;
  color: #2F7D5C;
}

.page-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.page-hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
  max-width: 48rem;
}
.page-hero .hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.page-hero .hero-subtitle {
  font-size: 1.5rem;
  color: #f3f4f6;
}

.page-intro,
.page-section,
.page-cta {
  padding: 5rem 1rem;
}

.section-bg-light {
  background-color: #EAF7F0;
}

.section-bg-gray {
  background-color: #F5F7FA;
}

.section-bg-white {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.section-p, .intro-p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
}

.section-image-wrapper {
  height: 24rem;
  position: relative;
}

.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.page-cta {
  background-color: #2F7D5C;
  color: white;
}
.page-cta .cta-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.page-cta .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f3f4f6;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
}

.container-sm {
  max-width: 56rem;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 3rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 3rem;
}

.mt-sm {
  margin-top: 1rem;
}

.pt-xl {
  padding-top: 5rem;
}

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

.shadow-lg {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.d-inline-block {
  display: inline-block;
}

@media (min-width: 768px) {
  .order-1-md {
    order: 1;
  }
  .order-2-md {
    order: 2;
  }
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #6BCB77;
  color: white;
}
.btn-primary:hover {
  background-color: #2F7D5C;
}

.btn-block {
  width: 100%;
  display: block;
}

.link-primary {
  color: #6BCB77;
  font-weight: 500;
  text-decoration: none;
}
.link-primary:hover {
  color: #2F7D5C;
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #6BCB77;
  border-radius: 50%;
  display: inline-block;
}

.contact-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s;
  background-color: white;
}
.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.contact-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.contact-card .card-info {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.contact-card .card-subinfo {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.contact-card .card-link {
  color: #6BCB77;
  font-weight: 500;
}

.food-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  background-color: white;
}
.food-card .food-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.food-card .food-info {
  padding: 1.5rem;
}
.food-card .food-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2B2B2B;
}
.food-card .food-desc {
  color: #4b5563;
}

.room-card {
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.room-card:hover {
  border-color: #6BCB77;
}
.room-card .room-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
.room-card .room-content {
  padding: 1.5rem;
}
.room-card .room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.room-card .room-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.room-card .room-capacity {
  color: #4b5563;
  font-size: 0.875rem;
}
.room-card .room-price-wrap {
  text-align: right;
}
.room-card .room-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2F7D5C;
  margin: 0;
}
.room-card .room-per-night {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.room-card .room-features {
  margin-bottom: 1.5rem;
}
.room-card .room-features .features-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.room-card .room-features .features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.distance-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.distance-card .distance-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.distance-card .distance-time {
  color: #2F7D5C;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.distance-card .distance-desc {
  color: #4b5563;
  font-size: 0.875rem;
}

.map-wrapper {
  height: 24rem;
  background-color: #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.address-box .address-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.address-box .address-content {
  background-color: #EAF7F0;
  padding: 1rem;
  border-radius: 0.5rem;
  color: #374151;
}
.address-box .address-content p {
  margin: 0;
}

.form-wrapper {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
}

/* Componentes Úteis / Gerais Equivalentes ao Tailwind */
.button-primary {
  background-color: #6BCB77;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}
.button-primary:hover {
  background-color: #2F7D5C;
  transform: scale(1.05);
}

.button-secondary {
  background-color: #ffffff;
  color: #2B2B2B;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.button-secondary:hover {
  background-color: #f3f4f6;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md-block {
    display: block;
  }
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-white {
  background-color: #ffffff;
}

/*# sourceMappingURL=main.css.map */
