/*********************************
    GOYAL HOTELIERS
    FINAL PREMIUM WEBSITE CSS
*********************************/


/* ============================================================
   ROOT
============================================================ */

:root{

    --primary:#c8a97e;
    --secondary:#0f172b;
    --dark:#111111;
    --light:#ffffff;
    --text:#666666;

    --gold:#d4af37;
    --gold-dark:#b8860b;

    --transition:all .35s ease;
}


/* ============================================================
   RESET
============================================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    overflow-x:hidden;
}


/* ============================================================
   HEADER
============================================================ */

.gh-header{

    position:relative;

    z-index:1050;
}


/* ============================================================
   TOP BAR
============================================================ */

.gh-topbar{

    background:#ffffff;

    border-bottom:1px solid rgba(0,0,0,.08);

    min-height:44px;
}


.gh-top-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#444;

    font-size:14px;

    font-weight:500;

    text-decoration:none;

    transition:var(--transition);
}


.gh-top-link:hover{

    color:var(--primary);
}


.gh-social{

    display:flex;

    align-items:center;

    gap:14px;
}


.gh-social a{

    color:#555;

    font-size:16px;

    text-decoration:none;

    transition:var(--transition);
}


.gh-social a:hover{

    color:var(--primary);

    transform:translateY(-2px);
}


/* ============================================================
   PREMIUM NAVBAR
============================================================ */

.gh-navbar{

    position:relative;

    background:rgba(15,23,43,.94);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    padding:14px 0;

    transition:var(--transition);

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    z-index:1050;
}


.gh-navbar.is-scrolled{

    background:#0f172b;

    box-shadow:0 10px 30px rgba(0,0,0,.20);
}


/* ============================================================
   LOGO
============================================================ */

.gh-logo{

    height:70px;

    width:auto;

    display:block;
}


/* ============================================================
   NAV LINKS
============================================================ */

.gh-navbar .nav-link{

    color:#fff !important;

    font-size:15px;

    font-weight:600;

    letter-spacing:.4px;

    padding:14px 16px !important;

    transition:var(--transition);
}


.gh-navbar .nav-link:hover,
.gh-navbar .nav-link:focus,
.gh-navbar .nav-link.active{

    color:var(--primary) !important;
}


/* ============================================================
   DROPDOWN BASE
============================================================ */

.gh-navbar .dropdown{

    position:relative;
}


.gh-navbar .dropdown-menu{

    min-width:260px;

    position:absolute;

    top:100%;

    left:0;

    margin:0;

    padding:10px 0;

    border:0;

    border-radius:14px;

    background:#fff;

    box-shadow:0 15px 45px rgba(0,0,0,.16);

    overflow:hidden;

    z-index:1100;
}


.gh-navbar .dropdown-item{

    padding:12px 20px;

    font-size:14px;

    color:var(--secondary);

    transition:var(--transition);
}


.gh-navbar .dropdown-item:hover,
.gh-navbar .dropdown-item:focus{

    background:var(--primary);

    color:#fff;

    padding-left:28px;
}


/* ============================================================
   DESKTOP DROPDOWN
============================================================ */

@media (min-width:992px){

    .gh-navbar .dropdown-menu{

        top:calc(100% - 1px);

        transform:none !important;

        visibility:hidden;

        opacity:0;

        display:block;

        pointer-events:none;

        transition:
            opacity .18s ease,
            visibility .18s ease;
    }


    .gh-navbar .dropdown.show > .dropdown-menu{

        visibility:visible;

        opacity:1;

        pointer-events:auto;
    }


    /*
       Invisible bridge prevents dropdown disappearing
       while mouse moves from nav item to menu.
    */

    .gh-navbar .dropdown::after{

        content:"";

        position:absolute;

        left:0;

        right:0;

        bottom:-14px;

        height:16px;

        background:transparent;

        z-index:1099;
    }

}


/* ============================================================
   MOBILE NAVBAR
============================================================ */

