@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --bg:#071225;
  --bg2:#0B1B3A;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --brand:#1E4ED8;
  --gold:#C8A24A;
  --shadow: 0 14px 50px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --container: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:radial-gradient(1200px 700px at 20% 0%, #0f2a67 0%, var(--bg) 55%) fixed;color:var(--text);font-family:Inter,system-ui,Segoe UI,Arial}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

/* Topbar */
.topbar{
  background:rgba(7,18,37,.6);
  border-bottom:1px solid var(--stroke);
  backdrop-filter: blur(10px);
}
.topbar .row{
  display:flex; gap:14px; justify-content:space-between; align-items:center;
  padding:10px 0; font-size:13px; color:var(--muted);
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px; border:1px solid var(--stroke);
  background:rgba(255,255,255,.03); border-radius:999px;
}

/* Header */
/* Header - White Version */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#ffffff;
  border-bottom:1px solid #e6eaf2;
  backdrop-filter:none;
}

/* Nav layout */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand b{
  font-family:"Playfair Display";
  font-size:20px;
  letter-spacing:.2px;
  color:#0B1B3A;   /* Deep blue text */
}

/* Menu */
.menu{
  display:flex;
  gap:18px;
  align-items:center;
}

.menu a{
  color:#0B1B3A;   /* Dark text */
  font-weight:600;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  transition:all .2s ease;
}

.menu a:hover{
  background:blue;     /* Light blue hover */
  color:White;          /* Accent blue */
}

/* CTA button */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:14px;
  background:linear-gradient(135deg, #1E4ED8, #6ea8ff);
  color:white;
  font-weight:700;
  font-size:14px;
  box-shadow:0 12px 30px rgba(30,78,216,.25);
}

/* Mobile icon */
.iconbtn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid #e6eaf2;
  background:#ffffff;
  color:#0B1B3A;
}

/* Hero */
/* HERO section background behind both cards */
.hero{
  padding:64px 0 26px;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,18,37,.65), rgba(7,18,37,.82)),
    url("../img/ridar-hotel.jpg") center/cover no-repeat;
  opacity:1;
  z-index:0;
}

.hero .container{ position:relative; z-index:1; }

.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  overflow:hidden;
  height:100%; /* important */
}

