@font-face {
  font-family: "HelveticaCustom";
  src: url("./fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaCustom";
  src: url("./fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica", "HelveticaCustom", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Oxygen, Ubuntu, Cantarell, sans-serif !important;

  overflow-x: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* Navigation Bar */
.navbar {
  background-color: #ffffff;
  padding: 1.5rem 3rem 1rem 3rem;
  position: relative;
  z-index: 100;
  width: 100%;
}

.nav-container {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo img {
  height: 80px;
  width: auto;
}

.contact-links {
  display: grid;
  gap: 0.5rem;
  justify-content: center;
}

.contact-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-link-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: cover;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100%;
  background-image: url("media/images/mobileLandingImage.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-rows: auto min-content;
  padding: 1.5rem 3rem 4rem 3rem;
}

.hero-content {
  display: grid;
  justify-content: space-between;
  color: #ffffff;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
}

.hero-subcontent {
  display: flex;
  /* width: min-content; */
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
}

.social-icons {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.copyright-text {
  display: none;
}


@media (max-width: 380px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Desktop Styles */
@media (min-width: 850px) {
  .logo {
    justify-content: flex-start;
  }

  .logo img {
    height: 100px;
  }

  .navbar {
    padding: 1.5rem 3rem 1.5rem 4rem;
  }

  .nav-container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }

  .contact-links {
    grid-auto-flow: column;
    gap: 4rem;
  }

  .hero {
    background-image: url("media/images/desktopLandingImage.webp");
    padding: 3rem;
  }

  .hero-title {
    font-size: 4rem;
    margin: auto 0 2.5rem 0;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-subcontent {
    justify-content: flex-start;
  }

  .hero-subtitle br {
    display: none;
  }

  .copyright-text {
    display: block;
    color: #ffffff;
  }
}