/* ============================================================
   KANI'S INN v3 — Sticky Navbar + Real Images + Social FAB
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,600&display=swap");

:root {
  --gold: #c9a84c;
  --gold-lt: #e2c47a;
  --gold-dk: #9a7330;
  --green: #1a5c45;
  --green-dk: #0d3b2b;
  --green-lt: #246b52;
  --cream: #f5efe0;
  --cream-dk: #ede5cf;
  --ink: #111810;
  --muted: #5a5a50;
  --white: #fff;
  --nav-h: 76px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--green-dk);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ── STICKY NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(9, 32, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(4, 16, 10, 0.99);
  box-shadow: 0 4px 44px rgba(0, 0, 0, 0.55);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.65);
  object-fit: cover;
  transition: transform 0.4s;
}
.nav-logo:hover img {
  transform: rotate(12deg) scale(1.08);
}
.nav-brand {
  line-height: 1.2;
}
.nav-name {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: block;
}
.nav-tag {
  color: rgba(201, 168, 76, 0.5);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-family: "DM Sans", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-lt);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--green-dk) !important;
  padding: 10px 22px;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  transition: all 0.3s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(4, 16, 10, 0.99);
  backdrop-filter: blur(16px);
  flex-direction: column;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 14px 5%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

/* ── FLOATING SOCIAL BUTTONS (bottom-right) ── */
.social-fab {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 980;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.28rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
}
.fab:hover {
  transform: scale(1.13) translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.fab-tip {
  position: absolute;
  right: 62px;
  background: rgba(9, 32, 20, 0.97);
  color: var(--gold);
  padding: 6px 13px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.fab:hover .fab-tip {
  opacity: 1;
}
.fab-fb {
  background: #1877f2;
}
.fab-wa {
  background: #25d366;
}
.fab-ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  height: 52vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-banner .pbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition: transform 8s ease;
}
.page-banner:hover .pbg {
  transform: scale(1);
}
.pb-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 10, 0.92) 0%,
    rgba(4, 16, 10, 0.5) 50%,
    transparent 100%
  );
}
.pb-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 52px;
}
.pb-ey {
  font-family: "DM Sans", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  animation: fadeUp 0.7s 0.2s both;
}
.pb-ey::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.pb-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  animation: fadeUp 0.7s 0.38s both;
}
.pb-title em {
  color: var(--gold);
  font-style: italic;
}
.pb-rule {
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin-top: 18px;
  animation: fadeUp 0.7s 0.5s both;
}

/* ── UTILITIES ── */
.ey {
  font-family: "DM Sans", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ey::before {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.ey.c {
  justify-content: center;
}
.ey.c::after {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--gold);
}
.dh {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}
.dh.lt {
  color: var(--white);
}
.dh em {
  color: var(--gold);
  font-style: italic;
}
.lead {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.88;
}
.lead.lt {
  color: rgba(255, 255, 255, 0.72);
}
.gr {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.gr.c {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-g {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--green-dk);
  padding: 14px 36px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-g:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}
.btn-ow {
  background: transparent;
  color: var(--white);
  padding: 13px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-ow:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-og {
  background: transparent;
  color: var(--gold);
  padding: 13px 34px;
  border: 1.5px solid var(--gold);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-og:hover {
  background: var(--gold);
  color: var(--green-dk);
}
.btn-dk {
  background: var(--green-dk);
  color: var(--gold);
  padding: 14px 36px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-dk:hover {
  background: #0a1e14;
  transform: translateY(-2px);
}

/* Scroll reveal */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sr.show {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* CTA BAR */
.cta-bar {
  background: linear-gradient(
    100deg,
    var(--gold-dk),
    var(--gold),
    var(--gold-dk)
  );
  padding: 52px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-h {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  color: var(--green-dk);
  font-weight: 700;
}
.cta-s {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(13, 59, 43, 0.7);
  margin-top: 4px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 5% 28px;
}
.fg {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.fl {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.fl img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  object-fit: cover;
}
.fbn {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
.fbt {
  color: rgba(201, 168, 76, 0.5);
  font-size: 0.57rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.fbio {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.82;
  margin-bottom: 22px;
}
.fsocs {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.fsoc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s;
  border-radius: 2px;
}
.fsoc:hover {
  background: var(--gold);
  color: var(--green-dk);
  border-color: var(--gold);
}
.fch {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fch::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
}
.ful {
  list-style: none;
}
.ful li {
  margin-bottom: 9px;
}
.ful a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.ful a::before {
  content: "›";
  color: rgba(201, 168, 76, 0.5);
}
.ful a:hover {
  color: var(--gold);
}
.fns {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.fnr {
  display: flex;
}
.fni {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  color: var(--white);
  padding: 11px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.3s;
}
.fni::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.fni:focus {
  border-color: rgba(201, 168, 76, 0.5);
}
.fnb {
  background: var(--gold);
  color: var(--green-dk);
  border: none;
  padding: 11px 16px;
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.fnb:hover {
  background: var(--gold-lt);
}
.fadr {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  margin-top: 16px;
}
.fbot {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fcopy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
}
.fcopy span {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .fg {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .fg {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-bar {
    flex-direction: column;
    text-align: center;
  }
  .cta-btns {
    justify-content: center;
  }
  .social-fab {
    bottom: 20px;
    right: 14px;
  }
  .fab {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
  .fab-tip {
    display: none;
  }
}
@media (max-width: 480px) {
  #navbar {
    padding: 0 4%;
  }
}

/* ── FAB CALL BUTTON ── */
.fab-call {
  background: linear-gradient(135deg, #c9a84c, #9a7330);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.fab-call:hover {
  background: linear-gradient(135deg, #e2c47a, #c9a84c);
  border-color: rgba(255, 255, 255, 0.6);
}

.hidden {
  display: none;
}