@media (max-width:991.98px){

    .gh-topbar{

        display:none !important;
    }


    .gh-navbar{

        padding:10px 0;
    }


    .gh-navbar .gh-logo{

        height:58px !important;
    }


    .gh-navbar .navbar-collapse{

        margin-top:12px;

        padding:10px;

        background:
            linear-gradient(
                145deg,
                #111b2e,
                #0b1220
            );

        border:1px solid rgba(212,175,104,.16);

        border-radius:14px;

        box-shadow:
            0 20px 40px rgba(0,0,0,.20);
    }


    .gh-navbar .navbar-nav{

        gap:2px;
    }


    .gh-navbar .nav-link{

        width:100%;

        min-height:48px;

        display:flex;

        align-items:center;

        padding:0 14px !important;

        border-radius:9px;

        font-size:13px;
    }


    .gh-navbar .nav-link:hover{

        background:rgba(212,175,104,.08);
    }


    /* ========================================================
       MOBILE DROPDOWN
    ======================================================== */

    .gh-navbar .dropdown-menu{

        position:static !important;

        float:none !important;

        width:100% !important;

        min-width:100% !important;

        margin:4px 0 8px !important;

        padding:6px !important;

        border-radius:10px !important;

        background:rgba(5,10,20,.98) !important;

        border:1px solid rgba(212,175,104,.18) !important;

        box-shadow:none !important;

        transform:none !important;

        visibility:visible;

    }


    .gh-navbar .dropdown-item{

        display:block;

        width:100%;

        padding:11px 12px !important;

        color:rgba(255,255,255,.85) !important;

        background:transparent !important;

        border-radius:7px;
    }


    .gh-navbar .dropdown-item:hover,
    .gh-navbar .dropdown-item:focus{

        color:#fff !important;

        background:rgba(212,175,104,.12) !important;

        padding-left:16px !important;
    }


    .gh-navbar .dropdown-toggle{

        justify-content:flex-start;
    }


    .gh-navbar .dropdown-toggle::after{

        margin-left:auto;

        transition:transform .25s ease;
    }


    .gh-navbar .dropdown-toggle.show{

        color:#fff !important;

        background:rgba(212,175,104,.10);

        border-radius:9px;
    }


    .gh-navbar .dropdown-toggle.show::after{

        transform:rotate(180deg);
    }

}


/* ============================================================
   MOBILE TOGGLER
============================================================ */

.gh-navbar .navbar-toggler{

    width:45px;

    height:45px;

    padding:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:10px;

    border:1px solid rgba(212,175,104,.30) !important;

    background:rgba(212,175,104,.07);

    box-shadow:none !important;
}


.gh-navbar .navbar-toggler:focus{

    outline:none;

    box-shadow:
        0 0 0 3px rgba(212,175,104,.10) !important;
}


.gh-navbar .navbar-toggler-icon{

    filter:brightness(0) invert(1);
}


/* ============================================================
   WHATSAPP FLOAT
============================================================ */

.whatsapp-float{

    position:fixed;

    right:22px;

    bottom:22px;

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    text-decoration:none;

    font-size:30px;

    z-index:9999;

    box-shadow:
        0 10px 25px rgba(37,211,102,.35);

    transition:var(--transition);
}


.whatsapp-float:hover{

    color:#fff;

    transform:
        translateY(-5px)
        scale(1.05);
}


/* ============================================================
   HERO SECTION
============================================================ */

.hero-section{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0f172b;
}


.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:120%;

    object-fit:cover;

    z-index:1;
}


.video-overlay{

    position:absolute;

    inset:0;

    background:rgba(15,23,43,.55);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:2;
}


.hero-content{

    position:relative;

    z-index:3;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;
}


.hero-title{

    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:700;

    line-height:1.15;

    margin-bottom:20px;
}


.hero-subtitle{

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:35px;

    color:rgba(255,255,255,.9);
}


.hero-btn{

    display:inline-block;

    padding:16px 40px;

    background:#c8a97e;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}


.hero-btn:hover{

    background:#b89363;

    color:#fff;

    transform:translateY(-3px);
}


/* ============================================================
   NEARBY ATTRACTIONS
============================================================ */

.attractions-section{

    position:relative;
}


.attraction-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    height:320px;

    background:#000;

    box-shadow:
        0 12px 35px rgba(0,0,0,.15);

    transition:.45s ease;
}


