/* =========================================================
   GLOBAL
========================================================= */

:root {

    --primary: #174a3b;

    --secondary: #d6a84f;

    --dark: #102820;

    --light: #f7f6f2;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 85px;

}


body {

    margin: 0;

    font-family: Arial, sans-serif;

    color: #333;

    background: var(--light);

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    background: rgba(16, 40, 32, 0.97);

    padding: 12px 0;

}


.navbar-brand {

    color: var(--secondary) !important;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 700;

}


.navbar-brand i {

    margin-right: 5px;

}


.brand-subtitle {

    font-size: 14px;

    letter-spacing: 0.5px;

}


.navbar-nav .nav-link {

    color: #fff !important;

    margin-left: 18px;

    font-weight: 500;

    transition: .3s;

}


.navbar-nav .nav-link:hover {

    color: var(--secondary) !important;

}


.navbar-nav .nav-link.active {

    color: var(--secondary) !important;

}


.book-btn {

    background: var(--secondary);

    color: #17251f !important;

    padding: 9px 20px !important;

    border-radius: 30px;

    font-weight: 600 !important;

}


.book-btn:hover {

    background: #fff;

    color: var(--primary) !important;

}



/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    width: 100%;

    height: calc(100vh - 75px);

    min-height: 650px;

    overflow: hidden;

    display: flex;

    align-items: center;

}


/* =========================================================
   IMAGE SCROLL
========================================================= */

.image-scroll {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}


.image-track {

    display: flex;

    height: 100%;

    width: max-content;

    gap: 0;

    animation:
        imageScroll 35s linear infinite;

}


.image-track img {

    width: 100vw;

    height: 100%;

    object-fit: cover;

    flex-shrink: 0;

    filter: brightness(.9);

}


@keyframes imageScroll {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-500vw);

    }

}



/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(

            90deg,

            rgba(0, 0, 0, .78) 0%,

            rgba(0, 0, 0, .55) 40%,

            rgba(0, 0, 0, .25) 70%,

            rgba(0, 0, 0, .38) 100%

        );

}



/* =========================================================
   HERO CONTENT
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 850px;

    color: #fff;

}


.hero-subtitle h1 {

    font-size: 22px;

    font-weight: 600;

    letter-spacing: 5px;

    color: #f5c542;

    margin-bottom: 15px;

}


.hero-content h2 {

    font-size: clamp(
        35px,
        5vw,
        60px
    );

    line-height: 1.15;

    font-weight: 700;

    color: #fff;

    margin-bottom: 25px;

    text-shadow:
        0 3px 10px rgba(0,0,0,.5);

}


.hero-content p {

    max-width: 650px;

    font-size: 19px;

    line-height: 1.7;

    color: #fff;

    margin-bottom: 30px;

    text-shadow:
        0 2px 6px rgba(0,0,0,.5);

}



/* =========================================================
   BUTTONS
========================================================= */

.main-btn {

    background: var(--secondary);

    border: 2px solid var(--secondary);

    color: #17251f;

    border-radius: 30px;

    padding: 13px 30px;

    font-weight: 600;

    transition: .3s;

}


.main-btn:hover {

    background: transparent;

    color: #fff;

    border-color: #fff;

}


.outline-btn {

    border: 2px solid #fff;

    color: #fff;

    background: transparent;

    border-radius: 30px;

    padding: 13px 30px;

    font-weight: 600;

    transition: .3s;

}


.outline-btn:hover {

    background: #fff;

    color: var(--primary);

}



/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section-padding {

    padding: 90px 0;

}


.section-title {

    color: var(--primary);

    font-weight: 700;

    font-size: 40px;

}


.section-subtitle {

    color: var(--secondary);

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}



/* =========================================================
   ABOUT
========================================================= */

.about-img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);

}


.about-text {

    line-height: 1.8;

    color: #666;

    font-size: 17px;

}



/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-feature {

    background: #fff;

    border-radius: 15px;

    padding: 30px 20px;

    height: 100%;

    text-align: center;

    box-shadow:
        0 8px 30px rgba(0,0,0,.07);

    transition: .3s;

}


.about-feature:hover {

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);

}


.about-feature-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        rgba(214,168,79,.15);

    color: var(--secondary);

    font-size: 32px;

}


.about-feature h4 {

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 12px;

}


.about-feature p {

    color: #777;

    line-height: 1.6;

    margin: 0;

}



/* =========================================================
   ROOMS
========================================================= */

