
@font-face {
  font-family: 'OpenDyslexic';
  src: url('OpenDyslexic-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenDyslexic';
  src: url('OpenDyslexic-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'OpenDyslexic';
  src: url('OpenDyslexic-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'OpenDyslexic';
  src: url('OpenDyslexic-BoldItalic.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}

a {
  color: #ff8c00;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffa94d;
  text-decoration: none;
}

body {
  font-family: 'OpenDyslexic', sans-serif;
  margin: 0;
  padding: 0;
  color: #aaa;
  background-color: #000;
}

.topbar {
  background: #000;
  color: #aaa;
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.topbar h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.topbar h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 200;
  font-style: italic;
}


.topbar .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar .left .logo {
  height: 1.75rem;
  width: auto;
}

.topbar .left .titles {
  display: flex;
  flex-direction: column;
}

.topbar h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #aaa;
  font-weight: normal;
}

.topbar h2 {
  margin: 0;
  font-size: 1.0rem;
  color: #aaa;
  font-weight: normal;
}

.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.brand-title {
  font-family: 'Space Grotesk', sans-serif;
  color: #ccc;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Hide the actual checkbox */
.nav-toggle {
  display: none;
}

/* Style the hamburger icon */
.hamburger {
  font-size: 1.8rem;
  color: #ccc;
  cursor: pointer;
  user-select: none;
}

/* Hidden by default */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid #444;
}

/* Menu links */
.nav-menu a {
  padding: 1rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  border-bottom: 1px solid #444;
}

.nav-menu a:hover {
  background-color: #222;
  color: #fff;
}

/* This is the magic */
.nav-toggle:checked ~ .nav-menu {
  display: flex;
}
main.home {
  padding-top: 4rem;
  text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.welcome-overlay {
  position: absolute;
  top: 12.5%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  text-align: center;
  color: #f2f3f4;
  text-decoration: none;
  font-family: 'DM Serif Display', serif;
  font-weight: 200;
  font-style: italic;
  padding: 0 1rem;
}

.cta-overlay {
  position: absolute;
  bottom: 22%;
  width: 100%;
  text-align: right;
  color: #ff8c00;
  text-decoration: none;
  padding: 0 0rem;
}

.cta-overlay a {
  color: #ff8c00;
  text-decoration: none;
  font-family: 'DM Serif Display', serif;
  font-weight: 200;
  font-style: italic;
}

.cta-overlay a:hover {
  text-decoration: none;
  color: #ffa94d;
}

@media (max-width: 600px) {
  .cta-overlay {
    padding-right: 1rem;
  }
}

.welcome-line,
.welcome-sub,
.cta-overlay a {
  font-size: 2rem;
}

.welcome-line {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

footer {
  background: #000;
  color: #777;
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem 1rem;
}

/* Position nav-menu relative to the topbar */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .hamburger {
  font-size: 1.8rem;
  color: #ccc;
  cursor: pointer;
  user-select: none;
  padding: 0.25rem 0.5rem;
  margin-right: 0.25rem;
  display: inline-block;
}


.nav-toggle {
  display: none;
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: .5rem;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid #444;
}

.nav-menu a {
  padding: 1rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  border-bottom: 1px solid #444;
}

.nav-menu a:hover {
  background-color: #222;
  color: #fff;
}

.nav-toggle:checked ~ .nav-menu {
  display: flex;
}

body {
  overflow-x: hidden;
}

.about {
  padding: 6rem 1rem 2rem;
  font-family: 'OpenDyslexic', sans-serif;
  color: #e0e0e0;
  max-width: 1080px;
  margin: auto;
}

.about {
  font-size: 1.125rem; /* or go 1.2rem if you want a little extra pop */
}

.about h2 {
  font-size: 1.8rem;
}

.about h3 {
  font-size: 1.4rem;
}


.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-photo {
  max-width: 280px;
  border-radius: 10px;
  flex-shrink: 0;
}

.intro-text {
  flex: 1;
}

.about h2, .about h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 0;
}

.about section {
  margin-bottom: 2.5rem;
}

.about p {
  line-height: 1.6;
}

@media (max-width: 600px) {
  .welcome-line,
  .welcome-sub {
    font-size: 1.4rem;
  }

  .welcome-overlay {
    padding: 0 0.5rem;
    max-width: 100%;
    top: 8%;
  }

  .cta-overlay {
    bottom: 1%;
    left: 40%;
    width: auto;
    max-width: 90%;
    text-align: right;
    padding: 0 0rem;
  }

  .cta-overlay a {
    font-size: 1.4rem;
  }
}

