* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Promotions Section */
.promotions-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f8f5f0;
  position: relative;
}

.promotions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #d4c5b0;
}

.promotions-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.promotions-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
}

/* Promotions Carousel */
.promotions-carousel {
  position: relative;
  width: 100%;
  padding: 0 80px;
}

.promotions-carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible;
}

.promotions-slide {
  display: none;
  width: 100%;
  border-radius: 12px;
}

.promotions-slide.active {
  display: block;
}

.promotions-slide-content {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  max-width: 100%;
}

.promotions-slide-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.promotions-image-wrapper {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  background-color: #f5f5f5;
  min-height: 450px;
}

.promotions-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.promotions-slide-content:hover .promotions-image {
  transform: scale(1.05);
}

.promotions-info {
  flex: 0 0 50%;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f5f0;
  border-radius: 0;
  box-sizing: border-box;
  min-height: 450px;
}

.promotions-slide-title {
  font-size: 1.6rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.promotions-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-y: auto;
  max-height: 200px;
  max-width: 100%;
  padding-right: 10px;
  font-family: "Source Sans Pro", sans-serif;
}

.promotions-description p {
  margin-bottom: 15px;
}

.promotions-description ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.promotions-description li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
}

.promotions-description li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00bcd4;
  font-weight: 600;
  font-size: 1.1rem;
}

.promotions-availability-link {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.promotions-availability-link:hover {
  color: #007a94;
  text-decoration: underline;
}

.promotions-description em {
  font-size: 0.95rem;
  color: #888;
}

.promotions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  background-color: #00bcd4;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #00bcd4;
  border-radius: 6px;
  align-self: flex-start;
  flex-shrink: 0;
  max-width: 100%;
  font-family: "Source Sans Pro", sans-serif;
}

.promotions-btn:hover {
  background-color: transparent;
  color: #00bcd4;
  transform: translateX(5px);
}

/* Carousel Controls - Matching RoomsSection2 styling */
.promotions-carousel .carousel-luxury-control {
  position: absolute;
  top: calc(50% - 25px);
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #2c2c2c;
  font-size: 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 200;
  padding: 0;
  margin: 0;
}

.promotions-carousel .carousel-luxury-control:hover {
  color: #00bcd4;
  transform: translateY(-50%) scale(1.1);
}

.promotions-carousel .carousel-luxury-prev {
  left: 0;
}

.promotions-carousel .carousel-luxury-next {
  right: 0;
}

/* Carousel Indicators - Matching RoomsSection2 styling */
.carousel-luxury-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4c5b0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background-color: #00bcd4;
  transform: scale(1.2);
}

.carousel-indicator.active {
  background-color: #00bcd4;
  width: 30px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .promotions-carousel {
    padding: 0 60px;
  }

  .promotions-info {
    padding: 35px 30px;
  }

  .promotions-slide-title {
    font-size: 1.5rem;
  }

  .promotions-description {
    font-size: 1rem;
    max-height: 180px;
  }

  .promotions-image-wrapper {
    min-height: 400px;
  }

  .promotions-image {
    min-height: 400px;
  }

  .carousel-luxury-control {
    font-size: 3.5rem;
  }
}

