/* Minimal “premium demo” styling — no frameworks */
:root{
  --bg1:#0b1220;
  --bg2:#03060d;
  --card: rgba(6, 10, 18, .82);
  --border: rgba(248,250,252,.14);
  --text:#f8fafc;
  --muted: rgba(248,250,252,.72);
  --accent:#fb923c;
  --accent2:#ff5b6c;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --r: 18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(255,91,108,.22), transparent 55%),
              radial-gradient(1000px 700px at 90% 10%, rgba(251,146,60,.18), transparent 55%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}
.bg{
  position:fixed; inset:-200px;
  background:
    radial-gradient(closest-side at 25% 25%, rgba(255,91,108,.10), transparent 60%),
    radial-gradient(closest-side at 75% 35%, rgba(251,146,60,.10), transparent 60%);
  filter: blur(20px);
  pointer-events:none;
  z-index:-1;
}
.topbar{
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 22px;
  max-width:1100px;
  margin:0 auto;
}
.topbar-actions{margin-left:auto;}
.tabnav{
  display:grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap:8px;
}
.tabnav a{
  padding:8px 16px;
  border-radius:999px;
  border:1px solid transparent;
  text-align:center;
  color:var(--text);
  text-decoration:none;
  font-weight:600;
}
.tabnav a:hover{
  border-color: rgba(248,250,252,.26);
}
.tabnav a[aria-current="page"]{
  border-color: rgba(251,146,60,.45);
  background: linear-gradient(135deg, rgba(251,146,60,.3), rgba(255,91,108,.3));
  color:#fff;
}
.topbar-actions{margin-left:auto;}
.brand{display:flex; gap:12px; align-items:center;}
.logo{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,91,108,.95), rgba(251,146,60,.95));
  color:#0b1220;
  font-weight:900;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  user-select:none;
}
.logo-img{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
}
.brandtext .title{font-weight:800; letter-spacing:.2px;}
.brandtext .subtitle{font-size:12px; color:var(--muted); margin-top:2px;}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--text);
  text-decoration:none;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}
.pill:hover{border-color: rgba(248,250,252,.26);}
.steps{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:14px;
}
.tabs a{
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(248,250,252,.18);
  background: rgba(255,255,255,.04);
  color:var(--text);
  transition: border-color .2s ease, color .2s ease;
}
.tabs a:hover{
  border-color: rgba(248,250,252,.4);
  color:#fff;
}

.wrap{
  max-width:1100px;
  margin: 8px auto 28px;
  padding: 0 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
@media (max-width: 920px){
  .wrap{grid-template-columns:1fr;}
  .steps{
    flex-wrap:wrap;
    justify-content:center;
  }
}
@media (max-width: 600px){
  .link-grid{
    grid-template-columns: repeat(1, minmax(180px, 1fr));
  }
}
.card{
  border:1px solid var(--border);
  background: var(--card);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:18px;
  backdrop-filter: blur(10px);
}
.hero h1{
  margin: 2px 0 10px;
  font-size: 28px;
  line-height: 1.12;
}
.hero-main{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.muted{color:var(--muted)}
.small{font-size:13px; line-height:1.45}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 8px;}
.btn{
  appearance:none; border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding: 11px 14px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:700;
}
.btn.ghost{
  background: transparent;
  border-color: rgba(248,250,252,.3);
  box-shadow: none;
}
.btn:hover{border-color: rgba(248,250,252,.26);}
.btn:disabled{opacity:.55; cursor:not-allowed}
.btn.primary{
  border-color: rgba(251,146,60,.45);
  background: linear-gradient(135deg, rgba(251,146,60,.95), rgba(255,91,108,.95));
  color:#0b1220;
}
.link-grid{
  display:grid;
  grid-template-columns: repeat(1, minmax(200px, 1fr));
  gap:10px;
}
.link-grid a{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding: 14px;
  min-height: 120px;
  border-radius: 18px;
  border:1px solid rgba(248,250,252,.12);
  color:var(--text);
  text-decoration:none;
  background: rgba(255,255,255,.05);
  font-weight:600;
  transition: border-color .2s ease, background .2s ease;
}
.link-grid a span{
  font-size:1rem;
}
.link-grid a small{
  display:block;
  margin-top:8px;
  font-size:0.85rem;
  font-weight:500;
  color:rgba(248,250,252,.75);
}
.link-grid a.menu{
  background-image: linear-gradient(180deg, rgba(11,18,32,.4), rgba(11,18,32,.6)), url("./assets/menu.jpg");
  background-size: cover;
  background-position: center;
}
.link-grid a.catering{
  background-image: linear-gradient(180deg, rgba(11,18,32,.4), rgba(11,18,32,.6)), url("./assets/catering.jpg");
  background-size: cover;
  background-position: center;
}
.link-grid a.pool{
  background-image: linear-gradient(180deg, rgba(11,18,32,.4), rgba(11,18,32,.6)), url("./assets/pool.jpg");
  background-size: cover;
  background-position: center;
}
.link-grid a.employment{
  background-image: linear-gradient(180deg, rgba(11,18,32,.4), rgba(11,18,32,.6)), url("./assets/employment.jpg");
  background-size: cover;
  background-position: center;
}
.link-grid a.contact{
  background-image: linear-gradient(180deg, rgba(11,18,32,.4), rgba(11,18,32,.6)), url("./assets/contact.jpg");
  background-size: cover;
  background-position: center;
}
.link-grid a:hover{
  border-color: rgba(251,146,60,.45);
  background: linear-gradient(135deg, rgba(251,146,60,.35), rgba(255,91,108,.35));
  color:#fff;
}
.link-grid a small{
  display:block;
  margin-top:6px;
  font-weight:500;
  color:rgba(248,250,252,.75);
}
.hint{
  margin-top:14px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px dashed rgba(248,250,252,.18);
  background: rgba(255,255,255,.04);
}
.hintTitle{font-weight:800; margin-bottom:6px;}
.hint ul{margin:8px 0 0 18px; color:var(--muted)}
.previewHead{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
  margin-bottom:10px;
}
.previewHead h2{margin:0 0 6px; font-size:18px;}
.mini{display:flex; gap:6px; padding-top:6px;}
.dot{width:10px; height:10px; border-radius:50%; background: rgba(248,250,252,.18);}
.phone{
  width:min(360px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(248,250,252,.16);
  padding: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.phoneTop{display:flex; justify-content:center; gap:10px; padding:8px 0 10px;}
.speaker{width:64px; height:8px; border-radius:999px; background: rgba(248,250,252,.14);}
.camera{width:10px; height:10px; border-radius:50%; background: rgba(248,250,252,.18);}
.frame{
  position:relative;
  width:100%;
  height: 560px;
  border-radius: 26px;
  overflow:hidden;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(248,250,252,.12);
}
iframe{
  width:100%; height:100%;
  border:0;
  background: rgba(0,0,0,.35);
}
.frameFallback{
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:center;
  padding:18px;
  background: linear-gradient(180deg, rgba(11,18,32,.92), rgba(3,6,13,.92));
}
.fallbackTitle{font-weight:900; font-size:16px; margin-bottom:8px;}
.phoneBottom{height:10px;}
.fineprint{margin-top:12px}
.foot{
  max-width:1100px;
  margin: 0 auto 24px;
  padding: 0 22px;
  text-align:center;
}
.about h2{margin-bottom:10px;}
.about p{margin-bottom:12px; line-height:1.65; color:var(--muted);}
