/* ─────────────────────────────────────────────
   SAH Restaurants Management — SHARED STYLES
   Used by: events.html, concept.html,
            services.html, branding.html
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,700;1,300;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #C1753F;
  --primary-light: #D9895A;
  --primary-dark: #9A5C2D;
  --bg: #FFFFFF;
  --bg2: #F8F5F2;
  --bg3: #F2EDE8;
  --card: #FFFFFF;
  --border: #E8E0D8;
  --border2: rgba(193, 117, 63, 0.3);
  --text: #1A1208;
  --text2: #5A4E44;
  --text3: #9A8E84;
  --dark: #111111;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg3);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

/* ── CURSOR ── */
.cursor {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, width 0.3s, height 0.3s;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(193, 117, 63, 0.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(193, 117, 63, 0.06);
  padding: 14px 52px;
}

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

.logo-pill {
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 8px;
}

.logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--text3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  list-style: none;
}

.nav-center li a {
  display: block;
  color: var(--text2);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 100px;
  transition: all 0.25s;
}

.nav-center li a:hover {
  color: var(--text);
  background: white;
}

.nav-center li a.active {
  background: var(--primary);
  color: white;
}

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.nav-btn-primary {
  background: var(--primary);
  color: white;
}

.nav-btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(193, 117, 63, 0.3);
}

.nav-btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text2);
}

.nav-btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.82) 0%, rgba(20, 12, 5, 0.45) 60%, rgba(193, 117, 63, 0.15) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 117, 63, 0.18);
  border: 1px solid rgba(193, 117, 63, 0.4);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 22px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  color: white;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #fff;
  max-width: 540px;
  margin-bottom: 36px;
}

.page-hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-meta-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

/* ── SECTION BASE ── */
section {
  padding: 100px 52px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--primary);
}

.sec-heading {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
  color: var(--text);
}

.sec-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text2);
  max-width: 460px;
}

/* ── BUTTONS ── */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.btn-filled {
  background: var(--primary);
  color: white;
}

.btn-filled:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(193, 117, 63, 0.3);
}

.btn-border {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text2);
}

.btn-border:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  white-space: nowrap;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.ticker-item.hi {
  color: var(--primary);
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 100px 52px;
}

.cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 10, 3, 0.85) 0%, rgba(140, 70, 25, 0.7) 100%);
}

.cta-strip-content {
  position: relative;
  z-index: 2;
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

.cta-strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.cta-strip-heading {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: white;
  max-width: 420px;
}

.cta-strip-heading em {
  font-style: normal;
  color: var(--primary-light);
}

.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 14px 22px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
  min-width: 240px;
}

.cta-input:focus {
  border-color: var(--primary-light);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(193, 117, 63, 0.4);
}

.cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 52px 36px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-img-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 60px;
  border-radius: 16px;
}

.footer-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5) saturate(0.6);
  transition: all 0.4s;
  cursor: pointer;
}

.footer-strip-img:hover {
  filter: brightness(0.7) saturate(1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin: 18px 0 26px;
  max-width: 280px;
}

.footer-logo-pill {
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
}

.footer-logo-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
}

.footer-logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.f-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom span {
  color: var(--primary);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

.rd4 {
  transition-delay: 0.4s;
}

/* ── KEYFRAMES ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5)
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {

  nav,
  nav.scrolled {
    padding: 16px 24px;
  }

  section {
    padding: 72px 24px;
  }

  .cta-strip {
    padding: 0 24px 72px;
  }

  .page-hero {
    padding: 0 24px 56px;
  }

  .nav-center {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-img-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .footer-strip-img {
    height: 100px;
  }

  .cta-strip-content {
    padding: 48px 36px;
  }
}

@media (max-width:640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-img-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-strip-content {
    flex-direction: column;
  }
}