/* -------------------- GLOBAL -------------------- */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  background-color: #fff;
}

h1,
h2,
h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}
header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

h1.striking {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #405cbf;
}

h2.cursive {
  font-family: "Damion", cursive;
  font-size: 2rem;
  color: #9dc20b;
}

.center {
  text-align: center;
}

.button {
  display: inline-block;
  background-color: #4a4a4a;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #9dc20b;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------- HEADER -------------------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
}

header nav.desktop ul {
  display: flex;
  gap: 2rem;
}

header nav.desktop a {
  font-size: 1rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

header nav.desktop a:hover {
  color: #9dc20b;
}

header nav.desktop .icon {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Mobile nav hidden by default */
header nav.mobile {
  display: none;
}

/* -------------------- MAIN CONTENT -------------------- */
.main-content {
  margin-top: 70px;
  /* keeps content below fixed header */
}

/* -------------------- HERO / BANNER -------------------- */
.banner {
  background: url("../images/banner-landingpage.jpg") center/cover no-repeat;
  color: #fff;
  padding: 6rem 2rem;
}

#sign-up-cta .header h2 {
  font-family: "Damion", cursive;
  font-size: 2.5rem;
  margin: 0;
}

#sign-up-cta .header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

#sign-up-cta .email {
  margin-top: 2rem;
  font-size: 1.1rem;
}

#sign-up-cta .button {
  margin-top: 1rem;
}

/* -------------------- FEATURES -------------------- */
#features-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

#features-section .feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#features-section .content h2 {
  font-size: 1.5rem;
  color: #333;
}

#features-section .content h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

/* -------------------- FILTERS -------------------- */
#filters-section {
  padding: 5rem 2rem;
}

#filters-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#filters-section h3 {
  font-weight: 400;
  margin-bottom: 2rem;
}

#filters-section .images-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

#filters-section .image-container {
  flex: 1 1 200px;
  max-width: 250px;
}

/* -------------------- QUOTES -------------------- */
#quotes-section {
  background-color: #f3f3f3;
  padding: 5rem 2rem;
}

#quotes-section .quote {
  display: block;
  font-family: "Palatino", serif;
  font-size: 1.875rem;
  line-height: 1.3;
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

#quotes-section .quote-citation {
  height: 1.875rem;
  display: block;
  margin: 0 auto;
}

/* -------------------- FOOTER -------------------- */
footer {
  background-color: #333;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
}

footer .location {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 760px) {
  header nav.desktop {
    display: none;
  }

  header nav.mobile {
    display: block;
  }

  header nav.mobile ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem;
    background-color: #9dc20b;
  }

  header nav.mobile a,
  header nav.mobile .button {
    color: #fff;
    font-size: 0.9rem;
  }

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

  #features-section {
    padding: 3rem 1rem;
  }

  #filters-section {
    padding: 3rem 1rem;
  }

  #quotes-section {
    padding: 3rem 1rem;
  }
}