/* =========================================================
   HIKIFAS HOTELS — Luxury Nigerian Hotel Theme
   Brand palette inspired by the supplied HIKIFAS Hotels logo:
   Orange / Black / White
   ========================================================= */

:root {
    --primary: #F77A00;
    --primary-dark: #D85F00;
    --primary-light: #FFF1E3;
    --secondary: #1A1A1A;
    --dark: #101010;
    --dark-soft: #202020;
    --light: #FFF9F4;
    --white: #FFFFFF;
    --text: #4B4B4B;
    --muted: #777777;
    --border: #E9E1D9;
    --shadow-sm: 0 8px 25px rgba(0, 0, 0, .07);
    --shadow: 0 18px 50px rgba(0, 0, 0, .12);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, .18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all .35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Heebo", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

::selection {
    color: var(--white);
    background: var(--primary);
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

/* =========================================================
   Scrollbar
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =========================================================
   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;
}

#spinner .spinner-border {
    color: var(--primary) !important;
    border-width: 3px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 7px;
    padding: 12px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: var(--white) !important;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(247, 122, 0, .22);
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(247, 122, 0, .30);
}

.btn-dark {
    color: var(--white) !important;
    background: var(--dark);
    border-color: var(--dark);
}

.btn-dark:hover,
.btn-dark:focus {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    color: var(--dark) !important;
    background: var(--white);
    border-color: var(--white);
}

.btn-light:hover {
    color: var(--white) !important;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 42px;
    height: 42px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-lg-square {
    width: 52px;
    height: 52px;
}

/* =========================================================
   Header / Top Bar
   ========================================================= */

.container-fluid.bg-dark {
    background: var(--dark) !important;
}

.navbar {
    transition: var(--transition);
}

.navbar-brand h1 {
    color: var(--white) !important;
    letter-spacing: 2px;
    font-size: 28px;
}

.navbar-brand h1::first-letter {
    color: var(--primary);
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 26px;
    padding: 27px 0;
    color: rgba(255,255,255,.86);
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(247,122,0,.6);
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(247,122,0,.2);
}

.navbar .dropdown-menu {
    min-width: 210px;
    padding: 10px;
    border: 0;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 10px 10px !important;
    box-shadow: var(--shadow);
}

.navbar .dropdown-item {
    padding: 10px 14px;
    font-weight: 500;
    border-radius: 6px;
}

.navbar .dropdown-item:hover {
    color: var(--white);
    background: var(--primary);
}

.bg-white .fa,
.bg-white .fab {
    color: var(--primary);
}

/* =========================================================
   Hero Carousel
   ========================================================= */

#header-carousel .carousel-item {
    position: relative;
}

#header-carousel .carousel-item img {
    min-height: 680px;
    object-fit: cover;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.52) 48%, rgba(10,10,10,.22) 100%);
    z-index: 1;
}

.carousel-caption .section-title {
    color: var(--primary) !important;
    letter-spacing: 3px;
}

.carousel-caption h1 {
    max-width: 900px;
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.08;
    text-shadow: 0 5px 25px rgba(0,0,0,.25);
}

.carousel-caption p {
    max-width: 700px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(247,122,0,.85);
    background-size: 55%;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        min-height: 560px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        min-height: 560px;
        object-fit: cover;
    }

    .carousel-caption {
        background: rgba(10,10,10,.66);
    }

    .carousel-caption h1 {
        font-size: 2.45rem;
    }

    .carousel-caption p {
        font-size: 16px;
    }
}

/* =========================================================
   Page Headers
   ========================================================= */

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: linear-gradient(90deg, rgba(10,10,10,.82), rgba(10,10,10,.48));
}

.page-header h1 {
    color: var(--white);
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255,255,255,.85);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary);
}

/* =========================================================
   Booking Bar
   ========================================================= */

.booking {
    position: relative;
    margin-top: -75px !important;
    z-index: 10;
}

.booking .bg-white {
    border-top: 4px solid var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow-lg) !important;
}

.booking .form-control,
.booking .form-select {
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 7px;
}

.booking .form-control:focus,
.booking .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(247,122,0,.13);
}

/* =========================================================
   Section Titles
   ========================================================= */

.section-title {
    position: relative;
    display: inline-block;
    color: var(--primary) !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.section-title::before,
.section-title::after {
    position: absolute;
    content: "";
    width: 42px;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::before {
    left: -54px;
}

.section-title::after {
    right: -54px;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

/* =========================================================
   About / Statistics
   ========================================================= */

.container-xxl {
    overflow: hidden;
}

.border {
    border-color: var(--border) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.about-stat,
.about-stat .border {
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-6px);
}

.about-stat i {
    color: var(--primary);
}

.about-stat h2 {
    color: var(--dark);
}

/* =========================================================
   Room Cards
   ========================================================= */

.room-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition);
}

.room-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow) !important;
}

.room-item img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.room-item:hover img {
    transform: scale(1.05);
}

.room-item .position-relative {
    overflow: hidden;
}

.room-item small.position-absolute {
    background: var(--primary) !important;
    font-size: 14px;
    font-weight: 700;
}

