body {
  margin: 0;
  position: relative;
  min-height: 100vh;
  font-family: Montserrat, sans-serif;
  color: #404040;
  background: #fff;
}

.logo {
  position: fixed;
  top: 1rem;
  left: 0rem;
  z-index: 10;
  width: 12rem;
  height: auto;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}


.main-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('/images/background.webp') no-repeat center/cover;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}


h1 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
}

h2 {
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0;
}


a {
  text-decoration: none;
  color: #404040;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: rgb(133, 133, 133);
}


.enquiries-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.contact-info-wrapper,
.icon-text-wrapper,
.social-media-wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-text-wrapper {
  gap: 1rem;
}

.social-media-link img {
  width: 40px;
  height: 40px;
  max-width: 100%;
  height: auto;
}


.lottie-animation {
  width: 60vw;
  max-width: 400px;
  height: auto;
  margin: 2rem auto 2rem auto;
}


@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 1.75rem; }
  .content-wrapper { max-width: 80vw; max-height: 80vh; padding: 2rem; }
  .lottie-animation { width: 40vw; max-width: 600px; }
}


@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2rem; }
  .content-wrapper { max-width: 60vw; max-height: 70vh; }
  .lottie-animation { width: 30vw; max-width: 800px; }
}