/* Hotel Umoja — public site styles
   Simple, warm, professional. Single accent. Not fancy. */
:root{
  --ink:#0e1b25;
  --muted:#5b6b78;
  --line:#e6e8eb;
  --bg:#ffffff;
  --soft:#f6f4ef;
  --accent:#0b4f6c;     /* Lake Kivu deep teal */
  --accent-2:#c98b3f;   /* warm gold */
  --ok:#1f7a4d;
  --warn:#a26a00;
  --bad:#9a2727;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;line-height:1.55;
  /* iOS Safari enlarges body text of its own accord when a phone is turned to
     landscape, which pushes the hero headings out of their layout. */
  -webkit-text-size-adjust:100%;text-size-adjust:100%}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
h1,h2,h3,h4{font-family:Georgia,"Times New Roman",serif;font-weight:500;margin:0 0 .4em}
h1{font-size:54px;line-height:1.08}
h2{font-size:34px;line-height:1.15}
h3{font-size:22px;line-height:1.2}
p{margin:0 0 1em;color:var(--muted)}
.wrap{max-width:1240px;margin:0 auto;padding:0 28px}

/* Utility bar */
.util{background:#0a1820;color:#c9d2d8;font-size:12px}
.util .wrap{display:flex;justify-content:space-between;align-items:center;height:34px}
.util a{margin-left:18px;opacity:.85}
.util a:hover{opacity:1}

/* Header */
header.site{position:absolute;top:34px;left:0;right:0;z-index:5;color:#fff}
header.site.solid{position:static;background:#fff;color:var(--ink);border-bottom:1px solid var(--line)}
header.site .wrap{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{font-family:Georgia,serif;font-size:22px;letter-spacing:.18em;font-weight:600}
.logo small{display:block;font-size:9px;letter-spacing:.3em;font-weight:400;color:#d8c9a6;margin-top:2px}
header.site.solid .logo small{color:var(--accent-2)}
nav.primary a{margin:0 12px;font-size:13px;letter-spacing:.06em;text-transform:uppercase;font-weight:500;opacity:.95}
nav.primary a:hover, nav.primary a.active{border-bottom:2px solid var(--accent-2);padding-bottom:4px}
.right-tools{display:flex;align-items:center;gap:14px}
.signin{border:1px solid currentColor;padding:8px 16px;font-size:12px;letter-spacing:.14em;text-transform:uppercase}
/* Account links in the public header (My Stay / Staff portal / Sign in / Sign out). Plain text so
   they sit quietly next to the Book Now button and read on both the transparent and solid header. */
.acct{color:inherit;background:none;border:0;padding:0;font:inherit;font-size:12px;letter-spacing:.06em;
  text-decoration:none;cursor:pointer;opacity:.85;font-family:inherit}
.acct:hover{opacity:1;text-decoration:underline}
.acct.out{opacity:.6}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 22px;
  border-radius:2px;background:var(--accent);color:#fff;font-weight:600;font-size:13px;
  letter-spacing:.04em;text-transform:uppercase;border:0;cursor:pointer;transition:opacity .15s}
.btn:hover{opacity:.9}
.btn.ghost{background:transparent;color:var(--ink);border:1px solid var(--ink)}
.btn.gold{background:var(--accent-2)}
.btn.sm{padding:9px 14px;font-size:12px}
.pill{display:inline-block;padding:4px 10px;border-radius:999px;background:var(--soft);
  color:var(--accent);font-size:11px;letter-spacing:.16em;text-transform:uppercase;font-weight:700}

/* Hero */
.hero{position:relative;height:660px;color:#fff;overflow:hidden;
  background-image:linear-gradient(180deg,rgba(0,0,0,.45) 0%,rgba(0,0,0,.15) 35%,rgba(0,0,0,.55) 100%),
    url('/images/lake.jpg');
  background-size:cover;background-position:center}
.hero .copy{position:absolute;left:0;right:0;top:48%;transform:translateY(-50%)}
.hero h1{font-size:58px;margin-bottom:18px;max-width:680px}
.hero p.lede{max-width:520px;font-size:17px;opacity:.95;color:#f3eee0}
.hero .cta{margin-top:26px;display:flex;gap:14px;flex-wrap:wrap}

/* Booking strip */
.bookbar{background:#fff;border:1px solid var(--line);box-shadow:0 18px 60px rgba(10,24,32,.18);
  display:grid;grid-template-columns:1.2fr 1fr 1fr .8fr auto;gap:0;
  position:relative;margin:-50px auto 0;max-width:1100px;z-index:6}
.bookbar .cell{padding:16px 18px;border-right:1px solid var(--line)}
.bookbar .cell:last-child{border-right:0;padding:0}
.bookbar label{display:block;font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--muted);margin-bottom:4px;font-weight:700}
/* The search bar's two dropdowns sit beside two date inputs. Safari draws a
   select as a bevelled control with its own background, so "Guests" and "Room
   type" came out boxed-in and grey next to two flat, borderless dates. Turning
   the native look off makes them match; the arrow is drawn back on below. */
.bookbar input, .bookbar select{border:0;font-size:15px;font-family:inherit;color:var(--ink);
  width:100%;outline:none;background-color:transparent;
  -webkit-appearance:none;-moz-appearance:none;appearance:none}
.bookbar select{
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%235b6b78' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right center;background-size:10px 7px;
  padding-right:20px;cursor:pointer}
.bookbar .go{background:var(--accent);color:#fff;padding:0 30px;display:flex;align-items:center;
  justify-content:center;font-weight:700;text-transform:uppercase;letter-spacing:.1em;font-size:13px;
  border:0;cursor:pointer;height:100%}
.bookbar .go:hover{background:#093f57}

/* Any other dropdown on the public site gets the same treatment as the two above,
   so nothing added later comes out looking like a stray native control on Safari.
   A list box (size/multiple) is not a dropdown and keeps its rows, without an arrow. */
select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;font-family:inherit}
select:not([size]):not([multiple]){
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%235b6b78' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center;background-size:11px 8px;
  padding-right:34px;cursor:pointer}
select[size],select[multiple]{background-image:none}

/* Text fields, for the same reason the dropdowns above needed it. Safari draws
   its own rounded, inset control for an <input> and a <textarea> and ignores the
   flat square field this site is built from, so a text box came out a different
   shape and height from the select beside it. The types that are their own
   widget are excluded — appearance:none on a checkbox draws nothing at all.
   Each :not() adds specificity, so this sets only what the fix needs and leaves
   colour and size to the class rules below, which must still be able to win —
   .bookbar input in particular sets its own colour. */
input:not([type=checkbox]):not([type=radio]):not([type=color]):not([type=file]):not([type=range]),
textarea{
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  font-family:inherit;background-clip:padding-box}

/* Safari puts a date/time value in its own centred box that collapses to nothing
   when empty, so the booking form's arrival and departure fields sat shorter than
   the room-type dropdown next to them, with the date floating off-centre. */
input[type=date]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value,
input[type=datetime-local]::-webkit-date-and-time-value{text-align:left;min-height:1.35em}

/* Native bevel and system font off the buttons, so "Search" and "Request booking"
   match the anchors styled as buttons beside them. */
button,input[type=submit],input[type=button],input[type=reset]{
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  font-family:inherit;cursor:pointer}

/* Sections */
section{padding:90px 0}
section.tight{padding:60px 0}
.eyebrow{font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:var(--accent-2);font-weight:700;margin-bottom:14px}
.lead{font-size:18px;color:var(--muted);max-width:680px}
.grid{display:grid;gap:28px}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-4{grid-template-columns:repeat(4,1fr)}

/* Card — rooms / restaurant */
.card{background:#fff;border:1px solid var(--line);overflow:hidden;display:flex;flex-direction:column}
.card .img{aspect-ratio:4/3;background-size:cover;background-position:center}
.card .body{padding:22px;flex:1;display:flex;flex-direction:column}
.card h3{margin-bottom:6px}
.card .meta{font-size:13px;color:var(--muted);margin-bottom:14px}
.card .price{font-family:Georgia,serif;font-size:24px;color:var(--accent);margin-bottom:14px}
.card .price small{font-size:12px;color:var(--muted);font-family:inherit;margin-left:6px;letter-spacing:.04em}
.card .row{margin-top:auto;display:flex;gap:10px;justify-content:space-between;align-items:center}

/* Trending destinations — big pictures with the name written over the top of them. Six columns
   so a card can take a third (the usual), a half, or the full width; the count decides which,
   so the last row is never left half-empty. */
.trendgrid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.trend{grid-column:span 2;min-height:230px;border-radius:8px;overflow:hidden;
  background-size:cover;background-position:center;color:#fff;padding:18px 20px}
.trend.w3{grid-column:span 3;min-height:280px}
.trend.w6{grid-column:span 6;min-height:320px}
.trend h3{color:#fff;margin:0;font-size:22px;text-shadow:0 1px 12px rgba(0,0,0,.45)}

/* Destinations — a photograph with the place written under it, in one row that scrolls
   sideways. Cards are a fixed width rather than a share of the row, so the next one is always
   half in view: that overhang is what says the row keeps going. */
.destwrap{position:relative}
.destrow{display:flex;gap:18px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x proximity;
  /* The arrows are the affordance here, and a scrollbar under a row of photographs only
     competes with them. Touch keeps its own. */
  scrollbar-width:none;-ms-overflow-style:none}
.destrow::-webkit-scrollbar{display:none}
.dest{flex:0 0 200px;scroll-snap-align:start}
.dest .img{aspect-ratio:4/3;background-size:cover;background-position:center;background-color:var(--line);
  border-radius:8px;margin-bottom:12px}
/* Two lines' worth of room whether the name needs them or not, so a "Nyungwe Forest National
   Park" doesn't shunt its own caption a line below its neighbours'. */
.dest h3{font-size:17px;margin:0;min-height:2.4em;
  display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
/* "National park · 90 minutes by road" runs to two lines about as often as one, and the
   descriptions under it read as a row only if they all start level. */
.dest .note{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--accent-2);
  font-weight:700;margin-top:3px;line-height:1.5;min-height:3em}
/* Three lines is what fits under a card this size. The editor says as much, so a hotel writing a
   fourth knows where it goes. */
.dest p{margin:7px 0 0;color:var(--muted);font-size:13.5px;line-height:1.5;
  display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.dest .link{display:inline-block;margin-top:8px;font-size:13px;color:var(--accent);
  border-bottom:1px solid var(--line)}
.dest .link:hover{border-bottom-color:var(--accent)}

/* Arrows, level with the middle of a 200px-wide picture. Hidden until the row has somewhere to
   go, and each one drops away at its own end of the run — a control that does nothing is worse
   than no control. */
.destnav{position:absolute;top:75px;transform:translateY(-50%);z-index:2;display:none;
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--ink);
  font-size:22px;line-height:1;cursor:pointer;box-shadow:0 2px 10px rgba(14,27,37,.16)}
.destnav:hover{border-color:var(--accent)}
.destnav.prev{left:-19px}
.destnav.next{right:-19px}
.destwrap.scrolls .destnav{display:block}
.destwrap.at-start .destnav.prev,.destwrap.at-end .destnav.next{display:none}

/* Feature row */
.feature{display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center}
.feature.rev{grid-template-columns:1fr 1.1fr}
.feature img{aspect-ratio:5/4;object-fit:cover;width:100%}

/* Stripe */
.stripe{background:var(--soft)}
.stripe.dark{background:#0a1820;color:#d8d2c0}
.stripe.dark p{color:#9aa6ad}
.stripe.dark h2{color:#fff}

/* Footer */
footer.site{background:#0a1820;color:#9aa6ad;padding:60px 0 30px;font-size:14px}
footer.site h4{font-family:inherit;color:#fff;font-size:13px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;margin-bottom:16px}
footer.site a{display:block;color:#9aa6ad;padding:5px 0}
footer.site a:hover{color:#fff}
footer.site .cols{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px}
footer.site .bottom{border-top:1px solid #1b2a33;margin-top:40px;padding-top:20px;display:flex;
  justify-content:space-between;font-size:12px;color:#6b7980}

/* Booking page form */
.formcard{background:#fff;border:1px solid var(--line);padding:36px;max-width:780px;margin:0 auto}
.formgrid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field label{display:block;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);font-weight:700;margin-bottom:6px}
.field input,.field select,.field textarea{width:100%;padding:12px 14px;border:1px solid var(--line);font-family:inherit;font-size:14px;background-color:#fff;outline:none;line-height:1.35}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--accent)}

/* Same story as the search bar: without this Safari renders the booking form's
   dropdowns as rounded native controls a few pixels shorter than the text
   inputs beside them, so a two-column form row never lined up. */
.field select{
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%235b6b78' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;background-size:11px 8px;
  padding-right:36px;cursor:pointer}

/* iOS Safari zooms the whole page in when you focus a control whose text is
   under 16px, and never zooms back out. It's the booking form, so a guest on an
   iPhone gets thrown sideways mid-booking. Bumping to 16px on small screens
   stops it without touching the desktop typography. */
@media (max-width:640px){
  .field input,.field select,.field textarea,
  .bookbar input,.bookbar select{font-size:16px}
}
.field.span-2{grid-column:span 2}

/* Summary */
.summary{background:var(--soft);padding:24px;margin-top:20px;border-left:3px solid var(--accent-2)}
.summary .row{display:flex;justify-content:space-between;padding:6px 0;font-size:14px}
.summary .row.total{font-weight:700;border-top:1px solid var(--line);margin-top:10px;padding-top:14px;font-size:16px}

/* Gallery */
.gal{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.gal .g{aspect-ratio:1/1;background-size:cover;background-position:center}
.gal .g.big{grid-column:span 2;grid-row:span 2;aspect-ratio:auto}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px}
.info-block{padding:18px 0;border-bottom:1px solid var(--line)}
.info-block:last-child{border-bottom:0}
.info-block .lbl{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--accent-2);font-weight:700;margin-bottom:4px}
.info-block .val{font-size:16px;color:var(--ink)}

/* Detail page */
.gal-strip{display:grid;grid-template-columns:2fr 1fr 1fr;gap:8px;height:480px}
.gal-strip .g{background-size:cover;background-position:center}
.detail-grid{display:grid;grid-template-columns:1.6fr 1fr;gap:50px;margin-top:50px}
.amen{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:14px 0;border-top:1px solid var(--line);font-size:14px;color:var(--muted)}
.amen span::before{content:"✓ ";color:var(--accent-2);font-weight:700}
/* Prefixed value first — older Safari drops the declaration entirely otherwise,
   and the booking summary scrolls away instead of staying beside the form. */
.book-side{background:var(--soft);padding:28px;position:-webkit-sticky;position:sticky;top:20px}
.book-side .num{font-family:Georgia,serif;font-size:36px;color:var(--accent)}

/* Small sitemap page */
.sitemap{padding:60px 0}
.sitemap .grp{margin-bottom:30px}
.sitemap h3{color:var(--accent);font-size:18px;margin-bottom:10px}
.sitemap a{display:block;padding:6px 0;color:var(--ink);border-bottom:1px dashed var(--line)}
.sitemap a:hover{color:var(--accent-2)}

@media(max-width:900px){
  .grid.cols-3,.grid.cols-4{grid-template-columns:1fr 1fr}
  /* The row already scrolls; on a phone the arrows would sit over the pictures, and a thumb
     does the same job. */
  .destnav{display:none !important}
  /* Two up on a phone, whatever the mosaic says on a wide screen. */
  .trendgrid{grid-template-columns:1fr 1fr;gap:12px}
  .trend,.trend.w3,.trend.w6{grid-column:span 1;min-height:150px}
  .trend h3{font-size:17px}
  .feature,.feature.rev,.contact-grid{grid-template-columns:1fr;gap:30px}
  .formgrid{grid-template-columns:1fr}
  .field.span-2{grid-column:span 1}
  .bookbar{grid-template-columns:1fr 1fr;margin-top:20px}
  .bookbar .cell{border-bottom:1px solid var(--line)}
  .bookbar .go{padding:18px;grid-column:span 2}
  h1{font-size:38px} h2{font-size:26px}
  .hero{height:520px}
  .hero h1{font-size:40px}
  footer.site .cols{grid-template-columns:1fr 1fr}
  .gal-strip{grid-template-columns:1fr;height:auto}
  .gal-strip .g{height:240px}
  .detail-grid{grid-template-columns:1fr}
}
