/* Base styling: variables, reset, headings, body, container and hero */

:root{
  --color-primary: #c70071;
  --color-secondary: #037ba0;
  --color-dark: #293242;
  --color-body: #293242;
  --color-white: #fff;
  --divider-color: #d9d9d9;   /* thin line – matches menu feeling */
  --shadow-sm: 0 0.5rem 1rem rgba(0,0,0,.08);

  --container-max: 1320px;
  --gutter: 16px;

  --font-sans: "Montserrat", Arial, Helvetica, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

/* Reset/grounding */
*,
*::before,
*::after{ box-sizing: border-box; }
html{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body{
  margin: 0;
  color: var(--color-body);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;       /* body text 20px */
  line-height: 30px;     /* line-height 30px */
  background: #fff;
}
img{ max-width:100%; height:auto; display:block; }

/* Headings – exact sizes */
h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 44px;
  margin-top: 1.5rem;     /* extra space above */
  margin-bottom: 1rem;
}
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 31px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* A single container for all content */
.container-std{
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  box-sizing: border-box;
}

/* Hero/intro image */
.hero-image{ width:100%; height:auto; object-fit: cover; }