/* =========================
   DALTIN HOME LUXURY THEME
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#0e0e0e;
color:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.5);
backdrop-filter:blur(15px);
z-index:999;
}

.logo{
font-size:28px;
font-weight:700;
letter-spacing:2px;
color:#d6b56d;
}

.navbar ul{
display:flex;
gap:30px;
list-style:none;
}

.navbar a{
color:#fff;
font-weight:500;
transition:.3s;
}

.navbar a:hover{
color:#d6b56d;
}

/* HERO */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-image{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
max-width:900px;
padding:20px;
}

.welcome-text{
color:#d6b56d;
letter-spacing:4px;
font-size:14px;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:85px;
margin:20px 0;
line-height:1;
}

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
color:#ddd;
}

.hero-buttons{
margin-top:35px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:15px 35px;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn-primary{
background:#d6b56d;
color:#000;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
border:2px solid #d6b56d;
color:#fff;
}

.btn-secondary:hover{
background:#d6b56d;
color:#000;
}

/* SECTIONS */

section{
padding:100px 8%;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#d6b56d;
letter-spacing:3px;
}

.section-title h2{
font-size:48px;
margin-top:10px;
font-family:'Cormorant Garamond',serif;
}

/* ABOUT */

.about-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
border-radius:20px;
}

.about-content span{
color:#d6b56d;
}

.about-content h2{
font-size:50px;
margin:20px 0;
font-family:'Cormorant Garamond',serif;
}

.about-content p{
color:#ccc;
line-height:1.8;
}

.about-features{
margin-top:30px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.feature-box{
background:#171717;
padding:20px;
border-radius:15px;
border:1px solid rgba(255,255,255,.08);
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
background:#131313;
}

.stat-box{
padding:30px;
background:#1a1a1a;
border-radius:15px;
}

.stat-box h2{
font-size:40px;
color:#d6b56d;
}

/* ROOMS */

.room-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.room-card{
background:#171717;
border-radius:20px;
overflow:hidden;
transition:.4s;
}

.room-card:hover{
transform:translateY(-10px);
}

.room-card img{
height:260px;
width:100%;
object-fit:cover;
}

.room-content{
padding:25px;
}

.room-content h3{
font-size:28px;
margin-bottom:10px;
}

.price{
font-size:22px;
color:#d6b56d;
margin-bottom:15px;
}

.room-content p{
color:#ccc;
line-height:1.7;
}

.room-btn{
display:inline-block;
margin-top:20px;
background:#d6b56d;
color:#000;
padding:12px 25px;
border-radius:30px;
font-weight:600;
}

/* FACILITIES */

.facility-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.facility-card{
background:#171717;
padding:25px;
border-radius:15px;
text-align:center;
font-size:18px;
transition:.3s;
}

.facility-card:hover{
background:#d6b56d;
color:#000;
}

/* RESTAURANT & POOL */

.restaurant-section,
.pool-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.restaurant-image img,
.pool-image img{
border-radius:20px;
}

.restaurant-content h2,
.pool-content h2{
font-size:50px;
margin:20px 0;
font-family:'Cormorant Garamond',serif;
}

.restaurant-content span,
.pool-content span{
color:#d6b56d;
}

/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
height:300px;
width:100%;
object-fit:cover;
border-radius:15px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* REVIEWS */

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.review-card{
background:#171717;
padding:30px;
border-radius:20px;
line-height:1.8;
}

/* ATTRACTIONS */

.attraction-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.attraction-card{
background:#171717;
padding:25px;
border-radius:15px;
}

.attraction-card h3{
color:#d6b56d;
margin-bottom:10px;
}

/* MAP */

.map-section iframe{
border-radius:20px;
}

/* FOOTER */

footer{
padding:60px 20px;
text-align:center;
background:#080808;
}

footer h2{
font-size:38px;
color:#d6b56d;
margin-bottom:15px;
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
z-index:999;
box-shadow:0 10px 30px rgba(0,0,0,.4);
}

/* MOBILE */

@media(max-width:991px){

.hero h1{
font-size:55px;
}

.about-section,
.restaurant-section,
.pool-section{
grid-template-columns:1fr;
}

.about-features{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:1fr;
}

.navbar ul{
display:none;
}

.section-title h2{
font-size:38px;
}

.about-content h2,
.restaurant-content h2,
.pool-content h2{
font-size:40px;
}

}

@media(max-width:600px){

.hero h1{
font-size:42px;
}

.stats{
grid-template-columns:1fr;
}

}