:root {
    --primary-color: #8B4513;
    --secondary-color: #F4A460;
    --text-color: #333;
    --background-color: #FFF8DC;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

#lightbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 95%;
    max-height: 95%;
    padding: 4px;
    background-color: black;
    border: 2px solid white;
    object-fit: contain;
}

#lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#lightbox-content img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
    position: absolute;
    background: none;
    border: none;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
}

#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover {
    color: #ddd;
}

#lightbox-close {
    top: 20px;
    right: 30px;
}

#lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--background-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Adjust the Welcome Section */
.welcome {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    height: 40px;
}

.header__nav {
    display: flex;
}

.header__menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    margin-left: 1.5rem;
    position: relative; /* Added for positioning the underline */
}

.header__menu-item a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    position: relative; /* Added for positioning the underline */
}

.header__menu-item a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px; /* Position the underline below the text */
    height: 4px; /* Height of the underline */
    background-color: var(--primary-color); /* Color of the underline */
    transform: scaleX(0); /* Initially hidden */
    transition: transform 0.3s ease; /* Animation for the underline */
}

.header__menu-item a:hover::after {
    transform: scaleX(1); /* Show underline on hover */
}

.header__lang-toggle {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__menu-toggle-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--background-color);
        transition: 0.3s;
        display: flex;
        justify-content: center;
    }

    .header__nav.active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        padding: 5rem;
        align-items: center;
        text-align: center;
    }

    .header__menu-item {
        margin: 1rem 0;
    }
    
        .header__menu-item a {
            font-size: 1.4rem; /* Increase font size for mobile */
        }

    .header__menu-toggle {
        display: block;
    }

    .header__menu-toggle.active .header__menu-toggle-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .header__menu-toggle.active .header__menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .header__menu-toggle.active .header__menu-toggle-bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Welcome Section */
.welcome {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/welcome.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.welcome__content {
    position: relative;
    text-align: center;
    color: var(--background-color);
    padding: 2rem;
    width: 800px;
}

.welcome__title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.welcome__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.welcome__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--background-color);
}

.welcome__cta:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome__title {
        font-size: 2.5rem;
    }

    .welcome__subtitle {
        font-size: 1.4rem;
    }

    .welcome__cta {
        font-size: 1rem;
        padding: 0.8rem 1.6rem;
    }
}

@media (max-width: 480px) {
    .welcome__title {
        font-size: 1.8rem;
    }

    .welcome__subtitle {
        font-size: 0.9rem;
    }
}
/* Introduction Section */
.introduction {
    background-color: var(--background-color);
    padding: 5rem 0;
}

.introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.introduction__title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.introduction__content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.introduction__text {
    flex: 1;
}

.introduction__text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.introduction__image {
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.introduction__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1000px) {
    .introduction__content {
        flex-direction: column-reverse;
    }

    .introduction__image {
        margin-bottom: 2rem;
    }

    .introduction__title {
        font-size: 2rem;
    }

    .introduction__text p {
        font-size: 1rem;
        text-align: center;
    }
    .introduction__content {
        gap: 1rem;
    }
}

/* Rooms Section Styles */
.rooms {
    background-color: var(--background-color);
    padding: 0.5rem 0;
}

.rooms .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section__title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.rooms__block {
    margin-bottom: 4rem;
}

.rooms__block-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    text-decoration: underline;
}

.rooms__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.rooms__tab {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rooms__tab:hover,
.rooms__tab.active {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.rooms__gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.rooms__gallery-item {
    display: none;
    width: 100%;
}

.rooms__gallery-item.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.rooms__image {
    width: calc(33.333% - 1rem);
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.rooms__image:hover {
    transform: scale(1.05);
}

.rooms__pricing {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.rooms__pricing-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.rooms__pricing-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--background-color);
    margin-bottom: 0.5rem;
    font-weight: bold; /* Add this line to make the text bold */
}

.rooms__pricing-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--background-color);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .rooms__image {
        width: calc(50% - 0.5rem);
    }

    .rooms__tab {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .rooms__image {
        width: 100%;
    }

    .rooms__tabs {
        flex-wrap: wrap;
    }

    .rooms__tab {
        margin-bottom: 0.5rem;
    }
}

/* Amenities Section */
.amenities {
    background-color: var(--background-color);
    padding: 5rem 0;
}

.amenities .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Limit to a maximum of 3 columns */
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.amenities__item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.amenities__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.amenities__item-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.amenities__item-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--background-color);
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 998px) {
    .amenities__grid {
        grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns on smaller screens */
    }

    .amenities__item {
        padding: 1.5rem;
    }

    .amenities__icon {
        width: 50px;
        height: 50px;
    }

    .amenities__item-title {
        font-size: 1.3rem;
    }

    .amenities__item-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 470px) {
    .amenities__grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}

