body{ font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
/* === Just Kandy Qatlama — Pleasant, modern look === */
:root{
  --bg:#0b0f14;
  --text:#e6f1f4;   /* light text */
}
html,body{ background:var(--bg); color:var(--text); }

  --bg:#0c0f10;
  --bg-soft:#121518;
  --panel:#181c20;
  --muted:#9fb3c8;
  --text:#eaf2f9;
  --accent:#8af7c8;     /* mint */
  --accent-2:#ffe082;   /* warm highlight */
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, #223 0%, transparent 60%),
    radial-gradient(800px 400px at 90% 10%, #202a25 0%, transparent 55%),
    linear-gradient(180deg, #0b0e10, #0b0e10 60%, #0a0c0e);
  background-color:var(--bg);
}

/* Layout */
.wrap, .container{
  width:min(1100px, 92vw);
  margin:0 auto;
  padding:28px 0;
}

/* Header / nav */
header, .site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(120%) blur(8px);
  background:rgba(18,21,24,.65);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800; letter-spacing:.3px; text-decoration:none; color:var(--text);
}
.logo{
  width:36px; height:36px; border-radius:10px;
  background:linear-gradient(135deg, var(--accent), #74a6ff);
  box-shadow:0 6px 16px rgba(116,166,255,.3);
}
.nav a{
  color:var(--muted); text-decoration:none; font-weight:600;
  padding:8px 12px; border-radius:10px;
}
.nav a:hover{ color:var(--text); background:rgba(255,255,255,.06)}

/* Hero */
.hero{
  padding:56px 0 10px;
}
h1{
  font-size:clamp(34px, 5vw, 54px);
  line-height:1.12; margin:.2em 0 .3em; letter-spacing:.3px;
  text-shadow:0 8px 28px rgba(0,0,0,.45);
}
.lead{ color:var(--muted); font-size:1.05rem; max-width:780px}

/* Buttons */
.btn, .button{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:999px; text-decoration:none;
  color:#0b1114; font-weight:800; letter-spacing:.2px;
  background:linear-gradient(180deg, var(--accent), #69f0b8);
  box-shadow:0 8px 24px rgba(106,240,184,.35);
  transition:transform .08s ease, box-shadow .2s ease;
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 10px 28px rgba(106,240,184,.45)}
.btn.ghost{
  background:transparent; color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.btn.ghost:hover{ background:rgba(255,255,255,.06)}

/* Cards for highlights / menu items */
.grid{
  display:grid; gap:18px;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  margin:26px 0 10px;
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
}

  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); padding:18px;
  box-shadow:var(--shadow);
}
.card h3{ margin:.2em 0 .2em; font-size:1.05rem}
.price{
  display:inline-block; font-weight:900; color:#091418;
  background:linear-gradient(180deg, var(--accent-2), #ffd45d);
  padding:6px 10px; border-radius:999px; margin:.2em 0 .4em;
}

/* Section titles */
.section-title{
  font-size:clamp(22px, 3vw, 32px);
  margin:34px 0 14px;
}

/* Contact blocks */
.info-row{ display:flex; flex-wrap:wrap; gap:16px; margin:18px 0}
.info{
  flex:1 1 240px; padding:14px 16px; border-radius:var(--radius);
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
}

/* Footer */
footer{
  margin-top:36px; padding:22px 0 40px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:.95rem;
}
a{ color:var(--accent) }
a:hover{ opacity:.9 }

/* Utility */
.center{ text-align:center }
.max-800{ max-width:800px; }
/* ===== Gallery ===== */
.gallery-grid{
  --gap: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  margin: 24px 0 64px;
}
.g-card{
  grid-column: span 6; /* 2 columns on mobile */
  display: block;
  border-radius: 16px;
  overflow: hidden;
  outline: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  transition: transform .2s ease, outline-color .2s ease;
}
.g-card:hover{ transform: translateY(-2px); outline-color: rgba(255,255,255,.18); }
.g-card img{ width: 100%; height: 220px; object-fit: cover; display: block; }

@media (min-width: 640px){
  .g-card{ grid-column: span 4; } /* 3 across */
}
@media (min-width: 1024px){
  .g-card{ grid-column: span 3; } /* 4 across on desktop */
}

/* Lightbox (CSS-only via :target) */
.lightbox{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}
.lightbox:target{ display: flex; }
.lightbox figure{
  max-width: min(1000px, 92vw);
  width: 100%;
  background: rgba(20,24,30,.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.lightbox img{ width: 100%; height: auto; display: block; }
.lightbox figcaption{
  font-size: .95rem;
  padding: 12px 16px;
  color: var(--text, #e6f1f4);
  opacity: .9;
  background: rgba(0,0,0,.25);
}
.lightbox .close{
  position: fixed;
  inset: 0;
  cursor: zoom-out;
}
