

/* =========================================
   GLOBAL
========================================= */

:root{
    --primary:#0f4285;
    --primary-dark:#0a2f61;
    --gold:#d8b36a;
    --light:#f5f7fb;
    --dark:#081326;
    --white:#ffffff;
    --text:#5c6574;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:var(--text);
}

section{
    position:relative;
}

h1,h2,h3,h4,h5{
    font-family:'Playfair Display',serif;
    color:#111;
}

p{
    line-height:1.9;
    font-size:17px;
}

/* =========================================
   TOP BAR
========================================= */

.topbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:9999;
    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.topbar span{
    opacity:0.9;
}

/* =========================================
   NAVBAR
========================================= */

.navbar-custom{
    position:fixed;
    top:40px;
    width:100%;
    z-index:999;
    transition:0.4s;
    padding:25px 0;
}

.navbar-scrolled{
  background: rgb(210 185 185 / 80%);
    backdrop-filter:blur(10px);
}

.nav-link{
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin:0 10px;
    transition:0.3s;
}

.nav-link:hover{
    color:var(--gold) !important;
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#fff;
    font-style:italic;
    text-decoration:none;
}

.book-btn{
    background:#1f5db8;
    color:#fff;
    padding:14px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.book-btn:hover{
    background:#184b96;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slider{
    height:100vh;
    position:relative;
}

.carousel-item img{
    height:100vh;
    width:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
}

.carousel-caption{
    bottom:unset;
    top:55%;
    transform:translateY(-50%);
}

.subtitle{
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:18px;
    margin-bottom:25px;
}

.hero-title{
    font-family:'Playfair Display',serif;
    font-size:90px;
    font-weight:400;
    margin-bottom:25px;
    color:#fff;
}

.hero-text{
    font-size:24px;
    max-width:900px;
    margin:auto;
    line-height:1.8;
    margin-bottom:40px;
    color:#fff;
}

.explore-btn{
    border:1px solid #fff;
    color:#fff;
    padding:18px 45px;
    border-radius:15px;
    text-decoration:none;
    font-size:20px;
    transition:0.4s;
}

.explore-btn:hover{
    background:#fff;
    color:#000;
}

/* =========================================
   SLIDER ANIMATION
========================================= */

.carousel-caption h1,
.carousel-caption p,
.carousel-caption a{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.about-home{
    padding:120px 0;
    background:#fff;
}

.about-home img{
    border-radius:30px;
    transition:0.5s;
}

.about-home img:hover{
    transform:scale(1.02);
}

.about-home h2{
    font-size:58px;
    margin-bottom:30px;
    line-height:1.2;
}

.about-home p{
    margin-bottom:25px;
}

.about-home .btn{
    background:var(--primary);
    border:none;
    padding:16px 38px;
    border-radius:14px;
    font-weight:500;
    transition:0.3s;
}

.about-home .btn:hover{
    background:var(--primary-dark);
    transform:translateY(-3px);
}

/* =========================================
   FEATURES
========================================= */

.feature-card{
    background:#fff;
    padding:50px 35px;
    border-radius:28px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,0.07);
    transition:0.4s;
    border:1px solid rgba(0,0,0,0.04);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 50px rgba(0,0,0,0.12);
}

.feature-card i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:30px;
}

.feature-card h4{
    font-size:30px;
    margin-bottom:20px;
}

.feature-card p{
    margin-bottom:0;
}

/* =========================================
   HOTELS
========================================= */

.hotel-section{
    padding:120px 0;
    background:var(--light);
}

.hotel-section h2{
    font-size:58px;
    margin-bottom:15px;
}

.hotel-section .text-center p{
    font-size:20px;
    color:#666;
}

.hotel-card{
    border:none;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
}

.hotel-card:hover{
    transform:translateY(-12px);
}

.hotel-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.6s;
}

.hotel-card:hover img{
    transform:scale(1.1);
}

.hotel-card .card-body{
    padding:40px 35px;
}

.hotel-card h4{
    font-size:34px;
    margin-bottom:15px;
}

.hotel-card h5{
    color:var(--primary);
    font-size:26px;
    margin-top:20px;
}

.hotel-card .btn{
    background:var(--primary);
    border:none;
    padding:14px 35px;
    border-radius:12px;
    transition:0.3s;
}

.hotel-card .btn:hover{
    background:var(--primary-dark);
}

/* =========================================
   STATS
========================================= */

.stats-home{
    background:linear-gradient(rgba(8,19,38,0.92), rgba(8,19,38,0.92)),
    url('/images/photo-1507525428034-b723cf961d3e.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    padding:120px 0;
    color:#fff;
}

.stats-home h2{
    font-size:72px;
    color:var(--gold);
    margin-bottom:15px;
}

.stats-home p{
    font-size:22px;
    color:#fff;
}

/* =========================================
   CTA
========================================= */

.cta-section{
    background:url('/images/photo-1519046904884-53103b34b206.jpg');
    background-size:cover;
    background-position:center;
    padding:160px 0;
    text-align:center;
}

.cta-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.cta-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.cta-content h2{
    color:#fff;
    font-size:72px;
    font-weight:400;
}

.cta-content p{
    font-size:24px;
    max-width:900px;
    margin:auto;
}

.cta-content .btn{
    border-radius:15px;
    padding:18px 50px;
    font-size:20px;
    transition:0.3s;
}

.cta-content .btn:hover{
    transform:translateY(-5px);
}

/* =========================================
   FOOTER
========================================= */

footer{
    background:var(--dark);
    padding:90px 0 60px;
    color:#b8c0d1;
}

footer h4,
footer h5{
    color:#fff;
    margin-bottom:25px;
}

footer p{
    margin-bottom:12px;
}

footer a{
    color:#dbe4ff;
    text-decoration:none;
    transition:0.3s;
}

footer a:hover{
    color:var(--gold);
    padding-left:5px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

.topbar{
    display:none;
}

.navbar-custom{
    top:0;
    background:rgba(0,0,0,0.7);
}

.hero-title{
    font-size:50px;
}

.hero-text{
    font-size:18px;
}

.logo{
    font-size:34px;
}

.about-home{
    padding:80px 0;
    text-align:center;
}

.about-home h2,
.hotel-section h2{
    font-size:42px;
}

.hotel-section{
    padding:80px 0;
}

.stats-home{
    padding:80px 0;
}

.cta-section{
    padding:100px 0;
}

.cta-content h2{
    font-size:42px;
}

footer{
    text-align:center;
}

}

@media(max-width:768px){

.hero-title{
    font-size:42px;
}

.hero-text{
    font-size:18px;
}

.about-home h2,
.hotel-section h2{
    font-size:34px;
}

.feature-card{
    padding:40px 25px;
}

.hotel-card h4{
    font-size:28px;
}

.stats-home h2{
    font-size:44px;
}

.cta-content h2{
    font-size:34px;
}

}

