/* Global base styles for Happy Feet Travel site */
:root {
  --brand: #0d3b66;
  --accent: #c2185b;
  --bg: #f7f7f7;
  --text: #222;
  --nav-bg: #ffffff;
  --border: #e5e5e5;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Site header used on PHP pages */
.site-header {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand);
}
.brand img {
  height: 36px;
  width: auto;
}
.nav a {
  margin-left: 18px;
  font-weight: 600;
}
.nav a:first-child {
  margin-left: 0;
}

/* Footer */
.site-footer {
  background: var(--nav-bg);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  text-align: center;
}
.btn, button {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
}
.btn:hover, button:hover {
  filter: brightness(0.95);
}