.allura {
  font-family: "Allura", serif;
  font-weight: 400;
  font-style: normal;
}

body,
.noto-sans-hebrew {
  font-family: "Noto Sans Hebrew", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.primary-text {
  color: #c17af8;
}

.bold {
  font-weight: 600;
}

img[src$=".svg"] {
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  shape-rendering: geometricPrecision;
}

body,
html {
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
  font-family: Arial, sans-serif;
  /* box-sizing: border-box; */
}

a {
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  margin: min(20px, 3vh) 0 0;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100dvh - 200px);

  text-align: center;
}

.logo {
  width: min(300px, 100%);
}

.slogan {
  font-size: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.social-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  text-decoration: none;
}

.social-links img {
  height: 40px; /* Adjust based on your preference */
}

.social-links span {
  color: white;
  font-size: 0.8rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 35px;
}

.contact-info a {
  text-decoration: none;
}

.contact-info .phone-number {
  display: flex;
  gap: 2px;
  justify-content: center;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer iframe {
  width: 100%;
}

.map-iframe {
  height: 400px; /* Adjust the height as needed */
}

@media (max-height: 700px) {
  main {
    padding: 0 10px;
  }

  .slogan {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .social-links {
    gap: 20px;
  }

  .social-links img {
    height: 30px;
  }

  .contact-info {
    gap: 0.5rem;
  }

  .contact-info .phone-number {
    font-size: 1rem;
  }

  .logo {
    width: min(200px, 80%);
  }
}

@media (max-height: 500px) {
  main {
    padding: 0 5px; /* Reduce padding even more */
  }

  .slogan {
    font-size: 1.3rem; /* Further reduce font size */
    margin-bottom: 5px;
  }

  .social-links {
    gap: 10px; /* Even less spacing */
  }

  .social-links img {
    height: 25px;
  }

  .contact-info {
    gap: 0.3rem;
  }

  .contact-info .phone-number {
    font-size: 0.9rem;
  }

  .logo {
    width: min(150px, 70%); /* Further reduce logo size */
  }
}
