<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/weclome-background.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero__content {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.hero__title {
    font-family: var(--font-accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero__subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(0.75rem, 0.6071rem + 0.7143vw, 1.25rem);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero__button {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero__button:hover {
    background: var(--white);
    color: var(--black);
}
/*--------------------------------------------------------------------------------------*/
.history {
    padding: 80px 0;
}

.history__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.history__text {
    flex: 1;
}

.history__description {
    color: var(--gray);
    margin-bottom: 30px;
}

.history__stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 36px;
    font-weight: bold;
    color: var(--brown);
    display: block;
}

.stat__text {
    font-size: 16px;
    color: var(--gray);
}

.history__image {
    flex: 1;
}

.history__image img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    min-height: clamp(16.875rem, 12.7679rem + 20.5357vw, 31.25rem);
}

@media (max-width: 1024px) {
    .history__content {
        flex-direction: column;
        text-align: center;
    }

    .history__stats {
        justify-content: center;
    }
}
/*--------------------------------------------------------------------------------------*/
.features {
    padding: 80px 0;
    background: var(--brown);
}

.features__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features__heading, .feature p, .features__icon {
    color: var(--white);
}
.features__heading::before {
    background-color: var(--white);
}

.features__image {
    flex: 1;
}

.features__image img {
    width: 80%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 0 10px 10px 0;
}

.features__text {
    flex: 1;
    padding: 40px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1024px) {
    .features__content {
        flex-direction: column;
        text-align: center;
    }

    .features__text {
        padding: 20px;
    }

    .features__list {
        align-items: center;
    }
}
/*--------------------------------------------------------------------------------------*/
.hotels {
    padding: 80px 0;
}

.hotels__container {
    max-width: 1440px;
}

.hotels__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.hotel-card {
    background-color: var(--brown);
    color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.hotel-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-card__content &gt; .button__secondary {
    margin: 0 auto;
}

.hotel-card__title {
    margin-bottom: 10px;
}

.hotel-card__features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotels__icon {
    color: var(--white);
}

.feature-separator {
    color: var(--white);
    font-weight: bold;
}

.hotel-card__description {
    flex-grow: 1;
    margin-bottom: 15px;
}
/*--------------------------------------------------------------------------------------*/
.testimonials {
    background-color: var(--brown);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.testimonials__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.testimonials__heading {
    color: var(--white);
    flex: 1;
    text-align: left;
}

.testimonials__heading::before {
    background-color: var(--white);
}

.testimonials__nav {
    display: flex;
    gap: 10px;
}

.testimonial__btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--yellow);
    background-color: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial__btn .testimonial__icon {
    color: var(--yellow);
}

.testimonial__btn:hover {
    background-color: var(--yellow-hover);
}

.testimonial__btn.disabled {
    background-color: var(--yellow);
    cursor: default;
}

.testimonial__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial__author {
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .testimonials__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonials__heading {
        text-align: center;
    }

    .testimonials__nav {
        justify-content: center;
    }

    .testimonial__content {
        padding: 0 10px;
    }
}
/*--------------------------------------------------------------------------------------*/
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.about__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.about__card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gray-lt);
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
}

.about__icon {
    color: var(--brown);
    font-size: 36px;
}

.about__title {
    margin-bottom: 5px;
}

.about__description {
    margin: 0;
}

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

    .about__header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/*--------------------------------------------------------------------------------------*/
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

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

.faq__column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__item {
    background-color: var(--brown);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.faq__question {
    font-weight: bold;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding-top: 10px;
}

.faq__item.active .faq__answer {
    max-height: 150px;
    opacity: 1;
}

.faq__item:hover {
    background-color: var(--brown-hover);
}

@media (max-width: 768px) {
    .faq__list {
        grid-template-columns: 1fr;
    }
}
/*--------------------------------------------------------------------------------------*/
.contact {
    background-color: var(--brown);
    padding: 80px 0;
    color: var(--white);
}

.contact__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.contact__content {
    flex: 1;
    min-width: 280px;
}

.contact__content &gt; .section__heading {
    color: var(--white);
}

.contact__content &gt; .section__heading:before {
    background-color: var(--white);
}

.contact__text {
    margin-bottom: 15px;
}

.contact__info {
    margin: 5px 0;
}

.contact__form-container {
    flex: 1;
    min-width: 300px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__form label {
    font-weight: bold;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: var(--yellow);
    color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact__form input:focus,
.contact__form textarea:focus {
    background-color: var(--yellow-hover);
    color: var(--black);
    outline: none;
}

.contact__form textarea {
    resize: none;
}

.contact__form button {
    align-self: flex-end;
    width: 250px;
}

/* Thanks Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
    z-index: 6;
}

.modal.hidden {
    display: none;
}

.modal__content {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    color: var(--black);
    text-align: center;
}

@media (max-width: 1024px) {
    .contact__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact__content {
        text-align: center;
    }

    .contact__form-container {
        width: 100%;
        max-width: 500px;
    }

    .contact__form button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .contact__form-container {
        min-width: 100%;
    }

    .contact__container {
        gap: 20px;
    }
}</pre></body></html>