.attraction-img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:
        transform .8s ease;
}


.attraction-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.35) 45%,
            rgba(0,0,0,.08) 100%
        );

    transition:.4s;

    z-index:1;
}


.attraction-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.28);
}


.attraction-card:hover .attraction-img{

    transform:scale(1.08);
}


.attraction-card:hover::before{

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.90),
            rgba(0,0,0,.45),
            rgba(0,0,0,.10)
        );
}


.overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    z-index:5;

    padding:24px;
}


.place-badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:30px;

    background:#c8a97e;

    color:#fff;

    font-size:11px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:12px;
}


.place-name{

    color:#fff;

    font-size:28px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:10px;

    text-shadow:
        0 3px 10px rgba(0,0,0,.45);
}


.place-name::after{

    content:"";

    display:block;

    width:55px;

    height:3px;

    background:#c8a97e;

    border-radius:20px;

    margin-top:10px;

    transition:.35s;
}


.attraction-card:hover .place-name::after{

    width:90px;
}


.place-arrow{

    color:#fff;

    font-size:14px;

    font-weight:600;

    opacity:0;

    transform:translateY(10px);

    transition:.35s;
}


.attraction-card:hover .place-arrow{

    opacity:1;

    transform:translateY(0);
}


/* ============================================================
   ATTRACTIONS RESPONSIVE
============================================================ */

@media(min-width:1200px){

    .attraction-card{

        height:330px;
    }

}


@media(max-width:991px){

    .attraction-card{

        height:280px;
    }


    .place-name{

        font-size:23px;
    }

}


@media(max-width:576px){

    .attraction-card{

        height:240px;

        border-radius:18px;
    }


    .overlay{

        padding:18px;
    }


    .place-name{

        font-size:20px;
    }


    .place-badge{

        font-size:10px;

        padding:5px 12px;
    }

}


/* ============================================================
   ABOUT COUNTERS
============================================================ */

.about-counter{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.4s ease;
}


.about-counter::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:#c8a97e;

    transform:scaleX(0);

    transition:.4s;
}


.about-counter:hover{

    transform:translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.15);
}


.about-counter:hover::after{

    transform:scaleX(1);
}


.counter-icon{

    width:75px;

    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#f8f5ef;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s;
}


.counter-icon i{

    font-size:30px;

    color:#c8a97e;

    transition:.4s;
}


.about-counter:hover .counter-icon{

    background:#c8a97e;
}


.about-counter:hover .counter-icon i{

    color:#fff;

    transform:rotateY(180deg);
}


.about-counter h2{

    font-size:42px;

    font-weight:800;

    color:#0f172b;

    margin-bottom:8px;
}


.about-counter h5{

    font-size:18px;

    font-weight:700;

    color:#222;

    margin-bottom:6px;
}


.about-counter p{

    margin:0;

    font-size:14px;

    color:#777;
}


@media(max-width:576px){

    .about-counter{

        padding:25px 15px;
    }


    .counter-icon{

        width:60px;

        height:60px;
    }


    .counter-icon i{

        font-size:24px;
    }


    .about-counter h2{

        font-size:30px;
    }


    .about-counter h5{

        font-size:16px;
    }

}


/* ============================================================
   PREMIUM EXPLORE BUTTON
============================================================ */

.premium-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 38px;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f5d76e
        );

    color:#111;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    border-radius:50px;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
        0 12px 30px rgba(212,175,55,.35);
}


.premium-btn::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transition:.7s;
}


.premium-btn:hover::before{

    left:120%;
}


.premium-btn:hover{

    transform:translateY(-5px);

    box-shadow:
        0 18px 40px rgba(212,175,55,.45);

    color:#111;
}


.premium-btn i{

    transition:.35s ease;
}


.premium-btn:hover i{

    transform:translateX(7px);
}


@media(max-width:576px){

    .premium-btn{

        padding:14px 28px;

        font-size:15px;
    }

}


