@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  position: relative;
  top: 50px;
  z-index: 1;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background-color: #eaeaea;
  color: #333;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

a, span {
  font-family: "Inter";
  font-style: italic;
}

h1, h2, h3 {
  font-style: italic;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #3ddc97;
}

.hero {
  text-align: left;
  padding-top: 28rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  /*background: linear-gradient(135deg, #3ddc97, #2b6cb0);*/
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: black;
  color: white;
}
.hero * {
  left: 15px;
  bottom: 10px;
  color: #eaeaea;
  font-style: italic;
}

.hero h1 {
  font-family: 'Playfair Display';
  font-size: 40px;
}

.cta {
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2c6867;
  color: #eaeaea;
  text-decoration: none;
  border: 2px solid #2c6867;
  transition: all 0.2s ease;
}

.cta:hover {
  background-color: #eaeaea;
  color: #2c6867;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #111;
  color: white;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {

  }

  .hero h1 {
    font-size: 2rem;
  }
}
/* ============================= */
/* Mobile Navigation Enhancements */
/* ============================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none; /* shown via media query */
  background: none;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 10;
}

.nav-toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle .bar:nth-of-type(1) { top: 0.35rem; }
.nav-toggle .bar:nth-of-type(2) { top: 0.95rem; }
.nav-toggle .bar:nth-of-type(3) { top: 1.55rem; }

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    width: 12rem;
    border-radius: 0 0 4px 4px;
    transition: max-height 0.3s ease;
    z-index: 5;
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
  }

  body.nav-open .nav-links {
    max-height: 20rem;
  }

  body.nav-open .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .nav-links li:nth-child(1) { transition-delay: 0.05s; }
  body.nav-open .nav-links li:nth-child(2) { transition-delay: 0.10s; }
  body.nav-open .nav-links li:nth-child(3) { transition-delay: 0.15s; }
  body.nav-open .nav-links li:nth-child(4) { transition-delay: 0.20s; }
}

body.nav-open .nav-toggle .bar:nth-of-type(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
body.nav-open .nav-toggle .bar:nth-of-type(2) {
  opacity: 0;
}
body.nav-open .nav-toggle .bar:nth-of-type(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}

section {
  padding: 3rem 0.5rem;
  /*max-width: 900px;*/
  margin: 0 auto;
}

section h2 {
  /*font-size: 2rem;*/
  margin-bottom: 1rem;
  /*color: #2b6cb0;*/
}

section p,
section li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

section .cta {
  margin-top: 1rem;
  display: inline-block;
}