/* ═══════════════════════════════════════════════
   Hotel Alcynne — legal.css
   Shared styles for legal and policy pages
═══════════════════════════════════════════════ */

:root {
  --navy:       #0f2342;
  --navy-dark:  #081729;
  --gold:       #c9a84c;
  --gold-light: #e8c96d;
  --cream:      #faf7f0;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.logo em {
  color: var(--gold-light);
  font-style: normal;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.back-btn:hover {
  opacity: 0.86;
}

main {
  flex: 1;
  padding: 56px 24px 80px;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
}

.page-top {
  text-align: center;
  margin-bottom: 44px;
}

.tag {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
}

h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 2px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin-bottom: 14px;
  box-shadow: 0 2px 16px rgba(15,35,66,0.07);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 6px 28px rgba(15,35,66,0.13);
}

.card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

.card p {
  color: #4a4a6a;
  font-size: 0.94rem;
  line-height: 1.72;
}

.card a {
  color: var(--gold);
}

.cta-wrap {
  text-align: center;
  margin-top: 40px;
}

footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.14);
  padding: 18px 24px;
  text-align: center;
  color: rgba(255,255,255,0.38);
  font-size: 0.8rem;
}

footer span {
  color: var(--gold-light);
}

.wa {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 4px 16px rgba(34,197,94,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.wa:hover {
  transform: scale(1.1);
}

.wa i {
  color: #fff;
  font-size: 1.65rem;
}
