:root{
  --bg:#f6f7fb;
  --text:#0b1f24;
  --muted:#567077;
  --surface:#ffffff;
  --border:#e6ebf2;

  /* Bold accents */
  --ocean:#0ea5a4;
  --sun:#f59e0b;
  --coral:#fb7185;
  --cactus:#22c55e;
  --ink:#0b1f24;

  --radius:18px;
  --shadow: 0 16px 40px rgba(11,31,36,0.10);
  --shadow2: 0 10px 24px rgba(11,31,36,0.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
/*
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(14,165,164,0.20), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(245,158,11,0.18), transparent 55%),
    radial-gradient(900px 600px at 70% 110%, rgba(251,113,133,0.12), transparent 60%),
    var(--bg);
}
*/
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);

  /* Background photo + overlay */
  background:
    linear-gradient(
      rgba(11,31,36,0.55),
      rgba(11,31,36,0.55)
    ),
    url("assets/Sunset02.jpg");

  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background: rgba(246,247,251,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,235,242,0.9);
}

.brand-title{
  font-weight:900;
  letter-spacing:-0.3px;
  font-size:18px;
}
.brand-subtitle{
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
}

.nav-link{
  text-decoration:none;
  color:var(--text);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  background: rgba(255,255,255,0.35);
}
.nav-link:hover{
  border-color: rgba(230,235,242,0.9);
  background: rgba(255,255,255,0.75);
}

.nav-button{
  border:none;
  background: linear-gradient(135deg, var(--ocean), #22c7c6);
  color:white;
  padding:9px 14px;
  border-radius:999px;
  cursor:pointer;
  box-shadow: 0 14px 28px rgba(14,165,164,0.22);
}
.nav-button:hover{ filter:brightness(1.03); }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px 16px 52px;
}

/* Big visual hero band */
.hero{
  border-radius: 24px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(135deg, rgba(14,165,164,0.95), rgba(245,158,11,0.78)),
    radial-gradient(900px 600px at 80% 20%, rgba(251,113,133,0.35), transparent 55%);
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width:260px;
  height:260px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 60%);
  transform: rotate(12deg);
}
.hero h1{
  margin:0 0 6px;
  font-size:34px;
  letter-spacing:-0.6px;
}
.hero p{
  margin:0 0 14px;
  color: rgba(255,255,255,0.92);
  line-height:1.45;
  max-width: 800px;
}
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.button{
  display:inline-block;
  text-decoration:none;
  border:none;
  background: rgba(255,255,255,0.18);
  color:white;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  backdrop-filter: blur(8px);
}
.button:hover{ background: rgba(255,255,255,0.26); }

.button-solid{
  background:white;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(11,31,36,0.18);
}
.button-solid:hover{ filter:brightness(0.98); }

.section{ margin-top:22px; }
.section h2{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:-0.2px;
  display:flex;
  align-items:center;
  gap:10px;
}
.pill{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(230,235,242,0.9);
  background: rgba(255,255,255,0.65);
  color: var(--muted);
}

.tiles{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
}

.tile{
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(230,235,242,0.95);
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 22px rgba(11,31,36,0.07);
  transition: transform 120ms ease, box-shadow 120ms ease;
  position:relative;
  overflow:hidden;
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  background: var(--surface);
}
.tile-accent{
  position:absolute;
  left:0; top:0; right:0;
  height:6px;
  background: var(--ocean);
}
.tile-icon{
  font-size:22px;
  line-height:1;
  margin-bottom:8px;
}
.tile-title{ font-weight:900; margin-bottom:4px; }
.tile-text{ color:var(--muted); line-height:1.35; }

.small{ color:var(--muted); font-size:12px; line-height:1.5; }

.content{
  border:1px solid rgba(230,235,242,0.95);
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(11,31,36,0.06);
}

.notice{
  border-left: 6px solid var(--sun);
  background: rgba(245,158,11,0.12);
  padding:12px 14px;
  border-radius: 14px;
  color: #5a3b00;
}

.listing{
  border:1px solid rgba(230,235,242,0.95);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
  background: rgba(255,255,255,0.92);
}

.badge{
  display:inline-block;
  font-size:12px;
  padding:3px 10px;
  border-radius:999px;
  background: rgba(14,165,164,0.12);
  border: 1px solid rgba(14,165,164,0.25);
  color: #066a6a;
  margin-left:8px;
}

.footer{
  border-top:1px solid rgba(230,235,242,0.95);
  padding:16px;
  color:var(--muted);
  text-align:center;
}

/* FORCE full background image to show completely [LOOKED BAD] */
/*
html, body {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
*/

.private-notice {
  max-width: 980px;
  margin: 20px auto 30px;
  padding: 16px 20px;
  border-radius: 14px;

  background: rgba(255, 243, 205, 0.95); /* soft amber */
  border: 1px solid rgba(255, 193, 7, 0.6);

  color: #5a3b00;
  font-size: 15px;
  line-height: 1.4;

  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.private-notice strong {
  font-weight: 800;
}

.highlight {
  background: #fff3a0;   /* soft yellow */
  padding: 4px 6px;
  border-radius: 4px;
  display: inline-block;
}
