:root {
  --bg-color: #ddd8cf; /* Clay Pale approximation */
  --text-color: #333;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}

body {
  margin: 0;
  padding: 0;
  min-width: 360px;
}

header,
.container,
footer {
  display: block;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  position: relative;
  padding: 0;
  margin: 0;
  flex: 1;
}

/* FLEX WRAPPER FOR SIDE-BY-SIDE DIVS */
.contact-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem auto;           /* ✅ Center the wrapper horizontally */
  max-width: 1000px;           /* ✅ Optional: control total width of the 2 columns */
  justify-content: center;     /* ✅ Center items inside when not full width */
}

/* LEFT AND RIGHT COLUMNS */
.contact-info-left,
.contact-info-right {
  width: 45%;
  min-width: 250px;
  max-width: 300px;
}

/* TYPOGRAPHY */
.logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 2rem auto;
  display: block;
}

h1 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* HEADER IMAGE */
header {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 5 / 1;
  background-image: url('logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* FOOTER BACKGROUND IMAGE */
footer {
  width: 100%;
  height: 250px;
  background-image: url('meadow-pale.png');
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: auto 250px;
}

.bg-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}
