/* ============================================================
   Heritage Hotels Arua , Brand Refinement Layer
   Palette drawn directly from the crested-crane logo:
   crane body maroon, crest coral, wing slate, near-black ink.
   Load this stylesheet after all other CSS files.
   ============================================================ */

:root {
  --ink: #292021;            /* logo near-black */
  --maroon: #4A3231;         /* deepened crane-body maroon */
  --maroon-deep: #3B2827;    /* nav, footer, dark sections */
  --maroon-night: #2E2020;   /* top utility bar */
  --coral: #C75B49;          /* crest coral, darkened for legibility */
  --coral-deep: #A94733;     /* hover state */
  --coral-soft: #EA7567;     /* exact logo crest, decorative accents */
  --slate: #515F62;          /* wing slate, secondary text */
  --parchment: #FAF6F2;      /* warm light background */
  --blush: #EEDFD9;          /* borders and rules */
}

/* ---------- Typography ---------- */

body {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .navbar-brand, .modal-title {
  font-family: 'Marcellus', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: inherit;
}

h5, h6 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.font_60 { line-height: 1.15; }

p { font-weight: 400; }

strong, b, .fw-bold { font-weight: 700 !important; }

/* ---------- Section rhythm and headers ---------- */

.line {
  height: 2px !important;
  width: 56px;
  background-color: var(--coral);
  border: 0;
  opacity: 1;
  margin-bottom: 14px;
}

.serv_1 h1 {
  font-size: 2.4rem;
  color: var(--maroon-deep);
}

.serv_1 p {
  color: var(--slate);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

#room .serv_1 h1,
#book .serv_1 h1 { color: #fff; }

.p_3 { padding-top: 64px; padding-bottom: 64px; }

.bg-light { background-color: var(--parchment) !important; }

/* ---------- Buttons ---------- */

.button, .button_1, .button_2 {
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 13px;
  padding: 15px 38px;
  border-radius: 2px;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button:hover, .button_2:hover {
  background: var(--maroon-deep) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(41, 32, 33, 0.25);
}

.button_1:hover {
  background: var(--coral) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(199, 91, 73, 0.3);
}

.navbar-nav .nav-link.button {
  background-color: var(--coral);
  color: #fff !important;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.navbar-nav .nav-link.button:hover {
  background-color: var(--coral-deep);
  color: #fff !important;
}

/* ---------- Navigation ---------- */

.top-bar { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.top-bar .contact-info i { color: var(--coral-soft); }

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  transition: color .2s ease;
}

#header .nav-link:hover,
#header .nav-link:focus,
#header .active,
.navbar-nav .nav-link:hover {
  color: var(--coral-soft) !important;
}

/* ---------- Hero ---------- */

.carousel-caption {
  background: linear-gradient(180deg,
    rgba(41, 32, 33, 0.15) 0%,
    rgba(41, 32, 33, 0.45) 45%,
    rgba(41, 32, 33, 0.82) 100%);
}

.carousel-caption h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(41, 32, 33, 0.45);
}

.carousel-caption p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--coral-soft);
  width: 26px;
  height: 3px;
  border: 0;
  border-radius: 2px;
}

/* ---------- Booking bar ---------- */

.book_1 {
  border-radius: 6px;
  border-top: 3px solid var(--coral);
}

.book_1 .form-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--slate);
}

.form-control, .form-select {
  border-radius: 3px;
  font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(199, 91, 73, 0.15);
}

/* ---------- Cards: services, rooms, testimonials ---------- */

.serv_2r {
  border-radius: 6px;
  background: #fff;
}

.serv_2r h4 {
  letter-spacing: 0.1em;
  font-size: 1.15rem;
  color: var(--maroon-deep);
}

.serv_2r span a {
  border-radius: 50%;
  border-color: var(--coral);
  color: var(--coral) !important;
}

.serv_2l img, .serv_2r { border-radius: 6px; }

.room_2il {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(41, 32, 33, 0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.room_2il:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(41, 32, 33, 0.28);
}

.room_2il1i1 span {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.room_2il2 h4 { font-size: 1.35rem; }

.room_2il2 h4 a { color: var(--maroon-deep); }

.room_2il2 h4 a:hover { color: var(--coral); }

.testim_1i1 {
  border-radius: 6px;
  border-left: 3px solid var(--coral);
  box-shadow: 0 4px 18px rgba(41, 32, 33, 0.08);
}

.testim_1i2 img { border: 2px solid var(--blush); }

/* ---------- Amenity icons ---------- */

.choose_1i span {
  color: var(--maroon);
  background: #fff;
  border: 1px solid var(--blush);
}

.choose_1i span:hover {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
}

.choose_1i h6 {
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--slate);
}

/* ---------- Vicinity list ---------- */

.connect_1l h1 { font-size: 2rem; color: var(--maroon-deep); }

.connect_1ril span { color: var(--coral) !important; }

.connect_1rir h6 {
  color: var(--slate);
  letter-spacing: 0.1em;
}

/* ---------- Footer ---------- */

#footer h5 {
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--coral-soft) !important;
}

