/* =========================================================
   River Side Village — Nr. 5
   Faqe e thjeshtë njoftimi: një kolonë, rrjedh poshtë.
   ========================================================= */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 90px;
}

h1 {
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 6px;
}

h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

h3 {
  font-size: 1.05rem;
  margin: 24px 0 4px;
}

.sub {
  color: #555;
  margin: 0 0 20px;
}

p { margin: 8px 0; }

a { color: #1258a8; }

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 0 0 12px;
}

/* planet janë të gjata — mos i lër të zënë tërë ekranin */
img.plan {
  max-width: 440px;
  margin: 8px auto 4px;
  border: 1px solid #e0e0e0;
}

/* ---------- tabela e të dhënave ---------- */
.facts {
  width: 100%;
  border-collapse: collapse;
}
.facts th, .facts td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.facts th {
  color: #555;
  font-weight: 500;
  white-space: nowrap;
  width: 40%;
}

.note {
  color: #777;
  font-size: .85rem;
  text-align: center;
}

/* ---------- harta ---------- */
.map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ---------- telefonat ---------- */
.phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 14px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 11px 20px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  transition: border-color .15s, background .15s;
}
.phone svg {
  width: 17px;
  height: 17px;
  fill: #1a7a3c;
  flex: none;
}
.phone:hover {
  border-color: #1a7a3c;
  background: #f6faf7;
}

/* ---------- shiriti i thirrjes (celular) ---------- */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e4e4e4;
  border-top: 1px solid #e4e4e4;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .06);
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 14px 8px;
}
.callbar svg {
  width: 16px;
  height: 16px;
  fill: #1a7a3c;
  flex: none;
}
.callbar a:active { background: #f2f2f2; }

@media (max-width: 700px) {
  .callbar { display: grid; }
  .phones { display: none; }
}