.room-card {

    border: none;

    border-radius: 15px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(0,0,0,.08);

    transition: .3s;

}


.room-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.14);

}


.room-card img {

    height: 240px;

    object-fit: cover;

}


.room-card h4 {

    color: var(--primary);

    font-weight: 700;

}



/* =========================================================
   FACILITIES
========================================================= */

.facility-section {

    background: var(--primary);

    color: #fff;

}


.facility-box {

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.12);

    padding: 35px 20px;

    border-radius: 15px;

    height: 100%;

    transition: .3s;

}


.facility-box:hover {

    background:
        rgba(255,255,255,.15);

    transform:
        translateY(-5px);

}


.facility-icon {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 15px;

}



/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: #fff;

}


.contact-info {

    height: 100%;

    padding: 40px;

    background: var(--primary);

    border-radius: 20px;

    color: #fff;

}


.contact-info h3 {

    color: #fff;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 10px;

}


.contact-intro {

    color:
        rgba(255,255,255,.75);

    line-height: 1.7;

    margin-bottom: 35px;

}


.contact-item {

    display: flex;

    gap: 18px;

    margin-bottom: 30px;

}


.contact-item:last-child {

    margin-bottom: 0;

}


.contact-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(214,168,79,.15);

    color: var(--secondary);

    font-size: 21px;

}


.contact-item h5 {

    margin-bottom: 7px;

    font-weight: 700;

    color: #fff;

}


.contact-item p {

    margin: 0;

    color:
        rgba(255,255,255,.75);

    line-height: 1.6;

}



/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(0,0,0,.08);

}


.contact-form-box h3 {

    color: var(--primary);

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 10px;

}


.contact-form-box .form-label {

    color: #333;

    font-weight: 600;

}


.contact-form-box .form-control {

    min-height: 50px;

    border: 1px solid #ddd;

    border-radius: 8px;

    padding: 12px 15px;

}


.contact-form-box textarea.form-control {

    min-height: 130px;

}


.contact-form-box select.form-control {

    appearance: auto;

}


.contact-form-box .form-control:focus {

    border-color: var(--secondary);

    box-shadow:
        0 0 0 .2rem
        rgba(214,168,79,.15);

}



/* =========================================================
   CTA
========================================================= */

.cta {

    background:

        linear-gradient(
            rgba(23,74,59,.92),
            rgba(23,74,59,.92)
        ),

        url("../images/cta.jpg")
        center / cover;

    color: #fff;

    padding: 90px 0;

}


.cta h2 {

    font-size: 45px;

    font-weight: 700;

}



/* =========================================================
   FOOTER
========================================================= */

footer {

    background: #0b2019;

    color: #bbb;

    padding: 60px 0 20px;

}


footer h4 {

    color: #fff;

    margin-bottom: 20px;

}


footer a {

    color: #bbb;

    text-decoration: none;

}


footer a:hover {

    color: var(--secondary);

}


.social-icon {

    width: 40px;

    height: 40px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.1);

    color: white;

    margin-right: 8px;

    transition: .3s;

}


.social-icon:hover {

    background: var(--secondary);

    color: #17251f;

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    .navbar-brand {

        font-size: 17px;

    }


    .brand-subtitle {

        font-size: 11px;

    }


    .hero {

        height: calc(100vh - 70px);

        min-height: 650px;

        text-align: center;

    }


    .hero-content {

        padding: 20px;

    }


    .hero-subtitle h1 {

        font-size: 17px;

        letter-spacing: 3px;

    }


    .hero-content h2 {

        font-size: 28px;

        line-height: 1.3;

    }


    .hero-content p {

        font-size: 16px;

        line-height: 1.6;

    }


    .hero-content .btn {

        display: inline-block;

        margin-bottom: 10px;

    }


    .section-padding {

        padding: 65px 0;

    }


    .section-title {

        font-size: 32px;

    }


    .about-img {

        height: 320px;

        margin-bottom: 10px;

    }


    .about-text {

        font-size: 16px;

    }


    .room-card img {

        height: 220px;

    }


    .contact-info {

        padding: 25px;

    }


    .contact-form-box {

        padding: 25px;

    }


    .contact-form-box h3 {

        font-size: 27px;

    }


    .cta {

        padding: 65px 0;

    }


    .cta h2 {

        font-size: 32px;

    }


    .navbar-nav .nav-link {

        margin-left: 0;

        padding: 10px 0;

    }

}