@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #023E3D;
  text-transform: uppercase;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #EAF8FA;
}

.logo {
  height: 200px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #025E6C;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  text-align: center;
  background: #fff;
  padding: 40px 10px;
}

.hero img,
.hero video {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

section {
  padding: 40px 20px;
  text-align: center;
}

section img {
  max-width: 100%;
  height: auto;
  max-height: 100vh; /* max 80% of screen height */
  object-fit: contain;
  margin: 20px 0;
}

.notify-form {
  margin-top: 20px;
}

input[type="email"] {
  padding: 12px;
  width: 260px;
  max-width: 80%;
  margin-right: 10px;
  font-size: 1rem;
  text-transform: none; /* keep email input lowercase */
}

button {
  padding: 12px 24px;
  background-color: #025E6C;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

footer {
  background-color: #EAF8FA;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Header for Mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }

  .logo {
    height: 200px;
    margin-bottom: 10px;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* adds spacing between links */
  }

  nav a {
    font-size: 1rem;
    margin: 0;
  }

}
h2 {
  font-size: 3rem;      /* increase this for bigger text */
  font-weight: 700;
  color: #023E3D;
  margin-bottom: 30px;
  text-transform: uppercase;
}
section img {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
}
.top-bar {
  height: 30px;
  background-color: #00585E;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 30px;
  border-bottom: 1px solid #ddd;
}

.main-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-header nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #00585E;
}

.main-header nav a:hover {
  text-decoration: underline;
}
