/* ============================================================
   layout.css — Topbar, Navigation & Footer
   Fit & Shine Wellness Centre
   ============================================================ */

/* ── TOP INFO BAR ── */
.topbar {
  background: var(--g);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}

.tb-item a {
  color: var(--y);
  font-weight: 700;
}

.tb-item a:hover {
  text-decoration: underline;
}

.topbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tb-link {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  padding: 4px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  transition: .2s;
}

.tb-link:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.tb-book {
  background: var(--y);
  color: var(--g);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 20px;
  transition: .2s;
  letter-spacing: .2px;
}

.tb-book:hover {
  background: #bdf500;
}

/* ── NAVIGATION ── */
.nav-outer {
  background: rgba(255,255,255,.97);
  border-bottom: 1.5px solid #ccebd8;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-icon {
  width: 56px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.logo-icon img {
  width: 56px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--g);
  display: block;
  line-height: 1.1;
  letter-spacing: .2px;
}

.logo-tag {
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nl {
  background: transparent;
  border: none;
  color: var(--t2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 10px;
  transition: .2s;
  cursor: pointer;
}

.nl:hover,
.nl.act {
  background: var(--yl);
  color: var(--g);
  font-weight: 600;
}

.nav-cta {
  background: var(--g);
  color: var(--y);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 12px;
  border: none;
  margin-left: 8px;
  transition: .2s;
  letter-spacing: .2px;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gm);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ── MOBILE NAV ── */
.ham {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--g);
  padding: 4px;
  cursor: pointer;
}

.mob-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #ccebd8;
  padding: 12px 24px;
  animation: slideDown .25s ease;
}

.mob-nav.open {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ml {
  display: block;
  background: transparent;
  border: none;
  border-bottom: 1px solid #eef6f1;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 15px;
  color: var(--t2);
  transition: .2s;
  cursor: pointer;
}

.ml:hover {
  color: var(--g);
  padding-left: 6px;
}

.ml-book {
  background: var(--g);
  color: var(--y) !important;
  border-radius: 10px;
  border: none;
  font-weight: 800;
  margin-top: 8px;
  padding: 12px 16px;
}

/* ── FOOTER ── */
.footer {
  background: var(--g);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.fl-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.fl-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.fl-logo-icon img {
  width: 50px;
  height: auto;
  display: block;
  object-fit: contain;
}

.fl-logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.fl-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
}

.fl-contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flc {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.flc-icon {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.flc-text {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.flc-text a {
  color: var(--y);
  font-weight: 700;
}

.flc-text a:hover {
  text-decoration: underline;
}

.fc-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(168,230,0,.14);
}

.fc-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-links li {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: .2s;
  cursor: pointer;
}

.fc-links li:hover {
  color: #fff;
  padding-left: 4px;
}

.fc-links li a {
  color: rgba(255,255,255,.55);
  transition: .2s;
}

.fc-links li a:hover {
  color: #fff;
}

.footer-bot {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bot p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.fbot-links {
  display: flex;
  gap: 18px;
}

.fbot-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

.fbot-links a:hover {
  color: var(--y);
}

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-tip {
  background: var(--g);
  color: var(--y);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  display: none;
  box-shadow: 0 4px 14px rgba(0,61,46,.35);
  border: 1px solid rgba(168,230,0,.28);
}

.wa-float:hover .wa-tip {
  display: block;
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: .3s;
  cursor: pointer;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,.6);
}

/* ── REAL LOGO IMAGE ── */
.logo-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.fl-logo-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
