@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap");

:root {
  --font-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: "Space Grotesk", system-ui, sans-serif;

  --fs-mobileh1: 2.2rem;
  --fs-mobileh2: 1.6rem;
  --fs-mobileh3: 1.4rem;
  --fs-mobilebody: 0.8rem;
  --fs-small: 0.875rem;
  --bg: #f6f5f2;
  --text: #1e1e24;
  --card: #ffffff;
  --border: #b5b5bd;
  --button: #c58b8b;
  --muted: #9a9abf;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  .content {
    margin: 0 40px;
    display: flex;
    flex-direction: row;
  }
  .signup {
    margin-bottom: 0;
  }
  .services {
    margin: 40px 0;
    padding: 20px;
  }
  .contact {
    gap: 20px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: var(--fs-mobilebody);
  }
  h1 {
    font-size: var(--fs-mobileh1);
  }
  h2 {
    font-size: var(--fs-mobileh2);
  }
  h3 {
    font-size: var(--fs-mobileh3);
  }
  p {
    font-size: var(--fs-body);
  }
  .logo-badge {
    right: 36px;
  }
  .logo p {
    font-size: var(--fs-mobileh1);
  }
  .hamburger {
    display: block;
  }
  nav {
    display: none;
  }
  nav.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .account a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .content {
    margin: 0 20px;
    display: flex;
    flex-direction: column-reverse;
  }
  .image img {
    width: 300px;
    height: 300px;
  }

  .signup {
    margin-bottom: 20px;
  }
  .waves {
    display: none;
  }
  .horizontal-rule {
    margin-top: 20px;
  }
  .services,
  .footer {
    margin: 40px 0 0;
    padding: 20px;
  }
  .service-container {
    /* margin: 40px 0;
    padding: 20px; */
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }
  .contact {
    display: flex;
    gap: 20px;
    margin: 0px 10px;
    padding: 20px;
    justify-content: space-evenly;
  }

  .credits p {
    font-size: 0.6rem;
  }
}
