*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins,sans-serif;
background:#0F0F1A;
color:white;
overflow-x:hidden;
}

/* ================= HEADER ================= */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(15,15,26,0.75);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,0.06);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:30px;
font-family:Cinzel;
color:#D4AF37;
letter-spacing:2px;
}

/* NAV CENTER */
.nav-center{
flex:1;
display:flex;
justify-content:center;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links li{
cursor:pointer;
position:relative;
font-weight:500;
transition:0.3s;
}

.nav-links li::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#D4AF37;
transition:0.3s;
}

.nav-links li:hover{
color:#D4AF37;
}

.nav-links li:hover::after{
width:100%;
}

/* RIGHT NAV */
.nav-right{
display:flex;
align-items:center;
gap:18px;
}

.book-btn{
background:linear-gradient(135deg,#D4AF37,#f7e27a);
color:#111;
padding:12px 24px;
border-radius:50px;
font-weight:600;
box-shadow:0 0 20px rgba(212,175,55,0.35);
transition:0.3s;
}

.book-btn:hover{
transform:translateY(-2px) scale(1.03);
box-shadow:0 0 30px rgba(212,175,55,0.6);
}

/* MENU ICON */
.menu-icon{
font-size:30px;
cursor:pointer;
color:#D4AF37;
transition:0.3s;
}

.menu-icon:hover{
transform:rotate(90deg);
}

/* ================= SIDE MENU ================= */

.side-menu{
height:100%;
width:0;
position:fixed;
top:0;
right:0;
background:rgba(17,17,32,0.95);
backdrop-filter:blur(15px);
overflow-x:hidden;
transition:0.5s ease;
padding-top:80px;
z-index:9999;
border-left:1px solid rgba(212,175,55,0.2);
}

.side-menu ul{
padding:0 30px;
}

.side-menu li{
list-style:none;
padding:15px 0;
font-size:18px;
cursor:pointer;
transition:0.3s;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.side-menu li:hover{
color:#D4AF37;
transform:translateX(10px);
}

.close-btn{
position:absolute;
top:20px;
right:25px;
font-size:40px;
cursor:pointer;
color:#D4AF37;
}


/* ================= ABOUT PAGE ================= */


.about-hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
background:url("https://images.unsplash.com/photo-1524985069026-dd778a71c7b4");
background-size:cover;
background-position:center;
scroll-margin-top:80px; /* fixes navbar overlap */
}

.about-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.75);
}

.about-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.about-content h1{
font-size:60px;
color:#D4AF37;
font-family:Cinzel;
}

.about-content p{
font-size:18px;
margin-top:20px;
line-height:1.6;
opacity:0.9;
}

/* ================= MARQUEE BANNER ================= */

.marquee{
width:100%;
background:linear-gradient(90deg,#D4AF37,#f7e27a);
overflow:hidden;
white-space:nowrap;
border-bottom:1px solid rgba(0,0,0,0.2);
box-shadow:0 0 20px rgba(212,175,55,0.25);
}

.marquee-content{
display:inline-block;
padding:12px 0;
font-size:14px;
font-weight:600;
color:#111;
animation:scrollText 18s linear infinite;
letter-spacing:1px;
}

/* ANIMATION */
@keyframes scrollText{
0%{
transform:translateX(100%);
}
100%{
transform:translateX(-100%);
}
}

/* ================= HERO ================= */

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8)),
url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba");
background-size:cover;
background-position:center;
}

.hero h1{
font-size:60px;
}

.hero p{
margin-top:15px;
opacity:0.85;
}

.hero-buttons{
margin-top:25px;
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.gold-btn{
background:#D4AF37;
padding:15px 30px;
color:#111;
border-radius:30px;
font-weight:600;
}

.outline-btn{
border:2px solid #6C4DFF;
padding:15px 30px;
border-radius:30px;
color:white;
}

/* ================= SECTIONS ================= */

section{
padding:80px 8%;
}

h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
font-family:Cinzel;
}

/* ================= EXPERIENCE ================= */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:#1D1D2E;
padding:20px;
border-radius:20px;
text-align:center;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 10px 30px rgba(108,77,255,0.25);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:15px;
margin-bottom:10px;
}

/* ================= FOUNDERS ================= */

.founders-bg{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
padding:60px 20px;
background:url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
background-size:cover;
background-position:center;
border-radius:25px;
position:relative;
}

.founders-bg::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.75);
border-radius:25px;
}

.founder-card{
position:relative;
z-index:2;
background:#1D1D2E;
padding:20px;
border-radius:20px;
width:280px;
text-align:center;
}

.founder-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
margin-bottom:10px;
}

/* ================= GALLERY ================= */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* ================= BOOKING (HEIGHT = 170px) ================= */

.booking-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:18px;
}

.booking-card{
display:flex;
height:215px; /* 🔥 UPDATED HEIGHT */
border-radius:16px;
overflow:hidden;
background:rgba(255,215,0,0.04);
border:1px solid rgba(212,175,55,0.25);
box-shadow:0 0 18px rgba(212,175,55,0.12);
position:relative;
transition:0.3s ease;
}

.booking-card::before{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle at top left, rgba(212,175,55,0.18), transparent 60%);
pointer-events:none;
}

.booking-card:hover{
transform:translateY(-6px);
box-shadow:0 0 30px rgba(212,175,55,0.28);
}

.booking-card img{
width:40%;
height:100%;
object-fit:cover;
}

.booking-info{
padding:16px;
width:60%;
display:flex;
flex-direction:column;
justify-content:center;
gap:7px;
}

.booking-info h3{
color:#D4AF37;
font-size:17px;
margin:0;
}

.booking-info p{
font-size:13px;
opacity:0.8;
margin:0;
}

.actions{
display:flex;
gap:6px;
flex-wrap:wrap;
margin-top:10px;
}

.actions a{
background:#6C4DFF;
padding:7px 11px;
border-radius:14px;
color:white;
font-size:12px;
transition:0.25s;
}

.actions a:hover{
background:#8a6bff;
transform:translateY(-1px);
}

/* ================= CONTACT ================= */

.contact{
padding:80px 8%;
text-align:center;
}

.contact-wrapper{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.contact-form{
background:#1D1D2E;
padding:25px;
border-radius:20px;
width:320px;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:none;
border-radius:10px;
background:#0F0F1A;
color:white;
border:1px solid rgba(255,255,255,0.08);
}

.contact-form button{
padding:12px;
border:none;
border-radius:30px;
background:linear-gradient(135deg,#D4AF37,#f7e27a);
color:#111;
font-weight:600;
cursor:pointer;
}

.contact-info{
background:#1D1D2E;
padding:25px;
border-radius:20px;
width:280px;
text-align:left;
}

/* ================= SOCIAL ICONS ================= */

.social-icons{
display:flex;
gap:12px;
margin-top:15px;
}

.icon{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#0F0F1A;
transition:0.3s;
}

.icon.facebook:hover{
background:#1877F2;
box-shadow:0 0 18px rgba(24,119,242,0.5);
transform:translateY(-4px);
}

.icon.instagram:hover{
background:radial-gradient(circle at 30% 30%,
#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
box-shadow:0 0 18px rgba(214,41,118,0.5);
transform:translateY(-4px);
}

/* ================= FOOTER ================= */

footer{
text-align:center;
padding:25px;
background:#0b0b14;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.hero h1{
font-size:40px;
}

.nav-center{
display:none;
}

.booking-card{
flex-direction:column;
height:auto;
}

.booking-card img{
width:100%;
height:160px;
}
}
html{
scroll-behavior:smooth;
}