#footer .text-light, #footer p { font-size: 0.92rem; }

#footer a.text-light:hover { color: var(--coral-soft) !important; }

#footer .footer_1i1 img { border-radius: 3px; }

/* ---------- Accessibility and motion ---------- */

a:focus-visible,
button:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .carousel-item img { transform: none !important; }
}

/* ---------- Interior page banners ---------- */

.page-banner {
  background-color: var(--maroon-deep);
  background-size: cover;
  background-position: center 40%;
  padding: 92px 0;
}

.page-banner h2 {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(41, 32, 33, 0.5);
}

.page-banner h6 {
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.page-banner h6 a { color: #fff; }

.page-banner h6 a:hover { color: var(--coral-soft); }

.page-banner .text-muted { color: rgba(255, 255, 255, 0.55) !important; }

@media screen and (max-width: 767px) {
  .page-banner { padding: 56px 0; }
  .page-banner h2 { font-size: 1.9rem; }
}

/* ---------- Logo legibility on dark surfaces ---------- */

.navbar .navbar-brand img,
.logo-footer {
  background: #FDFBF9;
  border-radius: 4px;
  padding: 4px 7px;
  box-shadow: 0 1px 6px rgba(41, 32, 33, 0.25);
}

/* ---------- Mobile refinements ---------- */

@media screen and (max-width: 767px) {
  .serv_1 h1 { font-size: 1.8rem; }
  .p_3 { padding-top: 44px; padding-bottom: 44px; }
  .carousel-caption p { font-size: 0.9rem; }
  #header .nav-link { font-size: 18px !important; }
  .drop_1 a { font-size: 17px; }

  .top-bar { font-size: 0.78rem; }
  .top-bar .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1rem;
    padding: 0 8px;
    text-align: center;
  }
}

@media screen and (max-width: 460px) {
  /* The street address is on the contact page; keep the bar to one clean line */
  .top-bar .contact-info div:first-child { display: none; }
}

/* ============================================================
   Revision 2: hero viewport fit, review card alignment,
   footer alignment, legal pages
   ============================================================ */

/* ---------- Hero: fits the screen, no vertical scroll needed ---------- */

.center_home .carousel-item {
  height: clamp(440px, calc(100vh - 150px), 760px);
  overflow: hidden;
}

.center_home .carousel-item img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  min-height: 0 !important;
  transition: none !important;
}

/* Ken Burns zoom driven by animation so it runs on first load
   and restarts on every slide change */
.center_home .carousel-item.active img {
  animation: heroZoom 9s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.center_home .carousel-caption {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 90px 16px !important;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .center_home .carousel-item { height: clamp(380px, calc(100vh - 120px), 620px); }
  .center_home .carousel-caption { padding-bottom: 56px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .center_home .carousel-item.active img { animation: none; }
}

/* ---------- Customer reviews: equal card heights ---------- */

.testim_1 { display: flex; flex-wrap: wrap; }

.testim_1 > [class*="col-"] {
  display: flex;
  margin-bottom: 12px;
}

.testim_1i {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
}

.testim_1i1 {
  flex: 1 1 auto;
  min-height: 0;
}

.testim_1i2 {
  margin-top: 18px !important;
  min-height: 62px;
}

/* ---------- Footer: level columns ---------- */

#footer .footer_1 > [class*="col-"] { margin-bottom: 18px; }

#footer .footer_1i > h5:first-child,
#footer .footer_1i .d-flex { margin-top: 0; }

#footer h5 { line-height: 1.4; margin-top: 2px; }

#footer .footer_1i p { line-height: 1.7; }

.logo-footer { flex-shrink: 0; }

#footer .footer_2 a.text-white:hover { color: var(--coral-soft) !important; }

#footer .footer_2 .fab { transition: color .2s ease; }

/* ---------- Legal pages ---------- */

.policy-container, .terms-container {
  max-width: 880px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.policy-container h3, .terms-container h3 {
  font-size: 2rem;
  color: var(--maroon-deep);
  margin-bottom: 8px;
}

.policy-container h4, .terms-container h4 {
  font-size: 1.15rem;
  color: var(--maroon-deep);
  margin-top: 34px;
  margin-bottom: 10px;
}

.policy-container p, .terms-container p,
.policy-container li, .terms-container li {
  color: #3d3436;
  font-size: 0.97rem;
}

.policy-container ul, .terms-container ul {
  list-style: disc;
  padding-left: 22px;
}
