/* Victoria Medical - Site Styles */
/* -------------------------------------------------- */
:root{
  --brand:#0f4c81; /* deep medical blue */
  --text:#0b2239;
  --muted:#4a5568;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  line-height: 1.6;
  background: url("./assets/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

.backdrop {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(2px);
  min-height: 100%;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--brand);
}

.brand .logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(15,76,129,0.25);
}

.brand .title { font-size: 1.25rem; font-weight: 800; }

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  margin-left: 1rem;
}

/* Transparent “cards” with outline — matches your homepage */
.card {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  box-shadow: none;
  padding: 1.5rem;
  margin-top: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 .5rem;
  color: var(--brand);
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 0 .75rem;
}

.list { margin: .25rem 0 0; padding-left: 1.1rem; }

.badge {
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: #e6f0f8;
  color: var(--brand);
  font-size: .85rem;
  font-weight: 700;
}

/* Footer — simple text, no card box */
.footer {
  margin-top: 2rem;
  font-size: .95rem;
  color: var(--muted);
  text-align: center;
  background: transparent;
  padding: 0.5rem 0;
}
.footer a { color: var(--brand); text-decoration: none; }

/* Tight address block (no extra gaps) */
.address {
  display: inline-block;
  margin: 0;
  line-height: 1.4;
  white-space: normal; /* we use <br> for deliberate line breaks */
}

/* Subtle divider */
hr.sep {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.15), transparent);
  margin: 1rem 0 0;
}
