/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

/* Font Weights */
.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

/* Button Sizes */
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

/* Button Layout */
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/********** NAVBAR STYLES **********/
.navbar-container {
    background-color: var(--dark);
}

/* Hotel Title */
.hotel-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 15px;
    margin-top: 15px;
    text-align: left;
    color: var(--primary) !important;
}

/* Navbar */
.navbar {
    background-color: var(--dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar Items */
.navbar-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* Navbar Links */
.navbar-nav .nav-item {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: white !important;
    padding: 0 10px;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--primary);
}

.dropdown-item {
    color: black !important;
}

.dropdown-item:hover {
    background-color: var(--dark);
    color: white !important;
}

/* Active & Hover States */
.navbar-nav .nav-item:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    cursor: pointer;
}

/* Toggler Icon */
.navbar-toggler-icon {
    width: 30px;
    height: 30px;
}

/* Mobile View */
@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .navbar-collapse {
        background-color: var(--dark);
        padding: 10px 0;
    }

    .navbar-nav .nav-item {
        padding: 10px 0;
    }
}

/********** HEADER STYLES **********/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

/********** SERVICE SECTION **********/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}

/********** TESTIMONIAL SECTION **********/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

/********** FOOTER STYLES **********/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
    background: var(--dark);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
