*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Outfit',sans-serif;
background:#111;
color:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

/* Layout */

.site-layout{
display:flex;
min-height:100vh;
}

/* Sidebar */

.sidebar{
width:300px;
background:#000;
position:fixed;
left:0;
top:0;
height:100vh;
z-index:1000;
}

.sidebar-inner{
height:100%;
padding:40px 25px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.logo{
width:140px;
margin-bottom:20px;
}

.brand-name{
font-family:'Orbitron',sans-serif;
font-size:28px;
margin-bottom:30px;
}

.sidebar-nav{
display:flex;
flex-direction:column;
gap:12px;
text-align:center;
margin-bottom:30px;
}

.sidebar-nav a{
font-size:18px;
}

.sidebar-nav a.active{
text-decoration:underline;
}

.sidebar-buttons{
display:flex;
flex-direction:column;
gap:10px;
width:100%;
max-width:200px;
}

.sidebar-btn{
padding:12px;
border-radius:6px;
text-align:center;
font-weight:600;
border:1px solid rgba(255,255,255,0.2);
}

.whatsapp-btn{
background:#111;
}

.book-btn{
background:#16b8ff;
color:#000;
}

/* Main */

.main-content{
margin-left:300px;
width:calc(100% - 300px);
}

/* Hero */

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
padding:20px;
}

.hero h1{
font-size:56px;
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:30px;
}

.main-btn{
background:#000;
color:#fff;
padding:15px 30px;
border-radius:6px;
border:1px solid rgba(255,255,255,0.2);
}

/* Services */

.services-showcase{
background:#171c26;
}

.feature-block{
display:grid;
grid-template-columns:1fr 1fr;
min-height:100vh;
}

.feature-image img{
width:100%;
height:100%;
object-fit:cover;
}

.feature-text{
display:flex;
flex-direction:column;
justify-content:center;
padding:60px;
text-align:center;
}

.feature-text h2{
font-size:40px;
margin-bottom:20px;
font-family:'Orbitron',sans-serif;
}

.feature-text p{
font-size:20px;
}

/* Cards */

.content-light{
background:#d9dde3;
color:#000;
padding:80px 40px;
}

.section-heading{
text-align:center;
margin-bottom:40px;
}

.section-heading h2{
font-family:'Orbitron',sans-serif;
font-size:40px;
}

.info-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1200px;
margin:auto;
}

.info-card{
background:#efefef;
padding:15px;
text-align:center;
}

.info-card img{
height:350px;
object-fit:cover;
margin-bottom:15px;
}

.card-btn{
display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#000;
color:#fff;
}

/* Reviews */

.reviews-section{
background:#d9dde3;
padding:80px 40px;
position:relative;
}

.reviews-slider-wrap{
overflow:hidden;
max-width:1200px;
margin:auto;
}

.reviews-track{
display:flex;
transition:transform .4s ease;
}

.reviews-slide{
min-width:100%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.review-card img{
height:350px;
object-fit:cover;
margin-bottom:10px;
}

.review-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#000;
color:#111;
border:none;
width:50px;
height:50px;
border-radius:50%;
font-size:22px;
cursor:pointer;
}

.review-arrow-left{
left:15px;
}

.review-arrow-right{
right:15px;
}

/* Booking */

.booking-section{
background:#0f131c;
padding:80px 30px;
text-align:center;
}

.booking-actions{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* Contact */

.contact-section{
background:#d9dde3;
padding:80px 30px;
text-align:center;
}

/* Footer */

.site-footer{
background:#eee;
color:#333;
padding:30px;
text-align:center;
}

/* Mobile scroll bar */

.mobile-scroll-bar{
position:fixed;
top:0;
left:0;
right:0;
height:72px;
background:rgba(0,0,0,0.55);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,0.08);
display:none;
align-items:center;
justify-content:space-between;
padding:0 16px;
z-index:9999;
transform:translateY(-100%);
opacity:0;
transition:transform .3s ease,opacity .3s ease;
}

.mobile-scroll-bar.show{
transform:translateY(0);
opacity:1;
}

.mobile-scroll-logo img{
width:42px;
}

.mobile-scroll-book{
background:#16b8ff;
color:#000;
padding:10px 16px;
border-radius:8px;
font-weight:700;
}

/* Mobile */

@media (max-width:900px){

.site-layout{
flex-direction:column;
}

.sidebar{
position:relative;
width:100%;
height:auto;
}

.main-content{
margin-left:0;
width:100%;
}

.feature-block{
grid-template-columns:1fr;
}

.info-cards{
grid-template-columns:1fr;
}

.reviews-slide{
grid-template-columns:1fr;
}

.mobile-scroll-bar{
display:flex;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

}