@media (max-width: 968px) {
  .promotions-section {
    padding: 60px 20px;
  }

  .promotions-title {
    font-size: 2rem;
  }

  .promotions-header {
    margin-bottom: 40px;
  }

  .promotions-carousel {
    padding: 0 50px;
  }

  .promotions-slide-content {
    flex-direction: column;
    gap: 0;
  }

  .promotions-image-wrapper {
    flex: 0 0 100%;
    border-radius: 0;
    min-height: 0;
    aspect-ratio: 5/4;
  }

  .promotions-info {
    flex: 0 0 100%;
    border-radius: 0;
    min-height: auto;
    padding: 35px 30px;
  }

  .promotions-image {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .promotions-slide-title {
    font-size: 1.75rem;
  }

  .promotions-description {
    font-size: 1rem;
  }

  .carousel-luxury-control {
    font-size: 3rem;
    width: 50px;
    height: 50px;
  }
}

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

  .promotions-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .promotions-header {
    margin-bottom: 35px;
  }

  .promotions-carousel {
    padding: 0 40px;
  }

  .promotions-image-wrapper {
    min-height: 0;
    aspect-ratio: 5/4;
  }

  .promotions-image {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .promotions-info {
    padding: 30px 25px;
  }

  .promotions-slide-title {
    font-size: 1.5rem;
  }

  .promotions-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .promotions-description li {
    padding-left: 20px;
    margin-bottom: 8px;
  }

  .promotions-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    align-self: center;
  }

  .carousel-luxury-control {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .promotions-carousel .carousel-luxury-prev {
    left: -15px;
  }

  .promotions-carousel .carousel-luxury-next {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 40px 12px;
  }

  .promotions-title {
    font-size: 1.75rem;
    letter-spacing: 1.5px;
  }

  .promotions-header {
    margin-bottom: 30px;
  }

  .promotions-carousel {
    padding: 0 35px;
  }

  .promotions-image-wrapper {
    min-height: 0;
    aspect-ratio: 5/4;
  }

  .promotions-image {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .promotions-info {
    padding: 25px 20px;
  }

  .promotions-slide-title {
    font-size: 1.3rem;
  }

  .promotions-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .promotions-description li {
    padding-left: 18px;
    font-size: 0.88rem;
  }

  .promotions-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    align-self: center;
  }

  .carousel-luxury-indicators {
    margin-top: 35px;
    gap: 8px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicator.active {
    width: 24px;
  }
}

.promotions-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

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

.promotions-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 1400px;
  width: 95%;
  max-height: 95vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

.promotions-modal-content::-webkit-scrollbar {
  display: none;
}

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

.promotions-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 2px solid #00bcd4;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 2.5rem;
  line-height: 1;
  color: #00bcd4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promotions-modal-close:hover {
  background-color: #00bcd4;
  color: #fff;
  transform: rotate(90deg);
}

.promotions-modal-body {
  padding: 0;
}

.promotions-modal-body .promotions-section {
  padding: 20px 20px 60px 20px;
  background-color: #fff;
  overflow: visible;
}

.promotions-modal-body .promotions-header {
  margin-bottom: 15px;
}

.promotions-modal-body .promotions-description {
  overflow: visible;
  max-height: none;
}

.promotions-modal-body .promotions-carousel {
  overflow: visible;
}

.promotions-modal-body .carousel-luxury-indicators {
  display: none;
}

.promotions-modal-body .promotions-carousel {
  transform: scaleY(0.9);
  transform-origin: center top;
  max-width: 100%;
  padding: 0 60px;
}

.promotions-modal-body .promotions-slide-content {
  max-width: 100%;
}

.promotions-modal-body .promotions-image-wrapper {
  min-height: 400px;
  flex: 0 0 58%;
}

.promotions-modal-body .promotions-image {
  min-height: 400px;
}

.promotions-modal-body .promotions-info {
  flex: 0 0 42%;
  padding: 35px 35px;
  height: 620px;
}

.promotions-modal-body .promotions-section::before {
  display: none;
}

@media (max-width: 968px) {
  .promotions-modal-overlay {
    padding: 10px;
  }

  .promotions-modal-content {
    max-height: 95vh;
    border-radius: 12px;
    width: 100%;
  }

  .promotions-modal-close {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    top: 15px;
    right: 15px;
  }

  .promotions-modal-body .promotions-section {
    padding: 60px 15px 40px 15px;
  }

  .promotions-modal-body .promotions-header {
    margin-bottom: 20px;
  }

  .promotions-modal-body .promotions-carousel {
    padding: 0 50px;
  }

  .promotions-modal-body .promotions-info {
    padding: 25px 20px;
    min-height: 500px;
  }

  .promotions-modal-body .promotions-slide-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .promotions-modal-body .promotions-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
    max-height: none;
  }

  .promotions-modal-body .promotions-description li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .promotions-modal-overlay {
    padding: 8px;
  }

  .promotions-modal-content {
    max-height: 98vh;
    border-radius: 8px;
    width: 100%;
  }

  .promotions-modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.8rem;
    top: 12px;
    right: 12px;
  }

  .promotions-modal-body .promotions-section {
    padding: 65px 12px 35px 12px;
  }

  .promotions-modal-body .promotions-header {
    margin-bottom: 18px;
  }

  .promotions-modal-body .promotions-carousel {
    padding: 0 45px;
  }

  .promotions-modal-body .promotions-info {
    padding: 22px 18px;
    min-height: 480px;
  }

  .promotions-modal-body .promotions-slide-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .promotions-modal-body .promotions-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    max-height: none;
  }

  .promotions-modal-body .promotions-description li {
    font-size: 0.88rem;
    margin-bottom: 7px;
    padding-left: 20px;
  }

  .promotions-modal-body .promotions-description p {
    margin-bottom: 12px;
  }

  .promotions-modal-body .promotions-btn {
    padding: 10px 24px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .promotions-modal-overlay {
    padding: 0;
    align-items: flex-start;
  }

  .promotions-modal-content {
    max-height: 100vh;
    border-radius: 0;
    height: 100%;
    width: 100%;
  }

  .promotions-modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
  }

  .promotions-modal-body .promotions-section {
    padding: 60px 8px 30px 8px;
  }

  .promotions-modal-body .promotions-header {
    margin-bottom: 15px;
  }

  .promotions-modal-body .promotions-title {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }

  .promotions-modal-body .promotions-carousel {
    padding: 0 40px;
  }

  .promotions-modal-body .carousel-luxury-control {
    font-size: 2.2rem;
    width: 35px;
    height: 35px;
  }

  .promotions-modal-body .carousel-luxury-prev {
    left: 5px;
  }

  .promotions-modal-body .carousel-luxury-next {
    right: 5px;
  }

  .promotions-modal-body .promotions-info {
    padding: 20px 15px;
    min-height: 460px;
  }

  .promotions-modal-body .promotions-slide-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .promotions-modal-body .promotions-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    max-height: none;
    padding-right: 5px;
  }

  .promotions-modal-body .promotions-description li {
    font-size: 0.83rem;
    margin-bottom: 6px;
    padding-left: 18px;
  }

  .promotions-modal-body .promotions-description li:before {
    font-size: 0.95rem;
  }

  .promotions-modal-body .promotions-description p {
    margin-bottom: 10px;
  }

  .promotions-modal-body .promotions-description em {
    font-size: 0.8rem;
  }

  .promotions-modal-body .promotions-btn {
    padding: 9px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
  }

  .promotions-modal-body .promotions-image-wrapper {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 360px) {
  .promotions-modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
    top: 8px;
    right: 8px;
  }

  .promotions-modal-body .promotions-section {
    padding: 55px 6px 25px 6px;
  }

  .promotions-modal-body .promotions-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .promotions-modal-body .promotions-carousel {
    padding: 0 35px;
  }

  .promotions-modal-body .carousel-luxury-control {
    font-size: 2rem;
    width: 32px;
    height: 32px;
  }

  .promotions-modal-body .carousel-luxury-prev {
    left: 3px;
  }

  .promotions-modal-body .carousel-luxury-next {
    right: 3px;
  }

  .promotions-modal-body .promotions-info {
    padding: 18px 12px;
    min-height: 440px;
  }

  .promotions-modal-body .promotions-slide-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .promotions-modal-body .promotions-description {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .promotions-modal-body .promotions-description li {
    font-size: 0.8rem;
    margin-bottom: 5px;
    padding-left: 16px;
  }

  .promotions-modal-body .promotions-description li:before {
    font-size: 0.9rem;
  }

  .promotions-modal-body .promotions-description p {
    margin-bottom: 8px;
  }

  .promotions-modal-body .promotions-description em {
    font-size: 0.78rem;
  }

  .promotions-modal-body .promotions-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
  }
}

