/* ============================================================
   GLOBAL.CSS — Rhodes Guide App
   Shared typography and base styles for every page.
   Include this BEFORE any page-specific stylesheet.

   Usage in any HTML page:
     <link rel="stylesheet" href="css/global.css">
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

/* ---- Base body ---- */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Headings ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(255, 215, 120, 0.25);
}

/* ---- Paragraphs and inline text ---- */
p, span, li, label, input, button, a {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Shared hero background (same as index.html) ---- */
.page-bg {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.72)),
    url("../assets/hero-rhodes.jpg") center / cover no-repeat fixed;
}

/* ---- Shared unlock pulse animation ---- */
@keyframes unlockPulse {
  0%   { transform: scale(1);    }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1);    }
}
