/* ==========================================================================
   Sripati Gold — Layout (Header + Footer)
   Shared chrome used on every page. Requires base.css.
   ========================================================================== */

/* ================================================================== *
 *  HEADER / NAVBAR  (transparent overlay on the hero)
 * ================================================================== */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;      /* pinned to top, overlays hero */
  z-index: 50;
  padding-block: 1.5rem;
}

.nav-inner {
  width: 100%;
  max-width: 1415px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 136px; width: auto; display: block; }

/* Center pill navigation */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  background: #F4F2ED;                 /* solid off-white pill */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);      /* 400 */
  font-size: 1.125rem;                 /* ~18px */
  color: var(--color-brown);
  padding: 0.3rem 1.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition);
}
.nav-link:hover { color: var(--color-gold); }

.nav-link.is-active { background: #241A0F; color: var(--color-cream); }
.nav-link.is-active:hover { color: var(--color-cream); }

/* Contact button — gold gradient (desktop) */
.btn-contact {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 1.0625rem;
  color: var(--color-brown);
  padding: 0.55rem 1.9rem;             /* aligned to slimmer nav pill */
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #FFC24B 0%, #FFA900 100%);
  transition: filter var(--transition), transform var(--transition);
}
.btn-contact:hover { filter: brightness(1.05); }
.btn-contact:active { transform: translateY(1px); }

/* Menu link shown only inside the mobile dropdown */
.nav-only-mobile { display: none; }

/* Mobile toggle — gold gradient circle */
.nav-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  place-items: center;
  color: #2A1C0E;
  background: linear-gradient(180deg, #FFC24B 0%, #FFA900 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1100px) {
  .nav-inner { padding-inline: 1.25rem; }
  .nav-link { padding: 0.6rem 1.1rem; font-size: 1rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .btn-contact { display: none; }          /* collapses into the menu */
  .nav-only-mobile { display: block; }
  .nav-pill {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem; right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: #F4F2ED;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    padding: 0.5rem;
    display: none;
  }
  .nav-pill.is-open { display: flex; }
  .nav-link { text-align: center; }
  .brand-logo { height: 48px; }
}

/* ================================================================== *
 *  FOOTER
 * ================================================================== */
.site-footer {
  background: #2A1C0E;
  color: var(--color-cream);
  padding-block: 4.5rem 2.5rem;
}

.footer-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* "Lets Connect" divider heading */
.footer-connect {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}
.footer-connect::before,
.footer-connect::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(248, 247, 243, 0.55);
}
.footer-connect h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.25rem;                  /* ~68px */
  line-height: 1;
  color: var(--color-cream);
  white-space: nowrap;
}

/* Main row: CTA text + actions */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.footer-cta {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 2.25rem;                  /* 36px */
  line-height: 1.4;
  color: var(--color-cream);
  max-width: 16ch;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-catalogue {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 1.375rem;                 /* 22px */
  color: #2A1C0E;
  background: #F3F1EC;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  transition: background-color var(--transition);
}
.footer-catalogue:hover { background: #FFFFFF; }

.footer-socials { display: flex; align-items: center; gap: 1.5rem; }
.footer-socials a { display: inline-flex; color: #FFFFFF; transition: opacity var(--transition); }
.footer-socials a:hover { opacity: 0.7; }
.footer-socials svg { width: 26px; height: auto; display: block; }

/* Copyright */
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(248, 247, 243, 0.55);
}

@media (max-width: 900px) {
  .site-footer { padding-block: 3rem 2rem; }
  .footer-inner { padding-inline: 1.25rem; }
  .footer-connect { gap: 1.25rem; margin-bottom: 3rem; }
  .footer-connect h2 { font-size: 2.5rem; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-cta { font-size: 1.75rem; }
  .footer-actions { align-items: flex-start; }
}
@media (max-width: 560px) {
  .footer-connect h2 { font-size: 2rem; }
  .footer-cta { font-size: 1.5rem; }
}