.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  padding-top: 90px;
}

.main-content {
  flex: 1;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  word-wrap: break-word;
}

.main-content p {
  font-size: 1.1rem;
  color: #666;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .App {
    padding-top: 70px;
  }

  .main-content {
    padding: 30px 15px;
  }

  .main-content h1 {
    font-size: 2rem;
  }

  .main-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .App {
    padding-top: 65px;
  }

  .main-content {
    padding: 25px 12px;
  }

  .main-content h1 {
    font-size: 1.75rem;
  }
}

.header {
  background-color: #f8f5f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  overflow-x: hidden;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: nowrap;
}

/* Mobile Header Layout */
.header-mobile {
  display: none;
}

.header-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
}

.header-mobile-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-mobile-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-mobile-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px 15px;
  border-top: 1px solid #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  max-height: 100px;
  overflow: hidden;
  opacity: 1;
}

.header-mobile.scrolled .header-mobile-logo {
  max-height: 0;
  padding: 0 15px;
  opacity: 0;
  border-top: none;
}

.header-mobile-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header-mobile-logo .logo-link:hover {
  opacity: 0.8;
}

.header-mobile-logo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  z-index: 900;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 40px;
}

.hamburger.hidden {
  opacity: 0;
  pointer-events: none;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background-color: #00bcd4;
}

.hamburger:active {
  transform: scale(0.95);
}

/* Hide mobile header by default (show on mobile) */
@media (min-width: 769px) {
  .header-mobile {
    display: none !important;
  }

  .header-container {
    display: flex !important;
  }
}

/* Logo */
.header-logo {
  flex-shrink: 0;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.header-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header-logo .logo-link:hover {
  opacity: 0.8;
}

.header-logo img {
  height: 60px;
  width: auto;
  display: block;
  max-width: 100%;
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-item a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-item a:hover {
  color: #00bcd4;
}

@media (max-width: 1200px) {
  .nav-list {
    gap: 20px;
  }

  .nav-item a {
    font-size: 14px;
  }
}

/* Right Side */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

.language-switcher:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
  color: #ffffff;
}

.language-switcher:active {
  transform: scale(0.95);
}

.language-switcher .flag-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.language-switcher .lang-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Phone Button */
.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border: 2px solid #333;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

.btn-phone:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
  color: #ffffff;
}

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

/* Book Now Button */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: #00bcd4;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  min-height: 45px;
}

.btn-book-now:hover {
  background-color: #008da8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 163, 198, 0.3);
  color: #ffffff;
}

.btn-book-now:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 163, 198, 0.3);
}

.btn-text-short {
  display: none;
}

.btn-text-full {
  display: inline;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  animation: fadeIn 0.3s ease;
}

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