.room-item h5 {
    font-size: 20px;
}

.room-item .fa-star {
    color: var(--primary) !important;
}

.room-item .fa-bed,
.room-item .fa-bath,
.room-item .fa-wifi {
    color: var(--primary) !important;
}

/* =========================================================
   Service Cards
   ========================================================= */

.service-item {
    height: 320px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg) !important;
    transition: var(--transition);
    overflow: hidden;
}

.service-item:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-item .service-icon {
    margin: 0 auto 28px auto;
    width: 70px;
    height: 70px;
    transition: var(--transition);
}

.service-item i,
.service-item h5,
.service-item p {
    transition: var(--transition);
}

.service-item i {
    color: var(--primary) !important;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: var(--white) !important;
}

.service-item:hover .service-icon {
    transform: scale(1.08);
    border-color: var(--primary) !important;
}

/* =========================================================
   Video / Experience Section
   ========================================================= */

.video {
    position: relative;
    height: 100%;
    min-height: 520px;
    background:
        linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
        url(../img/video.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    background: var(--white);
}

.video .btn-play:before,
.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.video .btn-play:before {
    background: rgba(247,122,0,.45);
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    background: var(--primary);
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

#videoModal .modal-body {
    position: relative;
    padding: 0;
}

#videoModal .modal-content {
    border: 0;
    border-radius: 12px !important;
    overflow: hidden;
}

#videoModal .modal-header {
    border: 0;
    background: var(--dark);
    color: var(--white);
}

#videoModal .modal-title {
    color: var(--white);
}

/* =========================================================
   Testimonial
   ========================================================= */

.testimonial {
    background:
        linear-gradient(rgba(16,16,16,.82), rgba(16,16,16,.82)),
        url(../img/carousel-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 35px;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.testimonial-carousel .testimonial-item p {
    font-size: 16px;
    color: var(--text);
}

.testimonial-carousel .testimonial-item img {
    object-fit: cover;
}

.testimonial-carousel .testimonial-item h6 {
    color: var(--dark);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: scale(1.08);
}

/* =========================================================
   Team
   ========================================================= */

.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: var(--transition);
}

.team-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-item:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: var(--primary) !important;
}

.team-item img {
    transition: transform .6s ease;
}

.team-item:hover img {
    transform: scale(1.05);
}

.team-item:hover .bg-primary {
    background: var(--dark) !important;
}

.team-item:hover .bg-primary i {
    color: var(--primary) !important;
}

/* =========================================================
   Forms / Inputs
   ========================================================= */

.form-control,
.form-select {
    color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 12px 15px;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus,
.form-select:focus {
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(247,122,0,.13);
}

/* =========================================================
   Newsletter
   ========================================================= */

.newsletter {
    position: relative;
    z-index: 3;
}

.newsletter > .row > .col-lg-10 {
    border-color: var(--primary) !important;
}

.newsletter .bg-white {
    background: var(--white) !important;
    box-shadow: var(--shadow-lg);
}

.newsletter input {
    border-radius: 30px;
    padding-left: 20px !important;
}

.newsletter button {
    border-radius: 30px;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
    background: var(--dark) !important;
}

.footer .bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 15px 35px rgba(247,122,0,.18);
}

.footer .bg-primary h1 {
    color: var(--white) !important;
}

.footer .btn.btn-social {
    margin-right: 6px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    transition: var(--transition);
}

.footer .btn.btn-social:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 7px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: var(--transition);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: .5px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.7);
}

.footer .footer-menu a:hover {
    color: var(--primary);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* =========================================================
   Back To Top
   ========================================================= */

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 25px;
    z-index: 99;
    width: 48px;
    height: 48px;
    color: var(--white) !important;
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(247,122,0,.3);
}

.back-to-top:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-4px);
}

/* =========================================================
   Cards / Images / Utility polish
   ========================================================= */

.shadow {
    box-shadow: var(--shadow-sm) !important;
}

.rounded {
    border-radius: var(--radius) !important;
}

.rounded-3 {
    border-radius: var(--radius) !important;
}

.text-body {
    color: var(--text) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Orange decorative line */
.hikifas-divider {
    width: 75px;
    height: 3px;
    background: var(--primary);
    margin: 15px 0 25px;
    border-radius: 10px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 11px 0;
    }

    .navbar .btn {
        margin-top: 10px;
    }

    .booking {
        margin-top: -35px !important;
    }

    .footer {
        margin-top: -80px;
        padding-top: 140px;
    }
}

@media (max-width: 767.98px) {
    .section-title::before,
    .section-title::after {
        display: none;
    }

    .booking {
        margin-top: 0 !important;
        padding-top: 20px;
    }

    .booking .bg-white {
        padding: 22px !important;
    }

    .service-item {
        height: 290px;
    }

    .video {
        min-height: 400px;
    }

    .testimonial-carousel {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonial-carousel .owl-nav {
        display: none;
    }

    .footer {
        margin-top: -50px;
        padding-top: 100px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .btn {
        padding: 11px 20px;
        font-size: 12px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption .btn {
        margin: 4px !important;
    }

    .room-item img {
        height: 220px;
    }
}
