/* 
    Document   : closed-sites
    Created on : 2025-11-13, 14:30:00
    Author     : Gauthier
*/

/* Import Poppins and Amiri fonts */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@1,700&family=Poppins:wght@400;600&display=swap');

:root {
  --bg-color: #f7f4ef;
  --bg-color-alt: #ffffff;
  --border-color: #e7e3df;
  --heading-color: #2f4649;
  --text-color: #7a7a7a;
  --link-color: #2f4649;
  --accent-color: #4fa970;
  --button-text-color: #ffffff;
  --header-height: 90px;
  --border-radius: 6px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-color);
  font: 400 15px/1.6 'Poppins', sans-serif;
  color: var(--text-color);
  font-size-adjust: ex-height 0.51;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0 0 32px 0;
}

h1 {
  font-size: 9vw;
}

h1 span {
  color: var(--accent-color);
  font-family: 'Amiri', serif;
  font-style: italic;
}

h2 {
  font-size: 34px;
}

p {
  margin: 0 0 20px 0;
}

a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

img,
a img {
  border: none;
}

.header {
  background: var(--bg-color);
  padding-inline: 32px;
  height: calc(var(--header-height) - 1px); /* Adjust for border */
  border-bottom: 1px solid var(--border-color);
}

.header,
.header__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tagline {
  display: none;
}

.page {
  min-height: calc(100vh - var(--header-height) - (64px * 2));
  padding: 64px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../grid-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150%;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
}

.warning-box {
  background-color: var(--bg-color-alt);
  padding: 32px;
  border-radius: var(--border-radius);
  margin-top: 64px;
  text-align: left;
  display: flex;
  gap: 24px;
}

.warning-box::before {
  content: '⚠️';
  font-size: 32px;
}

.warning-box__content p:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 648px) {
  .page {
    background-size: auto;
  }

  .tagline {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  h1 {
    font-size: 85px;
  }
}
