
:root {
  --bg: #f7f8fc;
  --card: #ffffff;
  --primary: #7c8fd6;
  --primary_hovered: #51619c;
  --secondary: #9bb7d4;
  --third: #5c5c5c;
  --text: #2f2f33;
  --muted: #7a7a85;
  --extra_muted: #8c8c96;
  --border: #e6e8f0;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
}

/* Sidebar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 220px;
  padding: 32px 24px;
  background: var(--bg);
  border-right: 1px solid var(--border);
}

nav h1 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

nav h2 {
  font-size: 1.0rem;
  margin-bottom: 32px;
  padding-bottom: 8px;
  color: var(--extra_muted);
  border-bottom: 1px solid var(--border);
}

nav a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--primary);
}

/* Main content */
main {
  margin-left: 220px;
  padding: 64px 72px;
}

section {
  margin-bottom: 96px;
}

section h2 {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 2.5rem;
  margin-bottom: 8px;
  margin-left: 8px;
}

section h3 {
  font-size: 1.2rem;
  font-style: normal;
  text-transform: capitalize;
  color: var(--third);
}

.disclaimer {
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0px;
  margin-left: 0px;
  color: var(--third);
}

.section_title_box {
  border-bottom: 1px solid var(--border);
}

section p {
  line-height: 1.7;
  color: var(--muted);
}

section a {
  line-height: 1.7;
  color: var(--primary);
}

section a:hover {
  color: var(--primary_hovered);
}

section i {
  color: var(--extra_muted);
}

section li {
  line-height: 1.7;
  color: var(--extra_muted);
}

footer {
  margin-top: 120px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  nav {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  main {
    margin-left: 0;
    padding: 40px 24px;
  }
}

.image-with-desc {
  margin: auto;
  margin-top: 50px;
  margin-bottom: 65px;
}

.image-desc {
  text-align: center;
  font-style: italic;
  color: var(--extra_muted);
}

.video-wrapper {
  margin: auto;
  padding: 20px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin-bottom: -20px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
}


.image-with-desc-flex-outer {
  margin: auto;
  margin-top: 50px;
  margin-bottom: 65px;
  max-width: calc(608px * 2 + 20px + 40px + 2px);
}

.image-with-desc-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  margin: auto;
  margin-bottom: -20px;
}

.image-with-desc-flex img {
  width: 608px;
  max-width: 60vw;
  aspect-ratio: 16 / 9;
}

.image-with-desc-flex video {
  width: 608px;
  max-width: 60vw;
  aspect-ratio: 16 / 9;
}

.contact {
  padding: 4rem 1rem;
  text-align: center;
}

.contact p {
  font-size: 1.1rem;
}

.contact a {
  margin-left: 0.25rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.contact a:hover {
  opacity: 0.7;
}

.mail {
  margin-top: -8px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--extra_muted);
}

.site-footer {
  margin-top: 80px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
