:root {
    --primaryBg: #fff;
    --secondaryBg: #f8f5f0;
    --accentColor: #dba765;
    --footerBg: #333333;
    --headingColor: #243238;
    --textColor: #243238;
    --lightText: rgba(36, 50, 56, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", sans-serif;
    color: var(--textColor);
    background-color: var(--primaryBg);
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--headingColor);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.mainHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoBrand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--headingColor);
}

.logoBrand span {
    color: var(--accentColor);
}

.navMenu {
    display: flex;
    align-items: center;
}

.navList {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.navItem {
    margin-left: 30px;
    font-weight: 500;
    position: relative;
}

.navItem:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accentColor);
    transition: width 0.3s ease;
}

.navItem:hover:after {
    width: 100%;
}

.contactBtn {
    background-color: var(--accentColor);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(219, 167, 101, 0.3);
}

.contactBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219, 167, 101, 0.4);
}


.heroSection {
    background: url('../images/main-bg.jpg') center no-repeat;
    background-size: cover;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.heroContent {
    max-width: 600px;
}

.heroSubtitle {
    font-size: 18px;
    color: var(--accentColor);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.heroSubtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: var(--accentColor);
}

.heroTitle {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.heroText {
    margin-bottom: 30px;
    color: var(--lightText);
}

.tagList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tagItem {
    background-color: rgba(219, 167, 101, 0.2);
    color: var(--accentColor);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}


.featuresSection {
    padding: 100px 0;
}

.sectionTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featureCard {
    background-color: var(--secondaryBg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.featureCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.featureIcon {
    font-size: 40px;
    color: var(--accentColor);
    margin-bottom: 20px;
}

.featureTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.featureText {
    color: var(--lightText);
    font-size: 15px;
}


.rankingSection {
    padding: 80px 0;
    background-color: var(--secondaryBg);
}

.hotelCard {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hotelNumber {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    color: rgba(36, 50, 56, 0.2);
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondaryBg);
}

.hotelImage {
    width: 330px;
    height: 235px;
    object-fit: cover;
}

.hotelContent {
    padding: 30px;
    flex: 1;
}

.hotelTitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.hotelFeatures {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotelFeature {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.hotelFeature i {
    color: var(--accentColor);
    margin-right: 5px;
}

.hotelRating {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.stars {
    color: var(--accentColor);
    margin-right: 10px;
}

.reviewCount {
    color: var(--lightText);
    font-size: 14px;
}

.detailsBtn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 25px;
    border: 1px solid var(--accentColor);
    color: var(--accentColor);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.detailsBtn:hover {
    background-color: var(--accentColor);
    color: white;
}


.textBlocks {
    padding: 100px 0;
}

.textBlock {
    margin-bottom: 60px;
}

.textBlockTitle {
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.textBlockTitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background-color: var(--accentColor);
}

.textBlockContent {
    color: var(--lightText);
    column-count: 2;
    column-gap: 40px;
}


.statsSection {
    padding: 80px 0;
    background-color: var(--secondaryBg);
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.statCard {
    text-align: center;
}

.statNumber {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    color: var(--accentColor);
    margin-bottom: 10px;
}

.statTitle {
    font-size: 18px;
    color: var(--lightText);
}


.blogSection {
    padding: 100px 0;
}

.blogGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blogCard {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blogCard:hover {
    transform: translateY(-10px);
}

.blogImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blogContent {
    padding: 25px;
}

.blogMeta {
    display: flex;
    font-size: 14px;
    color: var(--lightText);
    margin-bottom: 10px;
}

.blogAuthor {
    margin-left: 15px;
    position: relative;
}

.blogAuthor:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--lightText);
    border-radius: 50%;
}

.blogTitle {
    font-size: 20px;
    margin-bottom: 15px;
}

.blogExcerpt {
    color: var(--lightText);
    margin-bottom: 20px;
    font-size: 15px;
}

.readMore {
    color: var(--accentColor);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.readMore i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.readMore:hover i {
    transform: translateX(5px);
}


.mainFooter {
    background-color: var(--footerBg);
    color: white;
    padding: 80px 0 30px;
}

.footerContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footerLogo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footerLogo span {
    color: var(--accentColor);
}

.footerAbout {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footerMenuTitle {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.footerNav {
    list-style: none;
}

.footerNav li {
    margin-bottom: 15px;
}

.footerNav a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footerNav a:hover {
    color: var(--accentColor);
    padding-left: 5px;
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


.cookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    z-index: 1000;
    transform: translateX(-150%);
    transition: all 0.5s ease;
}

.cookiePopup.active {
    transform: translateX(0);
}

.cookieTitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookieText {
    color: var(--lightText);
    margin-bottom: 15px;
    font-size: 14px;
}

.cookieActions {
    display: flex;
    gap: 10px;
}

.cookieBtn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acceptBtn {
    background-color: var(--accentColor);
    color: white;
    border: none;
}

.acceptBtn:hover {
    background-color: #c89554;
}

.declineBtn {
    background-color: transparent;
    border: 1px solid var(--lightText);
    color: var(--lightText);
}

.declineBtn:hover {
    border-color: var(--accentColor);
    color: var(--accentColor);
}


.mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--headingColor);
    cursor: pointer;
}

.breadcrumbSection {
    background-color: var(--secondaryBg);
    padding: 30px 0;
    margin-bottom: 60px;
    margin-top: 90px;
}

.breadcrumbContent {
    display: flex;
    align-items: center;
}

.breadcrumbLink {
    color: var(--lightText);
    transition: all 0.3s ease;
}

.breadcrumbLink:hover {
    color: var(--accentColor);
}

.breadcrumbSeparator {
    margin: 0 10px;
    color: var(--lightText);
}

.breadcrumbCurrent {
    color: var(--accentColor);
}


.aboutIntro {
    padding: 80px 0;
    text-align: center;
}

.sectionSubtitle {
    color: var(--accentColor);
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
}

.sectionTitle {
    font-size: 36px;
    margin-bottom: 30px;
}

.aboutText {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--lightText);
}

.aboutTeam {
    padding: 80px 0;
    background-color: var(--secondaryBg);
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.teamCard {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.teamCard:hover {
    transform: translateY(-10px);
}

.teamImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.teamContent {
    padding: 25px;
    text-align: center;
}

.teamName {
    font-size: 22px;
    margin-bottom: 5px;
}

.teamPosition {
    color: var(--accentColor);
    margin-bottom: 15px;
    font-size: 16px;
}

.teamBio {
    color: var(--lightText);
    font-size: 15px;
}

.aboutMission {
    padding: 80px 0;
}

.missionContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.missionImage {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.missionText {
    color: var(--lightText);
}

.missionText p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .teamGrid {
        grid-template-columns: 1fr;
    }

    .missionContent {
        grid-template-columns: 1fr;
    }

    .missionImage {
        order: -1;
    }
}


.contactSection {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.contactTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.contactForm {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.formGroup {
    margin-bottom: 25px;
}

.formLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.formControl {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Josefin Sans", sans-serif;
    transition: all 0.3s ease;
}

.formControl:focus {
    outline: none;
    border-color: var(--accentColor);
    box-shadow: 0 0 0 3px rgba(219, 167, 101, 0.2);
}

textarea.formControl {
    min-height: 150px;
    resize: vertical;
}

.submitBtn {
    background-color: var(--accentColor);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
    font-size: 16px;
}

.submitBtn:hover {
    background-color: #c89554;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219, 167, 101, 0.4);
}

/* Thank You Popup */
.thankYouPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thankYouPopup.active {
    opacity: 1;
    visibility: visible;
}

.popupIcon {
    font-size: 60px;
    color: var(--accentColor);
    margin-bottom: 20px;
}

.popupTitle {
    font-size: 28px;
    margin-bottom: 15px;
}

.popupText {
    color: var(--lightText);
    margin-bottom: 25px;
}

.popupClose {
    background-color: var(--accentColor);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popupClose:hover {
    background-color: #c89554;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.policyContent {
    padding: 60px 0;
}

.policyContent h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.policyLastUpdated {
    color: var(--lightText);
    margin-bottom: 40px;
    font-style: italic;
}

.policySection {
    margin-bottom: 40px;
}

.policySection h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accentColor);
}

.policySection p {
    margin-bottom: 15px;
    color: var(--lightText);
    line-height: 1.8;
}

.policySection ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--lightText);
}

.policySection li {
    margin-bottom: 8px;
}

.termsContent {
    padding: 60px 0;
}

.termsContent h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.termsLastUpdated {
    color: var(--lightText);
    margin-bottom: 40px;
    font-style: italic;
}

.termsSection {
    margin-bottom: 40px;
}

.termsSection h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accentColor);
}

.termsSection p {
    margin-bottom: 15px;
    color: var(--lightText);
    line-height: 1.8;
}

.termsSection ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--lightText);
}

.termsSection li {
    margin-bottom: 8px;
}


.cookiesContent {
    padding: 60px 0;
}

.cookiesContent h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cookiesLastUpdated {
    color: var(--lightText);
    margin-bottom: 40px;
    font-style: italic;
}

.cookiesSection {
    margin-bottom: 40px;
}

.cookiesSection h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accentColor);
}

.cookiesSection p {
    margin-bottom: 15px;
    color: var(--lightText);
    line-height: 1.8;
}

.cookiesSection ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--lightText);
}

.cookiesSection li {
    margin-bottom: 8px;
}

.cookiesSection strong {
    color: var(--headingColor);
}




























@media (max-width: 992px) {

    .featuresGrid,
    .statsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blogGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footerContent {
        grid-template-columns: 1fr 1fr;
    }

    .hotelCard {
        flex-direction: column;
    }

    .hotelImage {
        width: 100%;
        height: 250px;
    }

    .textBlockContent {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .mobileMenuBtn {
        display: block;
    }

    .navMenu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navMenu.active {
        right: 0;
    }

    .navList {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .navItem {
        margin: 15px 0;
    }

    .heroTitle {
        font-size: 36px;
    }

    .featuresGrid,
    .statsGrid,
    .blogGrid {
        grid-template-columns: 1fr;
    }

    .footerContent {
        grid-template-columns: 1fr;
    }
}