:root {
  --navy: #1b3a5b;
  --red: #e2231a;
  --blue: #1a86d0;
  --text: #333;
  --muted: #6b7280;
  --bg: #ffffff;
  --line: #e5e7eb;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
  /* Dark overlay over the café hero photo. */
  background-image:
    linear-gradient(rgba(17, 32, 48, 0.5), rgba(17, 32, 48, 0.5)),
    url('assets/hero.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  background-color: #16233a; /* shows before the image loads */
}

/* Decorative translucent circles */
.deco {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.22;
  pointer-events: none;
}
.deco-tl {
  width: 320px; height: 320px;
  top: -140px; left: -120px;
}
.deco-br {
  width: 620px; height: 620px;
  right: -180px; bottom: -260px;
  opacity: 0.18;
}

/* Header sits transparently over the hero */
.site-header {
  position: relative;
  z-index: 2;
  padding: 26px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; }
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}
.nav a:hover { opacity: 1; }

/* Centered hero text */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 700;
  margin: 0 0 22px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 0 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ---------- FOOTER ---------- */
.site-footer {
  flex-shrink: 0;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.useful-links h2 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.useful-links a {
  color: var(--navy);
  text-decoration: none;
  margin-right: 18px;
}
.useful-links a:hover { color: var(--red); text-decoration: underline; }
.copyright {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 20px 0 0;
}

/* ---------- PRIVACY PAGE ---------- */
.subheader {
  background: var(--navy);
  padding: 22px 0;
}
.subheader .header-inner { align-items: center; }
.subheader .nav a { color: #fff; }
.main {
  flex: 1 0 auto;
  padding: 56px 32px 72px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.main h1 { color: var(--navy); font-size: 2.2rem; margin: 0 0 24px; }
.policy h3 { color: var(--navy); font-size: 1.15rem; margin: 34px 0 10px; }
.policy h4 { color: var(--muted); font-weight: 600; margin: 0 0 24px; }
.policy ul, .policy ol { padding-left: 22px; margin: 0 0 18px; }
.policy li { margin-bottom: 10px; }
.policy a { color: var(--navy); }
.policy p { margin: 0 0 16px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .hero { min-height: 90vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1.05rem; }
  .deco-br { width: 380px; height: 380px; right: -120px; bottom: -160px; }
  .deco-tl { width: 220px; height: 220px; }
  .main { padding: 40px 20px 56px; }
}
