
body {
  font-family: 'Radio Canada Big', sans-serif;
  font-weight: 400; 
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: rgb(30, 78, 110);
}

main, section, header, footer, article, div, p, ul, ol, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main {
  max-width: 96vw;
  margin: 0 auto;
  padding: 4vh 2vw;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 10rem);
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 5vw, 9rem);
  font-weight: 700;
  margin-top: clamp(1rem, 4vw, 8rem);
  margin-bottom: 0.5rem;
  line-height: 0.9;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 6rem);
  font-weight: bold;
  margin-top: 4vw;
  margin-bottom: 0.5rem;
  line-height: 0.9;
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 6rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 0.9;
  color: rgb(159, 170, 189);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 3rem);
}

li {
  margin-bottom: 2vh;
  font-size: clamp(1rem, 2.5vw, 5rem);
}

a {
  color: rgb(235, 134, 52);
  text-decoration: underline;
}



ul {
  list-style: disc;
  margin-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.image-gallery img {
  max-height: 30vh;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.cover-wrapper {
  width: 100%;
  margin-bottom: 3vh;
  display: flex;
  justify-content: flex-start; 
}

.cover {
  max-height: 20vh;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.image-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.image-backdrop img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  border-radius: 8px;
}


/* Add spacing between major blocks */
section {
  margin-bottom: 64px;
}
