/* Villa Aqualento – style.css (final) */
:root{
  --bg:#0b1220;
  --text:#eaf0ff;
  --muted:#b8c4e6;
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{
  margin:0; padding:0;
  background:linear-gradient(180deg,var(--bg),#070b14);
  color:var(--text);
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:10;
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 18px;
  background:rgba(11,18,32,.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.brand{display:flex;align-items:center}
.brand__logo{height:44px;width:auto}
.nav{display:flex;gap:18px;align-items:center}
.nav a{opacity:.85}
.nav a:hover{opacity:1}
.burger{display:none;font-size:22px;background:none;border:0;color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(6px);
}
.btn:hover{background:rgba(255,255,255,.18)}
.btn--ghost{background:transparent}
.btn--small{padding:9px 12px;font-size:.9rem}
.btn--primary{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
  max-width:var(--max);
  margin:0 auto;
  padding:26px 18px 10px;
}

.hero__media{
  position:relative;
  min-height:520px;
  border-radius:var(--radius);
  background:
    linear-gradient(135deg, rgba(0,0,0,.45), rgba(0,0,0,.15)),
    url("hero.jpg") center/cover no-repeat;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* Logo – MUCH higher (like your reference) */
.hero__overlay{
  position:absolute;
  top:-38px;     /* << big move up */
  left:-6px;     /* << small move left */
  padding:0;
}
.hero__logo{
  width:265px;   /* slightly larger to stay readable when pushed up */
  height:auto;
  opacity:1;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.78));
}

/* Right column */
.hero__content{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:8px 0;
}

/* Buttons on blue background */
.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-start;
  align-items:center;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

/* Facts */
.facts{display:flex;gap:12px;flex-wrap:wrap}
.fact{
  min-width:160px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}
.fact__k{font-size:.85rem;color:var(--muted)}
.fact__v{font-weight:600}

/* Sections */
.section{max-width:var(--max);margin:0 auto;padding:46px 18px}
.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head h2{margin:0 0 6px;font-size:1.8rem}
.section__head p{margin:0 0 22px;color:var(--muted)}
.muted{color:var(--muted)}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.gallery img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow:0 12px 35px rgba(0,0,0,.22);
  transition:transform .4s ease;
}
.gallery img:hover{transform:scale(1.04)}

/* Booking */
.booking--two{display:grid;grid-template-columns:1.1fr .9fr;gap:16px}
.booking__box{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
}
.booking__box--primary{
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.22);
}
.booking__actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:12px}
.fine{margin-top:16px;font-size:.9rem;color:var(--muted)}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:26px 18px;
  background:rgba(0,0,0,.22);
}
.footer__inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer__links{display:flex;gap:28px;color:var(--muted)}
.footer__links strong{color:var(--text)}

/* Mobile */
@media (max-width:920px){
  .hero{grid-template-columns:1fr}
  .hero__media{min-height:420px}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .booking--two{grid-template-columns:1fr}

  .nav{display:none}
  .burger{display:block}

  .hero__overlay{top:-34px; left:-6px;}
  .hero__logo{width:235px}
}
