/* ============================================================
   luxury.css — Global Luxury Theme for Pong Horse Park
   All colors reference variables from colors.css
   ============================================================ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* adjust font size here */
html { scroll-behavior: smooth; zoom: 1.06;} 

/* ── BASE ── */
body {
  font-family: 'EB Garamond', Georgia, serif;
  /* font-size: 17px; */
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── HEADER ── */
.lux-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249,247,240,.97);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo-mark { display: flex; align-items: center; gap: 14px; }

.logo-mark img {
  height: 60px;
  width: auto;
}

.crest {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold);
  font-weight: 600; letter-spacing: 1px;
  position: relative; flex-shrink: 0;
}
.crest::before {
  content: ''; position: absolute; inset: 3px;
  border: 0.5px solid var(--gold); border-radius: 50%; opacity: .4;
}

.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy);
}
.logo-text .sub {
  font-family: 'Raleway', sans-serif;
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}

.lux-nav { display: flex; align-items: center; gap: 36px; }
.lux-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500; transition: color .3s;
}
.lux-nav a:hover { color: var(--hunter); }

.nav-cta {
  font-family: 'Raleway', sans-serif !important;
  font-size: 10px !important; letter-spacing: 2.5px !important;
  text-transform: uppercase !important; font-weight: 600 !important;
  color: var(--cream) !important; background: var(--darkbrown) !important;
  padding: 11px 22px !important; border: 1px solid var(--darkbrown) !important;
  transition: all .3s !important;
}
.nav-cta:hover { background: transparent !important; color: var(--hunter) !important; }

/* ── PAGE OFFSET ── */
.page-body { padding-top: 72px; }

/* ── SECTIONS ── */
.lux-section { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }
.lux-section.full-bleed { max-width: none; padding-left: 0; padding-right: 0; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px,4vw,52px); font-weight: 400;
  color: var(--navy); line-height: 1.1; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--hunter); }
.section-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  display: block;
  opacity: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  background: var(--gold); color: var(--cream);
  padding: 16px 36px; border: 1px solid var(--gold);
  transition: all .35s; display: inline-block; cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--gold-lt); border-color: var(--gold-lt); }

.btn-secondary {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400;
  background: transparent; color: var(--ink);
  padding: 16px 36px; border: 1px solid var(--rule);
  transition: all .35s; display: inline-block; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400;
  background: transparent; color: var(--cream);
  padding: 16px 36px; border: 1px solid rgba(249,247,240,.45);
  transition: all .35s; display: inline-block; cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(249,247,240,.85); }

/* ── CARDS ── */
.lux-card {
  background: var(--cream); border: 1px solid var(--rule);
  overflow: hidden; transition: box-shadow .35s, transform .35s;
}
.lux-card:hover { box-shadow: 0 20px 60px rgba(27,53,70,.1); transform: translateY(-4px); }

/* ── INFO BOX ── */
.lux-info-box {
  background: var(--parchment); border: 1px solid var(--rule);
  padding: 20px 24px; margin: 16px 0;
  font-size: 15px; line-height: 1.8;
}

/* ── MOTTO BAND ── */
.motto-band { background: var(--hunter); padding: 48px; text-align: center; }
.motto-band .motto {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,3vw,32px); font-style: italic;
  color: var(--cream); letter-spacing: 1px;
}
.motto-band .motto-translation {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold-lt);
  font-weight: 400; margin-top: 12px;
}

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 100px 48px; text-align: center; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,5vw,64px); font-weight: 300;
  color: var(--cream); margin-bottom: 14px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-lt); }
.cta-band p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(249,247,240,.5);
  font-weight: 300; margin-bottom: 44px;
}

/* ── FOOTER ── */
.lux-footer { background: var(--ink); padding: 56px 48px 40px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(249,247,240,.1);
}
.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--cream); margin-bottom: 8px;
}
.footer-brand .address {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: rgba(249,247,240,.35); line-height: 1.8; font-weight: 300;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(249,247,240,.4);
  font-weight: 500; transition: color .25s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1280px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 1.5px;
  color: rgba(249,247,240,.2); font-weight: 300;
}

/* ── ORNAMENT ── */
.ornament {
  text-align: center; padding: 60px 0 0;
  color: var(--gold); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 180px; height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── PAGE HEADER (interior pages) ── */
.page-header { padding: 40px 48px 20px; border-bottom: 1px solid var(--rule); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,4vw,44px); font-weight: 400;
  color: var(--navy); line-height: 1.1;
}
.page-header h1 em { font-style: italic; color: var(--hunter); }
.page-header .sub {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 12px;
}

/* ── STATUS BADGE ── */
.status-badge {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border: 1px solid currentColor;
}
.status-badge.pending  { color: var(--gold); }
.status-badge.verified { color: var(--green); }
.status-badge.rejected { color: var(--error); }
.status-badge.awaiting { color: var(--muted); }

/* ── FORM ELEMENTS ── */
.lux-input, .lux-select {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px; width: 100%;
  padding: 12px 16px; background: var(--parchment);
  border: 1px solid var(--rule); color: var(--ink);
  transition: border-color .25s; appearance: none;
}
.lux-input:focus, .lux-select:focus { outline: none; border-color: var(--gold); }
.lux-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; display: block; margin-bottom: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .header-inner { padding: 0 24px; }
  .lux-section  { padding: 80px 24px; }
  .page-header  { padding: 30px 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .motto-band, .cta-band { padding: 60px 24px; }
}

@media (max-width: 768px) {
  .lux-nav       { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lux-section   { padding: 60px 20px; }
  .page-header   { padding: 24px 20px 16px; }
}