/* Side Menu - Slides from Left */
.side-menu {
  position: fixed;
  top: 0;
  left: -350px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: #f8f5f0;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1600;
  transition: left 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.side-menu.open {
  left: 0;
}

.side-menu-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-menu-header .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.side-menu-header .logo-link:hover {
  opacity: 0.8;
}

.side-menu-header img {
  height: 50px;
  width: auto;
}

.close-menu {
  background: transparent;
  border: none;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu:hover {
  color: #00bcd4;
}

.side-menu-nav {
  padding: 20px 0;
}

.side-menu-section {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.side-menu-section:last-child {
  margin-bottom: 10px;
  border-bottom: none;
}

.side-menu-section-title {
  padding: 12px 30px 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.side-menu-list {
  list-style: none;
}

.side-menu-item {
  margin: 0;
}

.side-menu-item a {
  display: block;
  padding: 14px 30px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.side-menu-item a:hover {
  background-color: #f5f5f5;
  color: #00bcd4;
  border-left-color: #00bcd4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .header-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  /* Hide desktop header on mobile */
  .header-container {
    display: none;
  }

  /* Show mobile header */
  .header-mobile {
    display: block;
  }

  .header-mobile-top {
    padding: 10px 12px;
  }

  .header-mobile-left {
    gap: 10px;
  }

  .header-mobile-right {
    gap: 8px;
  }

  .header-mobile-logo img {
    height: 45px;
  }

  .language-switcher {
    padding: 6px 12px;
    gap: 6px;
  }

  .language-switcher .flag-icon {
    width: 20px;
    height: 20px;
  }

  .language-switcher .lang-text {
    font-size: 12px;
  }

  .btn-book-now {
    padding: 10px 18px;
    font-size: 14px;
    min-height: 44px;
  }

  .btn-phone {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .btn-phone svg {
    width: 18px;
    height: 18px;
  }

  .side-menu {
    left: -85vw;
    width: 280px;
  }

  .side-menu-section {
    margin-bottom: 20px;
  }

  .side-menu-section-title {
    font-size: 12px;
    padding: 10px 25px 6px;
  }

  .side-menu-item a {
    font-size: 15px;
    padding: 12px 25px;
  }

  .side-menu-header {
    padding: 18px;
  }

  .side-menu-header img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .header-mobile-top {
    padding: 8px 10px;
  }

  .header-mobile-left {
    gap: 8px;
  }

  .header-mobile-right {
    gap: 6px;
  }

  .header-mobile-logo {
    padding: 8px 10px 12px;
  }

  .header-mobile-logo img {
    height: 40px;
  }

  .language-switcher {
    padding: 8px;
    min-width: 44px;
    justify-content: center;
    flex-shrink: 0;
  }

  .language-switcher .lang-text {
    display: none;
  }

  .language-switcher .flag-icon {
    width: 24px;
    height: 24px;
  }

  .btn-book-now {
    padding: 8px 16px;
    font-size: 13px;
    min-height: 44px;
  }

  .btn-text-short {
    display: inline;
  }

  .btn-text-full {
    display: none;
  }

  .btn-phone {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .btn-phone svg {
    width: 18px;
    height: 18px;
  }

  .language-switcher {
    min-height: 44px;
    min-width: 44px;
  }

  .side-menu {
    left: -85vw;
    width: 260px;
  }

  .side-menu-section {
    margin-bottom: 18px;
  }

  .side-menu-section-title {
    font-size: 11px;
    padding: 8px 20px 5px;
  }

  .side-menu-item a {
    font-size: 14px;
    padding: 11px 20px;
  }

  .side-menu-header {
    padding: 15px;
  }

  .side-menu-header img {
    height: 40px;
  }

  .close-menu {
    font-size: 35px;
    width: 35px;
    height: 35px;
  }
}

/* Phone Modal */
.phone-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.phone-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 2001;
  width: 90%;
  max-width: 500px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

.phone-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.phone-modal-close {
  background: transparent;
  border: none;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-modal-close:hover {
  color: #00bcd4;
}

.phone-modal-content {
  padding: 30px;
}

.phone-item {
  margin-bottom: 30px;
}

.phone-item:last-child {
  margin-bottom: 0;
}

.phone-item h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #00bcd4;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.phone-number:hover {
  color: #008da8;
}

.phone-number:active {
  color: #006d85;
  transform: scale(0.98);
}

.phone-number::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2718%27 height=%2718%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%2300a3c6%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z%27%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.phone-description {
  margin: 0;
  font-size: 14px;
  color: #999;
  font-style: italic;
}

/* Phone Modal - Mobile Responsive */
@media (max-width: 768px) {
  .phone-modal {
    width: 90%;
    max-width: none;
    max-height: 90vh;
    overflow-y: auto;
  }

  .phone-modal-header {
    padding: 22px;
  }

  .phone-modal-header h3 {
    font-size: 22px;
  }

  .phone-modal-close {
    font-size: 38px;
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .phone-modal-content {
    padding: 30px 22px;
  }

  .phone-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
  }

  .phone-item:last-child {
    margin-bottom: 0;
  }

  .phone-item h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .phone-number {
    font-size: 26px;
    padding: 12px 0;
    display: inline-block;
    word-break: break-all;
  }

  .phone-description {
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .phone-modal {
    width: 92%;
  }

  .phone-modal-header {
    padding: 20px 18px;
  }

  .phone-modal-header h3 {
    font-size: 20px;
  }

  .phone-modal-close {
    font-size: 36px;
  }

  .phone-modal-content {
    padding: 25px 18px;
  }

  .phone-item {
    padding: 18px;
    margin-bottom: 25px;
  }

  .phone-item h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .phone-number {
    font-size: 23px;
    padding: 10px 0;
    line-height: 1.3;
  }

  .phone-description {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .phone-modal {
    width: 94%;
  }

  .phone-modal-header {
    padding: 18px 15px;
  }

  .phone-modal-header h3 {
    font-size: 18px;
  }

  .phone-modal-content {
    padding: 22px 15px;
  }

  .phone-item {
    padding: 16px;
  }

  .phone-number {
    font-size: 20px;
  }

  .phone-description {
    font-size: 11px;
  }

  .header-mobile-top {
    padding: 6px 8px;
  }

  .header-mobile-left {
    gap: 6px;
  }

  .header-mobile-right {
    gap: 5px;
  }

  .header-mobile-logo {
    padding: 6px 8px 10px;
  }

  .header-mobile-logo img {
    height: 36px;
  }

  .hamburger {
    min-width: 40px;
    padding: 6px;
  }

  .btn-book-now {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 40px;
  }

  .btn-text-short {
    display: inline;
  }

  .btn-text-full {
    display: none;
  }

  .language-switcher {
    padding: 6px;
    min-width: 40px;
  }

  .language-switcher .flag-icon {
    width: 22px;
    height: 22px;
  }

  .btn-phone {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

.home-hero-promo {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Mobile Carousel */
.mobile-carousel {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.mobile-carousel .carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.mobile-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mobile-carousel .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

/* Desktop Carousel */
.desktop-carousel {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.desktop-carousel .carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.desktop-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.desktop-carousel .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.desktop-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators li:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-indicators li.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

/* Hero Text Overlay */
.hero-main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  max-width: 95%;
  width: auto;
}

.hero-main-text h1 {
  font-size: 4.5rem;
  font-weight: 300;
  margin: 0 0 25px 0;
  line-height: 1.2;
  letter-spacing: 3px;
  white-space: nowrap;
  font-family: 'Source Sans Pro', sans-serif;
}

.hero-main-text h2 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: 'Times New Roman', serif;
  font-style: italic;
  margin: 0 0 30px 0;
  line-height: 1.5;
  opacity: 0.98;
  letter-spacing: 0.8px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.stars .star {
  color: #ffffff;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: twinkle 2s ease-in-out infinite;
}

.stars .star:nth-child(1) {
  animation-delay: 0s;
}

.stars .star:nth-child(2) {
  animation-delay: 0.2s;
}

.stars .star:nth-child(3) {
  animation-delay: 0.4s;
}

.stars .star:nth-child(4) {
  animation-delay: 0.6s;
}

.stars .star:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-image {
    height: 500px;
  }

  .hero-main-text h1 {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .hero-main-text h2 {
    font-size: 1.6rem;
    font-weight: 300;
  }
}

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

  /* Show mobile carousel, hide desktop */
  .mobile-carousel {
    display: block;
  }

  .desktop-carousel {
    display: none;
  }

  .hero-main-text h1 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 18px;
    letter-spacing: 1.2px;
    white-space: nowrap;
  }

  .hero-main-text h2 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .stars {
    margin-top: 20px;
  }

  .stars .star {
    font-size: 1.5rem;
  }

  .carousel-indicators {
    bottom: 20px;
    gap: 8px;
  }

  .carousel-indicators li {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 350px;
  }

  .hero-main-text {
    max-width: 98%;
  }

  .hero-main-text h1 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 14px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }

  .hero-main-text h2 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 18px;
  }

  .stars {
    gap: 5px;
    margin-top: 18px;
  }

  .stars .star {
    font-size: 1.3rem;
  }

  .carousel-indicators {
    bottom: 15px;
    gap: 6px;
  }

  .carousel-indicators li {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}

@media (max-width: 380px) {
  .hero-image {
    height: 300px;
  }

  .hero-main-text h1 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .hero-main-text h2 {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 15px;
  }

  .stars {
    margin-top: 15px;
    gap: 4px;
  }

  .stars .star {
    font-size: 1.1rem;
  }
}

/* Booking section below carousel */
.booking-button-promo-inline {
  width: 100%;
  padding: 40px 20px;
  background-color: #f8f5f0;
}

.booking-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-form {
  background-color: transparent;
  padding: 0;
}

.booking-form-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.booking-form-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  flex: 1;
  align-items: start;
}

/* Form Groups */
.form-group {
  position: relative;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Input Wrapper */
.input-wrapper {
  position: relative;
  width: 100%;
}

/* Form Controls */
.form-control {
  width: 100%;
  padding: 14px 45px 14px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #ffffff;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  outline: none;
  border-color: #00bcd4;
  box-shadow:
    0 0 0 3px rgba(0, 163, 198, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
  color: #999;
}

/* Date Input Specific */
input[type="date"].form-control {
  cursor: pointer;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

/* Select Specific */
select.form-control {
  cursor: pointer;
  padding-right: 45px;
}

/* Remove dropdown arrow for guests selector */
.select-guests {
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Input Icons */
.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon svg {
  width: 20px;
  height: 20px;
  fill: #666;
}

.calendar-icon svg {
  width: 18px;
  height: 18px;
}

.user-icon svg {
  width: 18px;
  height: 18px;
}

/* Hover Effects */
.input-wrapper:hover .form-control {
  border-color: #00bcd4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.input-wrapper:hover .input-icon svg {
  fill: #00bcd4;
}

.form-control:focus ~ .input-icon svg {
  fill: #00bcd4;
}

/* Booking Submit Button */
.booking-form-submit {
  min-width: 220px;
  display: flex;
  align-items: center;
}

.btn-booking-submit {
  width: 100%;
  height: 52px;
  padding: 14px 16px;
  background-color: #00bcd4;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 163, 198, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-booking-submit:hover {
  background-color: #008da8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 163, 198, 0.5);
}

.btn-booking-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 163, 198, 0.3);
}

/* React DatePicker Custom Styles */
.react-datepicker-wrapper {
  width: 100%;
}

.react-datepicker__input-container {
  width: 100%;
}

.react-datepicker-popper {
  z-index: 100 !important;
}

.react-datepicker {
  font-family: inherit;
  border: 2px solid #00bcd4;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.react-datepicker__header {
  background-color: #00bcd4;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.react-datepicker__current-month {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}

.react-datepicker__day-name,
.react-datepicker__day {
  width: 2rem;
  line-height: 2rem;
  margin: 0.166rem;
  display: inline-block;
  text-align: center;
}

.react-datepicker__day-name {
  color: #000000;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.react-datepicker__day {
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.react-datepicker__day--selected,
.react-datepicker__day--keyboard-selected {
  background-color: #00bcd4;
}

.react-datepicker__day--selected:hover,
.react-datepicker__day--keyboard-selected:hover {
  background-color: #008da8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .booking-form-row {
    flex-direction: column;
    gap: 15px;
  }

  .booking-form-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-group:last-child {
    grid-column: 1 / -1;
  }

  .booking-form-submit {
    min-width: 100%;
  }

  .btn-booking-submit {
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  .booking-button-promo-inline {
    padding: 30px 15px;
  }

  .booking-form {
    padding: 25px;
  }

  .booking-form-row {
    max-width: 100%;
    align-items: stretch;
  }

  .booking-form-fields {
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center;
    max-width: 100%;
  }

  .form-group {
    width: 100%;
  }

  .booking-form-submit {
    width: 100%;
  }

  .form-control {
    padding: 12px 40px 12px 14px;
    font-size: 15px;
  }

  .input-icon {
    right: 14px;
  }

  .input-icon svg {
    width: 18px;
    height: 18px;
  }

  .btn-booking-submit {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .booking-button-promo-inline {
    padding: 25px 12px;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-form-fields {
    gap: 12px;
    justify-items: center;
  }

  .form-group {
    width: 100%;
  }

  .form-control {
    padding: 11px 38px 11px 12px;
    font-size: 14px;
  }

  .input-icon {
    right: 12px;
  }

  .input-icon svg {
    width: 16px;
    height: 16px;
  }

  .btn-booking-submit {
    font-size: 14px;
    min-height: 44px;
  }
}

/* Focus visible for accessibility */
.form-control:focus-visible {
  outline: 2px solid #00bcd4;
  outline-offset: 2px;
}

/* Disabled State */
.form-control:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.intro-section {
  width: 100%;
  padding: 30px 20px 20px 20px;
  background-color: #f8f5f0;
  position: relative;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #d4c5b0;
}

.intro-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .intro-section {
    padding: 25px 20px 18px 20px;
  }

  .intro-text {
    font-size: 1.15rem;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 20px 18px 15px 18px;
  }

  .intro-container {
    max-width: 100%;
  }

  .intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 35px 15px;
  }

  .intro-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .intro-section {
    padding: 30px 12px;
  }

  .intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.video-section-container {
  width: 100%;
  padding: 10px 20px 40px 20px;
  box-sizing: border-box;
  background-color: #f8f5f0;
}

.video-section {
  max-width: 1150px;
  margin: 0 auto;
}

.video-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-col {
  width: 100%;
  max-width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background-color: #f8f5f0;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-section-container {
    padding: 8px 15px 30px 15px;
  }
}

@media (max-width: 480px) {
  .video-section-container {
    padding: 12px 12px 25px 12px;
  }
}

.rooms-section-luxury {
  width: 100%;
  padding: 30px 20px 80px 20px;
  background-color: #f8f5f0;
  position: relative;
}

.rooms-section-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #d4c5b0;
}

.rooms-luxury-container {
  max-width: 1400px;
  margin: 0 auto;
}

.rooms-luxury-header {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2c2c2c;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
}

.rooms-luxury-carousel {
  position: relative;
  width: 100%;
  padding: 0 80px;
}

.carousel-luxury-inner {
  position: relative;
  width: 100%;
  overflow: visible;
}

.carousel-luxury-item {
  display: none;
  width: 100%;
  border-radius: 12px;
}

.carousel-luxury-item.active {
  display: block;
}

.carousel-luxury-item.active.slide-next {
  animation: slideInRight 0.6s ease-in-out;
}

.carousel-luxury-item.active.slide-prev {
  animation: slideInLeft 0.6s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.room-luxury-card {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-radius 0s;
  max-width: 100%;
  isolation: isolate;
}

.room-luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.room-luxury-image-container {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  background-color: #f5f5f5;
  min-height: 450px;
}

.room-luxury-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.room-luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-luxury-card:hover .room-luxury-overlay {
  opacity: 1;
}

.room-luxury-content {
  flex: 0 0 50%;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f5f0;
  border-radius: 0;
  box-sizing: border-box;
  min-height: 450px;
}

.room-luxury-header-wrapper {
  margin-bottom: 15px;
}

.room-luxury-title {
  font-size: 1.6rem;
  color: #2c2c2c;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: "Segoe UI Symbol", "Segoe UI", sans-serif;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.room-luxury-stars {
  display: block;
  color: #d4af37;
  font-size: 0.9rem;
  margin-top: 5px;
  letter-spacing: 2px;
}

.room-luxury-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-y: auto;
  max-height: 180px;
  max-width: 100%;
  padding-right: 10px;
  font-family: "Source Sans Pro", sans-serif;
}

.room-luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  background-color: #00bcd4;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #00bcd4;
  border-radius: 6px;
  align-self: flex-start;
  flex-shrink: 0;
  max-width: 100%;
  font-family: "Source Sans Pro", sans-serif;
}

.room-luxury-btn:hover {
  background-color: transparent;
  color: #00bcd4;
  transform: translateX(5px);
}

.rooms-luxury-carousel .carousel-luxury-control {
  position: absolute;
  top: calc(50% - 25px);
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #2c2c2c;
  font-size: 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 200;
  padding: 0;
  margin: 0;
}

.rooms-luxury-carousel .carousel-luxury-control:hover {
  color: #00bcd4;
  transform: translateY(-50%) scale(1.1);
}

.rooms-luxury-carousel .carousel-luxury-prev {
  left: 0;
}

.rooms-luxury-carousel .carousel-luxury-next {
  right: 0;
}

.carousel-luxury-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4c5b0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background-color: #00bcd4;
  transform: scale(1.2);
}

.carousel-indicator.active {
  background-color: #00bcd4;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .rooms-luxury-carousel {
    padding: 0 60px;
  }

  .room-luxury-card {
    gap: 0;
  }

  .room-luxury-content {
    padding: 35px 30px;
  }

  .room-luxury-title {
    font-size: 1.5rem;
  }

  .room-luxury-description {
    font-size: 1rem;
    max-height: 160px;
  }

  .room-luxury-image-container {
    min-height: 400px;
  }

  .room-luxury-image {
    min-height: 400px;
  }

  .carousel-luxury-control {
    font-size: 3.5rem;
  }
}

@media (max-width: 968px) {
  .rooms-section-luxury {
    padding: 60px 20px;
  }

  .rooms-luxury-header {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .rooms-luxury-carousel {
    padding: 0 50px;
  }

  .room-luxury-card {
    flex-direction: column;
    gap: 0;
  }

  .room-luxury-image-container {
    flex: 0 0 100%;
    border-radius: 0;
    min-height: 0;
    aspect-ratio: 5/4;
  }

  .room-luxury-content {
    flex: 0 0 100%;
    border-radius: 0;
    min-height: auto;
  }

  .room-luxury-image {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .room-luxury-content {
    padding: 35px 30px;
  }

  .room-luxury-title {
    font-size: 1.75rem;
  }

  .room-luxury-description {
    font-size: 1rem;
  }

  .room-luxury-btn {
    align-self: center;
  }

  .carousel-luxury-control {
    font-size: 3rem;
    width: 50px;
    height: 50px;
  }
}

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

  .rooms-luxury-header {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 35px;
  }

  .rooms-luxury-carousel {
    padding: 0 40px;
  }

  .room-luxury-image-container {
    min-height: 0;
    aspect-ratio: 5/4;
  }

  .room-luxury-image {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .room-luxury-content {
    padding: 30px 25px;
  }

  .room-luxury-title {
    font-size: 1.5rem;
  }

  .room-luxury-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .room-luxury-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    align-self: center;
  }

  .carousel-luxury-control {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .carousel-luxury-prev {
    left: -15px !important;
  }

  .carousel-luxury-next {
    right: -15px !important;
  }
}

@media (max-width: 480px) {
  .rooms-section-luxury {
    padding: 40px 12px;
  }

  .rooms-luxury-header {
    font-size: 1.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }

  .rooms-luxury-carousel {
    padding: 0 35px;
  }

  .room-luxury-image-container {
    min-height: 0;
    aspect-ratio: 5/4;
  }

  .room-luxury-image {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .room-luxury-content {
    padding: 25px 20px;
  }

  .room-luxury-title {
    font-size: 1.3rem;
  }

  .room-luxury-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .room-luxury-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    align-self: center;
  }

  .carousel-luxury-indicators {
    margin-top: 35px;
    gap: 8px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicator.active {
    width: 24px;
  }
}

/* Section Separator */
.section-separator {
  width: 100%;
  padding: 40px 20px;
  background-color: #f8f5f0;
  position: relative;
}

.separator-line {
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #d4c5b0;
  border: none;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-separator {
    padding: 30px 16px;
  }
}

@media (max-width: 480px) {
  .section-separator {
    padding: 25px 12px;
  }
}

/* Resort Intro Section */
.resort-intro-section {
  width: 100%;
  background-color: #f8f5f0;
}

/* Header */
.resort-intro-header {
  width: 100%;
  padding: 0px 20px 40px 20px;
  background-color: #f8f5f0;
}

.resort-intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.resort-intro-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
}

/* Main Content with Image and Text Side by Side */
.resort-intro-main {
  width: 100%;
  padding: 50px 0 80px 0;
  background-color: #f8f5f0;
}

.resort-intro-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

/* Image Column */
.resort-intro-image-column {
  width: 100%;
  padding-left: 40px;
}

.resort-hero-image {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 650px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Text Column */
.resort-intro-text-column {
  width: 100%;
  padding: 0 40px 0 60px;
}

.resort-intro-text-content {
  max-width: 600px;
}

.resort-intro-heading {
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
  font-family: 'Times New Roman', serif;
}

.resort-intro-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0 0 20px 0;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
}

.resort-intro-paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .resort-intro-image-column {
    padding-left: 30px;
  }

  .resort-intro-text-column {
    padding: 0 30px 0 50px;
  }
}

@media (max-width: 1200px) {
  .resort-intro-image-column {
    padding-left: 20px;
  }

  .resort-intro-text-column {
    padding: 0 20px 0 40px;
  }

  .resort-hero-image {
    min-height: 400px;
    max-height: 550px;
  }

  .resort-intro-heading {
    font-size: 28px;
  }

  .resort-intro-paragraph {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .resort-intro-header {
    padding: 50px 20px 30px 20px;
  }

  .resort-intro-title {
    font-size: 40px;
  }

  .resort-intro-main {
    padding: 40px 20px 60px 20px;
  }

  .resort-intro-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .resort-intro-image-column {
    padding-left: 0;
  }

  .resort-intro-text-column {
    padding: 0;
  }

  .resort-hero-image {
    min-height: auto;
    max-height: 400px;
  }

  .resort-intro-heading {
    font-size: 26px;
  }

  .resort-intro-paragraph {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .resort-intro-header {
    padding: 40px 16px 24px 16px;
  }

  .resort-intro-title {
    font-size: 36px;
  }

  .resort-intro-main {
    padding: 30px 16px 50px 16px;
  }

  .resort-intro-layout {
    gap: 24px;
  }

  .resort-intro-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .resort-intro-paragraph {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .resort-intro-header {
    padding: 30px 12px 20px 12px;
  }

  .resort-intro-title {
    font-size: 28px;
  }

  .resort-intro-main {
    padding: 25px 12px 40px 12px;
  }

  .resort-intro-layout {
    gap: 20px;
  }

  .resort-hero-image {
    border-radius: 6px;
  }

  .resort-intro-heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .resort-intro-paragraph {
    font-size: 14px;
  }
}

/* Resort Features Section */
.resort-features-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f8f5f0;
}

.resort-features-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Grid Layout - 3 columns, 2 rows */
.resort-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
}

/* Center the last card (7th card - Between Nature and the Sea) on desktop only */
@media (min-width: 993px) {
  .feature-card:last-child {
    grid-column: 2 / 3;
  }
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  box-shadow: 0 4px 16px 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.06);
  position: relative;
  overflow: hidden;
}

/* Feature Image */
.feature-image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bcd4 0%, #0088a8 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 163, 198, 0.15);
  border-color: #00bcd4;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Feature Content */
.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 32px 0 32px;
}

/* Add bottom padding when there's no button footer */
.feature-card:has(.feature-content:last-child) .feature-content {
  padding-bottom: 32px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  font-weight: 400;
}

.feature-extra {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 8px 0 0 0;
  padding-top: 12px;
  border-top: 1px solid #e8e8e8;
  font-weight: 500;
}

/* Feature Footer */
.feature-footer {
  margin-top: 24px;
  padding: 24px 32px 32px 32px;
  border-top: 1px solid #e8e8e8;
}

/* Feature Button */
.feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #00bcd4;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 163, 198, 0.25);
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.feature-button:hover::before {
  left: 100%;
}

.feature-button:hover {
  background-color: #008da8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 163, 198, 0.35);
  color: #ffffff;
}

.feature-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 163, 198, 0.25);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .resort-features-section {
    padding: 60px 20px;
  }

  .resort-features-grid {
    gap: 24px;
  }

  .feature-card {
    min-height: 480px;
  }

  .feature-image-container {
    height: 200px;
  }

  .feature-content {
    padding: 28px 28px 0 28px;
  }

  .feature-card:has(.feature-content:last-child) .feature-content {
    padding-bottom: 28px;
  }

  .feature-footer {
    padding: 20px 28px 28px 28px;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-description {
    font-size: 14px;
  }
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .resort-features-section {
    padding: 50px 16px;
  }

  .resort-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    min-height: 460px;
  }

  .feature-image-container {
    height: 180px;
  }

  .feature-content {
    padding: 24px 24px 0 24px;
  }

  .feature-card:has(.feature-content:last-child) .feature-content {
    padding-bottom: 24px;
  }

  .feature-footer {
    padding: 20px 24px 24px 24px;
  }

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

/* Mobile - 1 column */
@media (max-width: 768px) {
  .resort-features-section {
    padding: 40px 16px;
  }

  .resort-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-image-container {
    height: 200px;
  }

  .feature-content {
    padding: 24px 24px 0 24px;
  }

  .feature-card:has(.feature-content:last-child) .feature-content {
    padding-bottom: 24px;
  }

  .feature-footer {
    padding: 20px 24px 24px 24px;
  }

  .feature-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .feature-extra {
    font-size: 13px;
  }

  .feature-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .resort-features-section {
    padding: 30px 12px;
  }

  .resort-features-grid {
    gap: 16px;
  }

  .feature-image-container {
    height: 180px;
  }

  .feature-content {
    padding: 20px 20px 0 20px;
  }

  .feature-card:has(.feature-content:last-child) .feature-content {
    padding-bottom: 20px;
  }

  .feature-footer {
    padding: 18px 20px 20px 20px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 13px;
  }

  .feature-button {
    padding: 11px 20px;
    font-size: 13px;
  }
}

/* Accessibility */
.feature-button:focus-visible {
  outline: 3px solid #00bcd4;
  outline-offset: 3px;
}

/* Print Styles */
@media print {
  .resort-features-section {
    padding: 20px 0;
  }

  .feature-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .feature-button {
    display: none;
  }
}

.awards-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #f8f5f0;
  position: relative;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #d4c5b0;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.awards-header {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2c2c2c;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.award-image {
  max-width: 100%;
  max-height: 150px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(20%);
}

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

.award-item:hover .award-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.award-link:hover .award-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .awards-header {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 50px 20px;
  }

  .awards-header {
    font-size: 1.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .award-item {
    height: 150px;
    padding: 15px;
  }

  .award-image {
    max-height: 120px;
  }
}

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

  .awards-header {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .award-item {
    height: 130px;
    padding: 10px;
  }

  .award-image {
    max-height: 100px;
  }
}

.contact-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #f8f5f0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #d4c5b0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.contact-map {
  width: 100%;
  height: 100%;
}

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

.contact-name {
  font-size: 1.8rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 0.5px;
}

.contact-address,
.contact-phone,
.contact-email {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.contact-address a,
.contact-phone a,
.contact-email a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-address a:hover,
.contact-phone a:hover,
.contact-email a:hover {
  color: #00bcd4;
}

.contact-label {
  display: inline-block;
  font-weight: 600;
  margin-right: 8px;
  color: #2c2c2c;
  min-width: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 11px 32px;
  background-color: #00bcd4;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: background-color 0.3s ease;
  width: auto;
  max-width: fit-content;
  margin-top: 10px;
  font-family: 'Source Sans Pro', sans-serif;
}

.contact-btn:hover {
  background-color: #008da8;
}

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-wrapper {
    height: 350px;
  }

  .contact-name {
    font-size: 1.6rem;
  }
}

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

  .contact-content {
    gap: 35px;
  }

  .contact-map-wrapper {
    height: 300px;
  }

  .contact-name {
    font-size: 1.4rem;
  }

  .contact-address,
  .contact-phone,
  .contact-email {
    font-size: 0.95rem;
  }

  .contact-details {
    gap: 15px;
  }
}

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

  .contact-map-wrapper {
    height: 250px;
  }

  .contact-name {
    font-size: 1.3rem;
  }

  .contact-address,
  .contact-phone,
  .contact-email {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

.footer-section {
  width: 100%;
  background-color: #2c2c2c;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
}

.footer-main {
  padding: 30px 20px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: start;
}

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

.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  min-height: 22px;
}

.footer-middle-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: center;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.footer-address a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover {
  color: #00bcd4;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00bcd4;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-copyright {
  padding: 14px 20px;
  background-color: #1a1a1a;
}

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

.copyright-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 1024px) {
  .footer-main {
    padding: 25px 20px 18px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-middle-columns {
    grid-column: 1 / -1;
    gap: 28px;
  }

  .footer-column-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 25px 20px 18px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-middle-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .footer-address,
  .footer-links a,
  .footer-social a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 22px 15px 16px 15px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-middle-columns {
    gap: 20px;
  }

  .footer-copyright {
    padding: 12px 15px;
  }

  .copyright-content p {
    font-size: 0.75rem;
  }

  .footer-links li,
  .footer-social li {
    margin-bottom: 6px;
  }
}


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