/* ============================================================
   HOTEL CARD BUTTONS
============================================================ */

.hotel-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:100%;

    min-height:58px;

    padding:15px 24px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    letter-spacing:.3px;

    transition:all .35s ease;

    position:relative;

    overflow:hidden;
}


/* VIEW DETAILS */

.hotel-btn-outline{

    background:#fff;

    color:#222;

    border:2px solid #d4af37;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}


.hotel-btn-outline::before{

    content:'';

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f4d58d
        );

    transform:translateX(-100%);

    transition:.45s ease;

    z-index:0;
}


.hotel-btn-outline span,
.hotel-btn-outline i{

    position:relative;

    z-index:2;
}


.hotel-btn-outline:hover::before{

    transform:translateX(0);
}


.hotel-btn-outline:hover{

    color:#222;

    transform:
        translateY(-6px)
        scale(1.02);

    box-shadow:
        0 18px 35px rgba(212,175,55,.35);

    border-color:#b8860b;
}


/* BOOK NOW */

.hotel-btn-gold{

    background:
        linear-gradient(
            135deg,
            #b8860b,
            #d4af37,
            #e7c66d
        );

    color:#222;

    border:none;

    box-shadow:
        0 12px 30px rgba(212,175,55,.35);

    letter-spacing:.5px;

    text-transform:uppercase;

    font-size:15px;
}


.hotel-btn-gold::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-25deg);

    transition:.7s;
}


.hotel-btn-gold:hover::before{

    left:160%;
}


.hotel-btn-gold:hover{

    color:#222;

    transform:
        translateY(-6px)
        scale(1.02);

    box-shadow:
        0 22px 40px rgba(212,175,55,.45);
}


.hotel-btn i{

    transition:.35s ease;

    font-size:15px;
}


.hotel-btn:hover i{

    transform:translateX(6px);
}


@media(max-width:768px){

    .hotel-btn{

        min-height:54px;

        font-size:15px;

        margin-bottom:10px;
    }

}


/* ============================================================
   PREMIUM FACILITY CARDS
============================================================ */

.premium-service-card{

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    border:
        1px solid rgba(212,175,55,.18);

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    transition:.45s ease;

    position:relative;

    overflow:hidden;
}


.premium-service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:
        linear-gradient(
            90deg,
            #b8860b,
            #e7c86b,
            #b8860b
        );
}


.premium-service-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 22px 45px rgba(0,0,0,.16);
}


.premium-icon{

    width:82px;

    height:82px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #b8860b,
            #e8c76b
        );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:#fff;

    margin-bottom:20px;

    transition:.45s ease;

    box-shadow:
        0 10px 25px rgba(184,134,11,.35);
}


.premium-service-card:hover .premium-icon{

    transform:
        rotate(8deg)
        scale(1.08);
}


.premium-service-card h5{

    font-weight:700;

    font-size:1.45rem;

    color:#111827;

    transition:.3s;
}


.premium-service-card:hover h5{

    color:#b8860b;
}


.premium-service-card p{

    color:#6b7280;

    line-height:1.8;

    font-size:15px;
}


/* ============================================================
   ROOM CARDS
============================================================ */

.room-item{

    transition:.4s;

    border-radius:18px;

    overflow:hidden;
}


.room-item:hover{

    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.18) !important;
}


.room-item img{

    transition:.5s;
}


.room-item:hover img{

    transform:scale(1.05);
}


/* ============================================================
   LEGACY / TEMPLATE SUPPORT
============================================================ */

.fw-medium{

    font-weight:500 !important;
}


.fw-semi-bold{

    font-weight:600 !important;
}


.back-to-top{

    position:fixed;

    display:none;

    right:45px;

    bottom:45px;

    z-index:9999;

    align-items:center;

    justify-content:center;
}


/* ============================================================
   MOBILE FINAL
============================================================ */

@media(max-width:576px){

    .whatsapp-float{

        width:52px;

        height:52px;

        right:16px;

        bottom:16px;

        font-size:26px;
    }


    .back-to-top{

        right:20px;

        bottom:85px;
    }

}