/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0d0d0d;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}

h2{
    font-size:45px;
    color:#D4AF37;
    text-align:center;
    margin-bottom:50px;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:15px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(15px);
    z-index:1000;
}

.logo img{
    width:120px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    font-size:17px;
    position:relative;
    transition:.4s;
}

nav a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-5px;
    background:#D4AF37;
    transition:.4s;
}

nav a:hover{
    color:#D4AF37;
}

nav a:hover::after{
    width:100%;
}

.call-btn a{
    background:#D4AF37;
    color:black;
    padding:13px 25px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.call-btn a:hover{
    transform:translateY(-5px);
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=2000");
    /* background-size:cover;
    background-position:center;
    background-attachment:fixed; */

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    position:relative;
}

.hero-content{
    max-width:850px;
    margin:auto;
}

.hero-content h3{
    color:#D4AF37;
    font-size:32px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:85px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-btn{
    background:#D4AF37;
    color:black;
    padding:16px 40px;
    border-radius:40px;
    font-weight:600;
    transition:.5s;
}

.hero-btn:hover{
    transform:translateY(-8px);
}

/* ABOUT */

.about{
    background:#111;
}

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-text p{
    line-height:1.9;
    margin-top:20px;
    color:#ddd;
}

/* ROOM */

.room-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;

    background:#161616;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.5);
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.room-info{
    padding:50px;
}

.room-info h3{
    color:#D4AF37;
    font-size:40px;
    margin-bottom:30px;
}

.room-info ul{
    list-style:none;
}

.room-info ul li{
    margin-bottom:18px;
    color:#ddd;
    font-size:18px;
    line-height:1.8;
}

.room-info a{
    display:inline-block;
    margin-top:30px;
    padding:15px 40px;
    background:#D4AF37;
    color:black;
    border-radius:50px;
    font-weight:600;
}

/* GALLERY */

.gallery{
    background:#111;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-container img{
    border-radius:20px;
    height:280px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-container img:hover{
    transform:scale(1.08);
}

/* SERVICES */

.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#161616;
    padding:40px;
    text-align:center;
    border-radius:20px;
    transition:.5s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-12px);
    border:1px solid #D4AF37;
}

.card i{
    font-size:45px;
    color:#D4AF37;
    margin-bottom:20px;
}

.card h3{
    font-size:22px;
}

/* CONTACT */

.contact{
    background:#111;
}

.contact h2{
    margin-bottom:60px;
}

.contact-box{
    background:#161616;
    padding:70px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.5);
}

.contact-box{
    display:flex;
    gap:50px;
    justify-content:space-between;
}

.contact-box form{
    width:500px;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    padding:15px;
    background:#161616;
    color:white;
    border:none;
    margin-bottom:20px;
    border-radius:10px;
}

.contact-box textarea{
    height:150px;
}

.contact-box button{
    width:100%;
    height:60px;

    background:#D4AF37;
    color:black;

    border:none;
    border-radius:50px;

    font-size:18px;
    font-weight:600;

    cursor:pointer;
    transition:.4s;
}

.contact-box button:hover{
    transform:translateY(-5px);
}

/* FOOTER */

footer{
    background:black;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding:60px 8%;
}

.footer-menu{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-menu a{
    color:#ddd;
}

.footer-menu a:hover{
    color:#D4AF37;
}
.footer-about img{
width:120px;
margin-bottom:20px;
}

.footer-about p{
line-height:1.9;
color:#ccc;
}

.footer-contact p{
line-height:1.8;
color:#ddd;
}

.footer-map iframe{
margin-top:15px;
}
/* FLOATING BUTTONS */

.call-float,
.whatsapp-float{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:25px;
    z-index:1000;
    animation:blink 1.2s infinite;
}

.call-float{
    bottom:100px;
    background:#D4AF37;
}

.whatsapp-float{
    bottom:25px;
    background:#25D366;
}

@keyframes blink{

0%,100%{
transform:scale(1);
}

50%{
transform:scale(1.15);
}

}

/* HAMBURGER */

.menu-btn{
    display:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

.hero-content h1{
    font-size:55px;
}

.room-card{
    grid-template-columns:1fr;
}

.contact-box{
    flex-direction:column;
}

.contact-box{
    width:100%;
}

.contact-box form{
    width:100%;
    max-width:1200px;
    margin:auto;
}
.contact-box input,
.contact-box textarea{
    width:100%;
    padding:18px 25px;
    margin-bottom:25px;

    background:#161616;
    border:1px solid rgba(212,175,55,.15);

    border-radius:15px;
    color:white;
    font-size:16px;
}

.contact-box textarea{
    min-height:220px;
    resize:none;
}

nav{
    position:absolute;
    top:100%;
    left:-100%;
    width:100%;
    background:#111;
    flex-direction:column;
    text-align:center;
    padding:30px;
    transition:.5s;
}

nav.active{
    left:0;
}

.menu-btn{
    display:block;
}

.call-btn{
    display:none;
}

}

@media(max-width:768px){

.logo img{
    width:90px;
}
.hero{
    background-size: cover;
}

.hero-content h1{
    font-size:42px;
}

h2{
    font-size:35px;
}

.hero-content p{
    font-size:17px;
}
/* Active Menu */

nav a.active{
color:#D4AF37;
}

/* Image Popup */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup img{
max-width:85%;
max-height:85%;
border-radius:20px;
}

.close-popup{
position:absolute;
top:30px;
right:40px;
font-size:50px;
color:white;
cursor:pointer;
}

/* Top Button */

.top-btn{
position:fixed;
bottom:30px;
left:20px;
width:55px;
height:55px;
background:#D4AF37;
color:black;
border-radius:50%;
display:none;
justify-content:center;
align-items:center;
cursor:pointer;
font-size:22px;
z-index:1000;
transition:.4s;
}

.top-btn:hover{
transform:translateY(-8px);
}
}