/* ============================================================
   O.A.T. | Overseas Adventure Travel — Outage Site Styles
   No JavaScript. Pure HTML/CSS.
   Brand: white header, burgundy red hero/nav/CTAs, warm beige body, dark footer.
   ============================================================ */

/* ── Fonts ── */
@font-face {
  font-family: CircularXX;
  src: url(fonts/CircularXX-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CircularXX;
  src: url(fonts/CircularXX-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CircularXX;
  src: url(fonts/CircularXX-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --brand-dark:  #691313;   /* dark burgundy — hero bg, nav, accent text */
  --red:         #9e1c1c;   /* primary CTA color */
  --red-dark:    #841717;   /* CTA hover */
  --nav-bg:      #5a1010;   /* nav strip background */
  --footer-bg:   #212217;   /* footer background */
  --beige:       #f8f4ec;   /* body background */
  --beige-dark:  #ede6d8;   /* 404 display number color */
  --white:       #ffffff;
  --text:        #2c2c2c;
  --text-light:  #666666;
  --border:      #d8d0c4;
  --font:        'Georgia', 'Times New Roman', serif;
  --font-sans:   CircularXX, 'Arial', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: var(--beige);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Header ── */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.header-phone {
  color: var(--text);
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-phone a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

/* Disabled nav strip — visual only.
   aria-hidden on <nav> removes it from AT; tabindex="-1" on items
   prevents keyboard focus. Both are needed. */
.site-nav {
  background-color: var(--nav-bg);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
}

.site-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  display: flex;
}

.site-nav li a {
  display: block;
  padding: 0.7rem 1.1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: default;
  pointer-events: none;
}

/* ── Main content ── */
main {
  flex: 1;
}

/* ── Outage hero ── */
.outage-hero {
  background-color: var(--brand-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.outage-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: normal;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.outage-hero p.lead {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.25rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Uncomment .eta in HTML to show an estimated return time */
.outage-hero .eta {
  font-size: 1rem;
  opacity: 0.8;
  background: rgba(255,255,255,0.1);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* ── Contact section ── */
.contact-section {
  background-color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-section h2 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.contact-section p {
  color: var(--text-light);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.phone-link {
  display: inline-block;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  transition: background-color 0.15s;
}

.phone-link:hover {
  background-color: var(--red-dark);
}

/* ── 404 section ── */
.not-found-section {
  background-color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.not-found-section .code {
  font-size: 6rem;
  font-family: var(--font);
  color: var(--beige-dark);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.not-found-section h1 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: normal;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.not-found-section p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-home {
  display: inline-block;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  transition: background-color 0.15s;
}

.btn-home:hover {
  background-color: var(--red-dark);
}

.not-found-phone {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.not-found-phone a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

/* ── Footer social ── */
.footer-social {
  margin: 1.25rem 0;
}

.footer-social-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}

.footer-social-links a:hover {
  color: var(--white);
}

/* ── Footer ── */
.site-footer {
  background-color: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
  line-height: 1.8;
}

.site-footer .footer-brand {
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    gap: 0.5rem;
  }

  .site-nav li a {
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
  }

  .outage-hero {
    padding: 3rem 1.25rem;
  }

  .phone-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.75rem;
  }
}
