
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f8f9fc;
    color:#333;
}



header{
    width:100%;
    height:80px;
    background:#001F54;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#fff;
}

.logo span{
    color: #ee790b;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover,
.active{
    color: #ee790b;
}


.hero{
    width:100%;
    height:80vh;
    background:
        linear-gradient(rgba(0,31,84,.65),rgba(0,31,84,.65)),
        url("../img/hotel2.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    animation:fadeUp 1.3s;
}

.hero h1{

    font-size:55px;
    color: #ee790b;
    margin-bottom:15px;

}

.hero p{

    font-size:20px;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 40px;
    background: #ee790b;
    color:#001F54;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:.4s;
}

.btn:hover{
    background:white;
    transform:translateY(-6px);
}


.title-section{

    width:85%;
    margin:60px auto 40px;
    text-align:center;

}

.title-section span{
    color: #ee790b;
    font-weight:bold;
    letter-spacing:3px;
}

.title-section h2{
    font-size:45px;
    color:#001F54;
    margin:15px 0;
}

.title-section p{
    width:800px;
    max-width:95%;
    margin:auto;
    line-height:30px;
    color:#666;
}

/*==========================
      GALLERY
==========================*/

.gallery{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    padding-bottom:80px;
}

.card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    cursor:pointer;
    animation:zoomIn 1s;
}

.card img{
    width:100%;
    height:270px;
    object-fit:cover;
    transition:.6s;
}

.card:hover img{
    transform:scale(1.15);
}

.overlay{
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    background:rgba(0,31,84,.82);
    color:white;
    padding:25px;
    transition:.5s;
}

.card:hover .overlay{
    bottom:0;
}

.overlay h3{
    color: #ee790b;
    margin-bottom:10px;
    font-size:24px;
}

.overlay p{
    font-size:15px;
}

/*==========================
ABOUT
==========================*/

.about-gallery{
    width:90%;
    margin:90px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:42px;
    color:#001F54;
    margin-bottom:20px;
}

.about-text p{
    line-height:33px;
    color:#666;
    margin-bottom:25px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/*==========================
FOOTER
==========================*/

footer{
    background:#001F54;
    color:white;
    padding:60px 8% 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-content h3{
    color: #ee790b;
    margin-bottom:20px;
}

.footer-content p{
    margin-bottom:10px;
    line-height:28px;
}

.social{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background: #ee790b;
    color:#001F54;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:18px;
    transition:.4s;
}

.social a:hover{
    background:white;
    transform:translateY(-5px);
}

hr{
    margin:40px 0 20px;
    border:1px solid rgba(255,255,255,.2);
}

.copy{
    text-align:center;
    color:#ddd;
}

/*==========================
ANIMATIONS
==========================*/

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(.8);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

    header{
        padding:0 5%;
    }

    nav ul{
        gap:18px;
    }

    .hero h1{
        font-size:50px;
    }

    .about-gallery{
        flex-direction:column;
    }

}

@media(max-width:768px){

    header{
        flex-direction:column;
        height:auto;
        padding:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        margin-top:15px;
    }

    .hero{
        height:80vh;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:18px;
        line-height:28px;
    }

    .title-section h2{
        font-size:35px;
    }

    .about-text h2{
        font-size:32px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:32px;
    }

    .btn{
        padding:12px 25px;
    }

    .gallery{
        grid-template-columns:1fr;
    }

}