.heroMain{
  height:100%;              /* IMPORTANT: fills the whole left card */
  min-height:unset;         /* remove fixed min-height */
  padding:34px;
  display:flex;             /* helps layout stay nice */
  flex-direction:column;
  justify-content:center; /* keeps content at bottom like premium hero */
  background:
    linear-gradient(135deg, rgba(11,27,58,.55), rgba(7,18,37,.35)),
    url("../img/x2333.jpg") center/cover no-repeat;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  font-size:13px; color:var(--muted);
}
.heroMain h1{
  margin:14px 0 10px;
  font-family:"Playfair Display";
  font-size:46px;
  line-height:1.06;
}
.heroMain p{margin:0; color:rgba(234,240,255,.86); max-width:60ch; font-size:15.5px; line-height:1.6}
.heroBtns{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text); font-weight:700; font-size:14px;
}
.btn:hover{background:rgba(255,255,255,.07)}
.btn.primary{border:none; background:linear-gradient(135deg, var(--brand), #6ea8ff);}

/* Booking widget */
.booking{
  padding:22px;
}
.booking h3{margin:0 0 8px; font-family:"Playfair Display"; font-size:22px}
.form{
  margin-top:12px;
  display:grid; gap:10px;
}
.field{
  display:grid; gap:7px;
}
label{font-size:12.5px; font-weight: bold; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(7,18,37,.55);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.small{font-size:12px;color:var(--muted);line-height:1.5}

/* Sections */
.section{padding:28px 0}
.sectionHead{
  display:flex; justify-content:space-between; gap:16px; align-items:end; margin-bottom:14px;
}
.sectionHead h2{margin:0; font-family:"Playfair Display"; font-size:30px}
.sectionHead p{margin:0; color:var(--muted); max-width:70ch; line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}
.card h4{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12.5px;
}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.banner{
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:
    linear-gradient(135deg, rgba(30,78,216,.25), rgba(200,162,74,.08)),
    rgba(255,255,255,.03);
  padding:22px;
  display:flex; gap:18px; align-items:center; justify-content:space-between;
}
.banner h3{margin:0; font-family:"Playfair Display"; font-size:24px}
.banner p{margin:6px 0 0; color:var(--muted)}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.gitem{
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.gitem img{height:190px; width:100%; object-fit:cover}
.lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.72);
  display:none; align-items:center; justify-content:center;
  z-index:100;
  padding:18px;
}
.lightbox.open{display:flex}
.lightboxInner{
  width:min(1100px, 100%);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  background:#000;
}
.lightboxInner img{width:100%; height:auto}
.lbTop{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 12px; background:rgba(7,18,37,.75); color:var(--muted);
}
.lbTop button{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
}

/* Footer */
.footer{
  margin-top:28px;
  border-top:1px solid var(--stroke);
  background:rgba(7,18,37,.65);
  backdrop-filter: blur(10px);
  padding:26px 0;
}
.footerGrid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:16px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.copy{margin-top:14px; color:rgba(234,240,255,.55); font-size:12.5px}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr; }
  .cards{grid-template-columns:1fr; }
  .grid2{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .menu{display:none}
  .iconbtn{display:inline-flex; align-items:center; justify-content:center}
}

.mobileMenu{
  display:none;
  border-top:1px solid var(--stroke);
  padding:10px 0 14px;
}
.mobileMenu.open{display:block}
.mobileMenu a{
  display:block;
  padding:12px 10px;
  border-radius:14px;
  color:var(--muted);
}
.mobileMenu a:hover{background:rgba(255,255,255,.05); color:var(--text)}

/* Page hero */
.pageHero{
  padding:34px 0 18px;
}
.pageHeroWrap{
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(11,27,58,.88), rgba(7,18,37,.65)),
    url("assets/img/hero.jpg") center/cover no-repeat;
  box-shadow:var(--shadow);
}
.pageHeroInner{
  padding:28px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  min-height:220px;
}
.breadcrumbs{
  color:rgba(234,240,255,.65);
  font-size:13px;
}
.pageTitle{
  margin:8px 0 0;
  font-family:"Playfair Display";
  font-size:38px;
}
.pageIntro{
  margin:8px 0 0;
  color:rgba(234,240,255,.82);
  max-width:75ch;
  line-height:1.6;
  font-size:14.8px;
}
.heroSideImg{
  width:260px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.heroSideImg img{width:100%; height:160px; object-fit:cover}

/* Simple table */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  font-size:14px;
}
.table th{color:rgba(234,240,255,.78); font-weight:700}
.table td{color:rgba(234,240,255,.88)}
.table tr:last-child td{border-bottom:none}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .pageHeroInner{flex-direction:column; align-items:flex-start}
  .heroSideImg{width:100%}
  .split{grid-template-columns:1fr}
}
/* Pricing + room cards */
.priceRow{display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-top:10px}
.price{
  font-size:22px;
  font-weight:800;
  letter-spacing:.2px;
}
.price small{font-size:12px; font-weight: bold; color:rgba(234,240,255,.65)}
.roomMeta{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.tag{
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(234,240,255,.78);
  font-size:12.5px;
}
.roomActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn.sm{padding:10px 12px; border-radius:14px; font-size:13.5px}
/* WhatsApp floating button */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(7,18,37,.78);
  backdrop-filter: blur(12px);
  box-shadow:0 16px 45px rgba(0,0,0,.45);
}
.wa-dot{
  width:38px;height:38px;
  border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, #25D366, #1fb857);
  color:#fff;
  font-weight:900;
}
.wa-text{display:flex; flex-direction:column; line-height:1.1}
.wa-text b{font-size:13.5px}
.wa-text span{font-size:12px;color:rgba(234,240,255,.68)}
@media (max-width: 520px){
  .wa-text{display:none;}
  .wa-float{padding:10px;}
}
/* Conference Banner Split Layout */
.bannerSplit{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:20px;
  align-items:center;
  padding:24px;
}

.bannerText h3{
  margin:0;
  font-family:"Playfair Display";
  font-size:26px;
}

.bannerText p{
  margin-top:8px;
  color:var(--muted);
  line-height:1.6;
  max-width:55ch;
}

.bannerImage{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}

.bannerImage img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .5s ease;
}

.bannerImage img:hover{
  transform:scale(1.05);
}

/* Responsive */
@media (max-width: 900px){
  .bannerSplit{
    grid-template-columns:1fr;
  }

  .bannerImage img{
    height:200px;
  }
}