/* Location Section Styles */
.location {
    background-color: var(--background-color);
    padding: 0.5rem 0;
}

.location__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.location__content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/* Left Column: Nearby Attractions */
.location__attractions {
    flex: 1;
}

.location__subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.location__attraction-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location__attraction-image {
    width: 70px;
    height: 70px;
    border-radius: 30%;
    object-fit: cover;
    margin-right: 1rem;
}

.location__attraction-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
}

/* Right Column: Nearby Amenities and Transportation */
.location__info {
    flex: 1;
}

.location__nearby {
    margin-bottom: 2rem;
}

.location__nearby-content {
    display: flex;
    justify-content: space-between;
}

.location__nearby-list {
    list-style-type: none;
    padding: 0;
    flex: 1;
    font-family: var(--font-body);
    color: var(--text-color);
    margin-right: 1.5rem;
}

.location__nearby-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location__nearby-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.location__transport-content {
    display: flex;
    flex-direction: column;
}

.location__transport-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location__transport-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.location__transport-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location__content {
        flex-direction: column;
    }

    

    .location__nearby-list {
        margin-bottom: 1rem;
    }
}

/* Reviews Section Styles */
.reviews {
    background-color: var(--background-color);
    padding: 2rem 0;
}

.reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews__carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews__container {
    overflow: hidden;
}

.reviews__slide {
    display: none;
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 250px;
}

.reviews__slide.active {
    display: block;
}

.reviews__text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--background-color);
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    padding: 0 1.5rem;
}

.reviews__text::before,
.reviews__text::after {
    content: '"';
    font-size: 2.5rem;
    line-height: 0;
    position: absolute;
    color: var(--primary-color);
}

.reviews__text::before {
    left: -0.5rem;
    top: 0.5rem;
}

.reviews__text::after {
    right: -0.5rem;
    bottom: -0.2rem;
}

.reviews__author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.reviews__nav--prev {
    left: -3rem;
}

.reviews__nav--next {
    right: -3rem;
}

.reviews__nav svg {
    width: 2rem;
    height: 2rem;
}

.reviews__dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: none;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reviews__dot.active {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews__carousel {
        max-width: 90%;
    }

    .reviews__nav {
        font-size: 1.5rem;
    }

    .reviews__nav--prev {
        left: -2rem;
    }

    .reviews__nav--next {
        right: -2rem;
    }

    .reviews__text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .reviews__text::before,
    .reviews__text::after {
        font-size: 2rem;
    }

    .reviews__author {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .reviews__nav {
        display: none;
    }

    .reviews__carousel {
        max-width: 100%;
    }

    .reviews__slide {
        padding: 1.5rem;
    }
    .reviews__text {
        padding: 0 0.5rem;
    }

    .reviews__text::before,
    .reviews__text::after {
        font-size: 1.5rem;
    }
}

/* Contact Section Styles */
.contact {
    background-color: var(--background-color);
    padding: 5rem 0;
  }
  
  .contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .contact__content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }
  
  .contact__info,
  .contact__form {
    flex: 1;
    max-width: calc(50% - 1rem);
  }
  
  .contact__subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
  }
  
  .contact__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .contact__item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .contact__icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    margin-right: 1rem;
  }
  
  .contact__link,
  .contact__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
  }
  
  .contact__link:hover {
    color: var(--primary-color);
  }
  
  .contact__map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact__separator {
    width: 1px;
    background-color: var(--secondary-color);
    margin: 0 1rem;
  }
  
  .form {
    display: flex;
    flex-direction: column;
  }
  
  .form__group {
    margin-bottom: 1.5rem;
  }
  
  .form__label {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
  }
  
  .form__input {
    width: 100%;
    padding: 0.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    background-color: var(--background-color);
  }
  
  .form__textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .form__submit {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--background-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .form__submit:hover {
    background-color: var(--secondary-color);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .contact__content {
      flex-direction: column;
    }
  
    .contact__info,
    .contact__form {
      max-width: 100%;
    }
  
    .contact__separator {
      width: 100%;
      height: 1px;
      margin: 1rem 0;
    }
  }

  Copy.form__input--error {
    border-color: #ff0000;
}

.form__message {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form__message--error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form__message--success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1.5rem 0;
  }
  
  .footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer__link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--background-color);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
  }
  
  .footer__link:hover {
    opacity: 0.8;
  }
  
  .footer__copyright {
    font-family: var(--font-body);
    font-size: 0.8rem;
    margin: 0;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .footer {
      padding: 1rem 0;
    }
  }

.rooms__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.rooms__description {
    width: 60%;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--background-color);
    line-height: 1.6;
    padding: 1.0rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rooms__description {
        font-size: 1rem;
        padding: 1rem;
    }
}