/* ===========================
   HARMONI RESIDENCE
   Premium Landing Page
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#071320;
    color:#fff;
    overflow-x:hidden;
}

/* ===========================
   LOADER
=========================== */

#loader{
    position:fixed;
    inset:0;
    background:#071320;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader{
    width:65px;
    height:65px;
    border:6px solid rgba(255,255,255,.15);
    border-top:6px solid #d4af37;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

padding:22px 8%;

display:flex;

justify-content:space-between;

align-items:center;

z-index:999;

background:rgba(8,20,33,.35);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

}

.logo{

font-size:28px;

font-weight:700;

}

.logo span{

color:#d4af37;

}

.logo i{

margin-right:8px;

color:#d4af37;

}

.nav-menu{

display:flex;

gap:35px;

list-style:none;

}

.nav-menu a{

text-decoration:none;

color:white;

font-weight:500;

transition:.3s;

}

.nav-menu a:hover{

color:#d4af37;

}

.booking-btn{

padding:14px 28px;

background:#d4af37;

color:#000;

font-weight:600;

border-radius:12px;

text-decoration:none;

transition:.3s;

}

.booking-btn:hover{

transform:translateY(-4px);

}

/* ===========================
   HERO
=========================== */

.hero{

position:relative;

height:100vh;

display:flex;

align-items:center;

padding:0 8%;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
url("https://picsum.photos/1920/1080?random=1");

background-size:cover;

background-position:center;

}

.overlay{

position:absolute;

inset:0;

background:radial-gradient(circle at right,
rgba(212,175,55,.12),
transparent 60%);

}

.hero-content{

position:relative;

z-index:2;

max-width:720px;

}

.badge{

display:inline-block;

padding:12px 22px;

border-radius:50px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.15);

margin-bottom:25px;

color:#d4af37;

}

.hero h1{

font-size:72px;

line-height:1.15;

margin-bottom:25px;

}

.hero p{

font-size:20px;

color:#ddd;

line-height:1.8;

max-width:620px;

}

.hero-button{

margin-top:45px;

display:flex;

gap:20px;

}

.btn-primary{

background:#d4af37;

color:#000;

padding:17px 34px;

border-radius:12px;

text-decoration:none;

font-weight:600;

}

.btn-secondary{

padding:17px 34px;

border:2px solid white;

color:white;

border-radius:12px;

text-decoration:none;

}

.btn-primary:hover,
.btn-secondary:hover{

transform:translateY(-4px);

transition:.3s;

}

/* ===========================
   SCROLL ICON
=========================== */

.scroll-down{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

font-size:34px;

animation:updown 1.5s infinite;

}

@keyframes updown{

50%{

transform:translate(-50%,12px);

}

}

/* ===========================
   STATISTIK
=========================== */

.stats{

padding:90px 8%;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

background:#09192b;

}

.card{

padding:40px;

background:rgba(255,255,255,.05);

border-radius:22px;

text-align:center;

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

border-color:#d4af37;

}

.card h2{

font-size:44px;

color:#d4af37;

margin-bottom:12px;

}

.card p{

color:#ddd;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

.nav-menu{

display:none;

}

.hero h1{

font-size:48px;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

.hero-button{

flex-direction:column;

}

}

@media(max-width:600px){

.hero{

text-align:center;

justify-content:center;

}

.hero h1{

font-size:38px;

}

.stats{

grid-template-columns:1fr;

}

}

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

.about{

padding:120px 8%;

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

background:#071320;

}

.section-tag{

display:inline-block;

padding:10px 18px;

background:rgba(212,175,55,.12);

border-radius:40px;

color:#d4af37;

margin-bottom:20px;

}

.about h2{

font-size:48px;

line-height:1.3;

margin-bottom:25px;

}

.about p{

color:#cfcfcf;

line-height:1.9;

margin-bottom:35px;

}

.about-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-bottom:35px;

}

.about-item{

padding:16px;

background:#0d2035;

border-radius:12px;

}

.glass-card{

padding:45px;

border-radius:24px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

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

}

.glass-card h3{

font-size:30px;

margin-bottom:25px;

}

.feature{

padding:18px;

margin-bottom:15px;

background:#10263d;

border-radius:14px;

transition:.3s;

}

.feature:hover{

transform:translateX(10px);

border-left:4px solid #d4af37;

}

@media(max-width:991px){

.about{

grid-template-columns:1fr;

}

.about-list{

grid-template-columns:1fr;

}

}


/* ===========================
ROOM
=========================== */

.rooms{

padding:120px 8%;

background:#09192b;

}

.section-header{

text-align:center;

margin-bottom:60px;

}

.section-header h2{

font-size:50px;

margin:20px 0;

}

.section-header p{

color:#bbb;

}

.room-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

.room-card{

background:#10263d;

border-radius:25px;

overflow:hidden;

transition:.35s;

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

}

.room-card:hover{

transform:translateY(-12px);

}

.room-image{

position:relative;

overflow:hidden;

}

.room-image img{

width:100%;

height:260px;

object-fit:cover;

transition:.5s;

}

.room-card:hover img{

transform:scale(1.08);

}

.badge-room{

position:absolute;

top:18px;

left:18px;

background:#d4af37;

color:#000;

padding:8px 18px;

border-radius:40px;

font-weight:600;

z-index:5;

}

.vip{

background:#ff5252;

color:white;

}

.room-content{

padding:28px;

}

.room-content h3{

font-size:30px;

margin-bottom:15px;

}

.room-content p{

color:#ccc;

line-height:2;

margin-bottom:25px;

}

.room-footer{

display:flex;

justify-content:space-between;

align-items:center;

}

.room-footer h4{

font-size:30px;

color:#d4af37;

}

.room-footer span{

font-size:16px;

color:white;

}

.room-btn{

padding:14px 24px;

background:#d4af37;

color:#000;

border-radius:10px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.room-btn:hover{

background:white;

}

/* ===========================
   FACILITIES
=========================== */

.facilities{

padding:120px 8%;

background:#071320;

}

.facility-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:60px;

}

.facility-card{

padding:35px;

border-radius:25px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(15px);

transition:.35s;

}

.facility-card:hover{

transform:translateY(-10px);

border-color:#d4af37;

}

.facility-icon{

width:80px;

height:80px;

background:#d4af37;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

margin-bottom:25px;

}

.facility-card h3{

font-size:28px;

margin-bottom:15px;

}

.facility-card p{

line-height:1.8;

color:#ccc;

}

/* ===========================
   GALLERY
=========================== */

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

#gallery h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
    color:#fff;
}

#gallery p{
    text-align:center;
    color:#bdbdbd;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,.5);
}

/* CONTACT */

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

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.contact-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
}

.contact-card h3{
    color:#ffd54f;
    margin-bottom:10px;
}

.contact-card a{
    color:#fff;
    text-decoration:none;
}

.maps iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:20px;
}



















