/* ==========================================
RESET
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{
--gold:#caa45c;
--dark:#111111;
--cream:#f8f5ef;
--white:#ffffff;
}

body{
font-family:'Montserrat',sans-serif;
background:var(--white);
color:#333;
overflow-x:hidden;
}

/* ==========================================
HEADER
========================================== */

.luxury-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
padding:30px 60px;
transition:.4s;
}

.luxury-header.scrolled{
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
}

.luxury-nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.nav-left,
.nav-right{
display:flex;
gap:35px;
}

.luxury-nav a{
color:white;
text-decoration:none;
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
transition:.3s;
}

.luxury-nav a:hover{
color:var(--gold);
}

/* ==========================================
HERO
========================================== */

.hero-section{
height:100vh;
position:relative;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,.25),
rgba(0,0,0,.65)
);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
z-index:10;
color:white;
width:90%;
}

.hero-logo{
width:220px;
height:220px;
border-radius:50%;
object-fit:cover;
box-shadow:
0 0 50px rgba(202,164,92,.4),
0 20px 60px rgba(0,0,0,.4);
margin-bottom:30px;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:6rem;
font-weight:500;
letter-spacing:10px;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
letter-spacing:4px;
text-transform:uppercase;
margin-bottom:35px;
}

.hero-btn{
display:inline-block;
padding:18px 45px;
background:var(--gold);
color:white;
text-decoration:none;
letter-spacing:2px;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-4px);
}

/* ==========================================
COMMON
========================================== */

.section-tag{
display:block;
color:var(--gold);
font-size:13px;
letter-spacing:3px;
margin-bottom:15px;
}

.light{
color:white;
}

.section-heading{
text-align:center;
margin-bottom:70px;
}

.section-heading h2{
font-family:'Playfair Display',serif;
font-size:4rem;
font-weight:500;
}

/* ==========================================
STORY SECTIONS
========================================== */

.story-section{
display:flex;
min-height:100vh;
}

.reverse{
flex-direction:row-reverse;
}

.story-image{
width:55%;
overflow:hidden;
}

.story-image img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
}

.story-image:hover img{
transform:scale(1.05);
}

.story-content{
width:45%;
padding:120px 80px;
display:flex;
justify-content:center;
flex-direction:column;
background:white;
}

.story-content h2{
font-family:'Playfair Display',serif;
font-size:4rem;
margin-bottom:25px;
}

.story-content p{
line-height:2;
font-size:1.05rem;
}

/* ==========================================
VIDEO EXPERIENCE
========================================== */

.video-experience{
position:relative;
height:100vh;
overflow:hidden;
}

.video-experience video{
width:100%;
height:100%;
object-fit:cover;
}

.video-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.video-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
max-width:900px;
}

.video-content h2{
font-family:'Playfair Display',serif;
font-size:5rem;
margin-bottom:20px;
}

.video-content p{
font-size:1.2rem;
line-height:2;
}

/* ==========================================
COCKTAILS
========================================== */

.cocktail-section{
padding:140px 8%;
background:#0f0f0f;
color:white;
}

.cocktail-section h2{
font-family:'Playfair Display',serif;
font-size:4rem;
text-align:center;
margin-bottom:70px;
}

.cocktail-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.cocktail-card{
padding:35px;
border:1px solid rgba(255,255,255,.1);
background:rgba(255,255,255,.03);
backdrop-filter:blur(10px);
transition:.4s;
}

.cocktail-card:hover{
transform:translateY(-12px);
box-shadow:
0 0 30px rgba(202,164,92,.3);
}

/* ==========================================
LIVE BAND
========================================== */

.live-band-section{
padding:140px 8%;
background:var(--cream);
}

.live-band-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.band-card{
overflow:hidden;
background:white;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.band-card:hover{
transform:translateY(-15px);
}

.band-card img{
width:100%;
height:400px;
object-fit:cover;
}

.band-card h3{
padding:25px;
text-align:center;
font-family:'Playfair Display',serif;
}

/* ==========================================
WELLNESS
========================================== */

.wellness-section{
padding:140px 8%;
background:white;
}

.wellness-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.wellness-card{
padding:50px 30px;
text-align:center;
border:1px solid #eee;
transition:.4s;
}

.wellness-card:hover{
transform:translateY(-10px);
background:var(--gold);
color:white;
}

/* ==========================================
SUITES
========================================== */

.suites-section{
padding:140px 5%;
background:#f7f7f7;
}

.suite-slider{
display:flex;
gap:35px;
overflow-x:auto;
padding-bottom:20px;
}

.suite-slider::-webkit-scrollbar{
height:8px;
}

.suite-slider::-webkit-scrollbar-thumb{
background:var(--gold);
}

.suite-card{
min-width:380px;
background:white;
overflow:hidden;
position:relative;
transition:.5s;
}

.suite-card:hover{
transform:translateY(-15px);
box-shadow:
0 0 40px rgba(202,164,92,.35),
0 20px 60px rgba(0,0,0,.15);
}

.suite-card img{
width:100%;
height:280px;
object-fit:cover;
}

.suite-info{
padding:30px;
}

.suite-info h3{
font-family:'Playfair Display',serif;
margin-bottom:15px;
}

.suite-info span{
display:block;
margin:20px 0;
font-size:1.4rem;
color:var(--gold);
font-weight:bold;
}

.suite-info button{
padding:14px 25px;
border:none;
background:var(--gold);
color:white;
cursor:pointer;
}

/* ==========================================
BOOKING
========================================== */

.booking-section{
padding:160px 10%;
background:url('assets/lobby.jpeg') center/cover;
position:relative;
}

.booking-section::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
}

.booking-overlay{
position:relative;
z-index:2;
text-align:center;
color:white;
}

.booking-overlay h2{
font-family:'Playfair Display',serif;
font-size:4rem;
margin-bottom:50px;
}

.booking-form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.booking-form input,
.booking-form select{
padding:16px;
min-width:220px;
border:none;
}

.booking-form button{
padding:16px 40px;
background:var(--gold);
border:none;
color:white;
}

/* ==========================================
GALLERY
========================================== */

.gallery-section{
padding:140px 8%;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
height:350px;
object-fit:cover;
transition:.6s;
}

.gallery-grid img:hover{
transform:scale(1.04);
}

/* ==========================================
FOOTER
========================================== */

footer{
background:#111;
color:white;
text-align:center;
padding:100px 20px;
}

.footer-logo{
width:120px;
height:120px;
border-radius:50%;
margin-bottom:20px;
}

footer h3{
font-family:'Playfair Display',serif;
font-size:2rem;
margin-bottom:15px;
}

footer p{
margin:10px 0;
}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

.nav-left,
.nav-right{
display:none;
}

.hero-content h1{
font-size:3rem;
}

.story-section,
.reverse{
flex-direction:column;
}

.story-image,
.story-content{
width:100%;
}

.story-content{
padding:80px 30px;
}

.cocktail-grid,
.live-band-grid,
.wellness-grid,
.gallery-grid{
grid-template-columns:1fr;
}

.hero-logo{
width:140px;
height:140px;
}

.video-content h2{
font-size:3rem;
}

.section-heading h2{
font-size:2.5rem;
}

.booking-overlay h2{
font-size:2.5rem;
}

}