/* ==========================
   GOOGLE FONTS & RESET
========================== */
.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
    color: #333;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
/* ==========================
   NAVBAR
========================== */

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.navbar{
    max-width: 1200px;
    width: 90%;
    height: 80px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero{
    padding:0 20px;
}
.logo{
    color: white;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.nav-links{
    display: flex;
    gap: 35px;
}

.nav-links a{
    color: white;
    font-size: 17px;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #C8A96A;
}

.btn,
.hero-btn,
.room-btn{

    display:inline-block;
    background:#C8A96A;
    color:#fff;

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.3s ease;
}

.btn:hover,
.hero-btn:hover,
.room-btn:hover{

    background:#a88745;

    transform:translateY(-3px);
}
/* ==========================
   HERO SECTION
========================== */

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url("../images/hotel-akshit.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:0 20px;
}
.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero{
    position:relative;
    overflow:hidden;
}

.hero-content{
    position:relative;
    z-index:2;
}
.hero-content{
    max-width:850px;
    color:#fff;
}

.hero h1{
    font-size:64px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:20px;
    text-shadow:0 5px 20px rgba(0,0,0,.6);
}
.hero p{
    font-size:22px;
    max-width:700px;
    margin:0 auto 35px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#C8A96A;
    color:#fff;
    border-radius:50px;
    transition:.3s;
}

.hero-btn:hover{
    background:#a88745;
    transform:translateY(-3px);
}

.hero-btn.secondary{
    background:transparent;
    border:2px solid #fff;
}

.hero-btn.secondary:hover{
    background:#fff;
    color:#000;
}
/* ==========================
   BOOKING SECTION
========================== */

.booking{
    background:#ffffff;
    padding:60px 20px;
}

.booking-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

    background:white;
    padding:30px;
    border-radius:15px;

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

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:10px;
    font-weight:600;
}

.input-box input,
.input-box select{

    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.search-btn{

    background:#C8A96A;
    color:white;

    border:none;

    border-radius:8px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;
}

.search-btn:hover{

    background:#a88745;

}
/* ==========================
   ABOUT
========================== */

.about-image{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:500px;
    height:auto;
    border-radius:15px;
}
.about-content h2{

    font-size:45px;
    font-family:'Playfair Display', serif;
    margin-bottom:25px;

}

.about-content p{

    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.feature{

    background:#f8f8f8;
    padding:20px;
    border-radius:10px;
    transition:.3s;

}

.feature:hover{

    background:#C8A96A;
    color:white;
    transform:translateY(-5px);

}
/* ==========================
   ROOMS
========================== */

.rooms{
    padding:100px 8%;
    background:#f9f9f9;
}

.section-title{
    text-align:center;
    font-size:45px;
    font-family:'Playfair Display', serif;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:60px;
    font-size:18px;
}

.room-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.room-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.room-info{
    padding:25px;
}

.room-info h3{
    margin-bottom:15px;
    font-size:28px;
    font-family:'Playfair Display', serif;
}

.room-info p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.room-btn{
    display:inline-block;
    background:#C8A96A;
    color:white;
    padding:12px 28px;
    border-radius:30px;
    transition:.3s;
}

.room-btn:hover{
    background:#a88745;
}
/* ==========================
   RESTAURANT
========================== */

.restaurant{
    padding:100px 8%;
    background:#ffffff;
}

.restaurant-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.restaurant-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.restaurant-text h2{
    font-size:45px;
    font-family:'Playfair Display', serif;
    margin-bottom:25px;
}

.restaurant-text p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.restaurant-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.restaurant-list li{
    font-size:18px;
}
/* ==========================
   WHY CHOOSE US
========================== */

.features{
    padding:100px 8%;
    background:#f8f8f8;
}

.container{
    max-width:1200px;
    margin:auto;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.feature-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.feature-icon{
    font-size:45px;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}
/* ==========================
   GALLERY
========================== */

.gallery{
    padding:100px 8%;
    background:#fff;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
    cursor:pointer;
}

.gallery-item:hover img{
    transform:scale(1.08);
}
/* ==========================
   TESTIMONIALS
========================== */

.testimonials{
    padding:100px 8%;
    background:#f7f7f7;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

.testimonial-card h3{
    color:#C8A96A;
    margin-bottom:10px;
}
/* ==========================
   CONTACT
========================== */

.contact{
    padding:100px 8%;
    background:#ffffff;
}

.contact-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:50px;
}

.contact-info h3{
    font-size:32px;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

.contact-info p{
    margin-bottom:20px;
    line-height:1.8;
    color:#555;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#C8A96A;

}

.contact-form button{

    background:#C8A96A;

    color:white;

    border:none;

    padding:16px;

    border-radius:8px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;
}

.contact-form button:hover{

    background:#a88745;

}
/* ==========================
   FOOTER
========================== */

.footer{

    background:#1f1f1f;

    color:white;

    padding-top:70px;

}

.footer-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer h2,
.footer h3{

    margin-bottom:20px;

    font-family:'Playfair Display', serif;

}

.footer p{

    color:#ccc;

    line-height:1.8;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:#ccc;

}

.footer-links a:hover{

    color:#C8A96A;

}

.footer-bottom{

    border-top:1px solid #333;

    text-align:center;

    margin-top:60px;

    padding:25px;

}
.room-card,
.feature-card,
.testimonial-card{

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}

.room-card:hover,
.feature-card:hover,
.testimonial-card:hover{

    transform:translateY(-12px);

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

}
/* ===================================
   RESPONSIVE DESIGN
=================================== */

/* Tablets */
@media (max-width:992px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:20px 0;
    }

    .nav-links{
        margin:20px 0;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }

    .booking-container{
        grid-template-columns:1fr 1fr;
    }

    .about,
    .restaurant-content,
    .contact-container{
        grid-template-columns:1fr;
    }

    .about-image,
    .restaurant-image{
        order:-1;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}

/* Mobile */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        padding:15px 0;
    }

    .logo{
        font-size:26px;
    }

    .nav-links{
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin:20px 0;
    }

    .btn{
        margin-top:15px;
    }

    .hero{
        min-height:85vh;
        padding:30px 15px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .booking-container{
        grid-template-columns:1fr;
    }

    .about{
        gap:30px;
    }

    .about-content h2,
    .restaurant-text h2,
    .section-title{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .room-container,
    .gallery-container,
    .feature-grid,
    .testimonial-container{
        grid-template-columns:1fr;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

}

/* Small Phones */

@media (max-width:480px){

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title{
        font-size:28px;
    }

}
/* ==========================
   MOBILE MENU
========================== */

.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        position:relative;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:rgba(0,0,0,.95);
        flex-direction:column;
        padding:25px 0;
        text-align:center;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        margin:15px 0;
    }

    .btn{
        display:none;
    }

}
/*==========================
HAMBURGER MENU
===========================*/

.menu-toggle{

    display:none;

    width:35px;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:4px;

    background:white;

    margin:7px 0;

    transition:.4s;

}

@media(max-width:768px){

.menu-toggle{

display:block;

}

.nav-links{

position:absolute;

top:80px;

left:0;

width:100%;

background:#111;

display:flex;

flex-direction:column;

align-items:center;

max-height:0;

overflow:hidden;

transition:.5s;

}

.nav-links.active{

max-height:400px;

padding:20px 0;

}

.nav-links li{

margin:15px 0;

}

.btn{

display:none;

}

}
/* ==========================
   SCROLL REVEAL
========================== */

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/*=========================
GALLERY LIGHTBOX
=========================*/

.lightbox{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.9);

    display:flex;

    justify-content:center;

    align-items:center;

    visibility:hidden;

    opacity:0;

    transition:.4s;

    z-index:99999;

}

.lightbox.active{

    visibility:visible;

    opacity:1;

}

.lightbox img{

    max-width:90%;

    max-height:85%;

    border-radius:12px;

    transform:scale(.8);

    transition:.4s;

    box-shadow:0 20px 50px rgba(0,0,0,.5);

}

.lightbox.active img{

    transform:scale(1);

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:45px;

    cursor:pointer;

    font-weight:bold;

}

.gallery-img{

    cursor:pointer;

}
/*=========================
FLOATING BUTTONS
=========================*/

.whatsapp-btn,
.call-btn,
.top-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:white;

    font-size:28px;

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

    transition:.3s;

    z-index:9999;

}

.whatsapp-btn{

    bottom:30px;

    background:#25D366;

}

.call-btn{

    bottom:105px;

    background:#0d6efd;

}

.top-btn{

    bottom:180px;

    background:#C8A96A;

    border:none;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

}

.top-btn.show{

    opacity:1;

    visibility:visible;

}

.whatsapp-btn:hover,
.call-btn:hover,
.top-btn:hover{

    transform:scale(1.1);

}
/* ==========================
   GOOGLE MAP
========================== */

.map-section{

    padding:100px 8%;

    background:#f8f8f8;

}

.map-container{

    margin-top:40px;

    border-radius:20px;

    overflow:hidden;

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

}

.map-container iframe{

    display:block;

    width:100%;

    border:none;

}

.map-button{

    text-align:center;

    margin-top:35px;

}