body,
html {
  --color-bg: #f6f1eb;
  --color-text: #695e57;
  --color-accent: #e7dfd3;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  font-family: "Tinos", serif;
  color: var(--color-text);
  overflow-x: hidden;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}
header {
  margin-top: 30px;
  text-align: center;
}
.logo {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-family: "Tinos", serif;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0;
}
.logo span {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-family: "Tinos", serif;
  font-weight: 400;
  color: var(--color-text);
}
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  width: 100%;
  margin: 0 auto;
}

.image-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon {
  position: absolute;
  padding: 40px;
  top: 50%;
  width: calc(100% - 80px);
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  mix-blend-mode: overlay;
  color: var(--color-accent);
}

.coming-soon-mobile {
  display: none;
  position: absolute;
  padding: 20px;
  top: 63%;
  width: calc(100% - 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  mix-blend-mode: overlay;
  color: var(--color-accent);
}

footer {
  width: 100vw;
  max-width: 100vw;
  gap: 28px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  box-sizing: border-box;
  overflow-x: hidden;
}

footer p {
  font-size: 16px;
  line-height: 140%;
  color: var(--color-text);
  font-family: "Roboto Flex", Arial, sans-serif;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-text);
  transition: all ease-in-out 0.1s;
  color: var(--color-bg);
}

.social-icons a:hover {
  color: var(--color-text);
  background-color: var(--color-accent);
}

svg {
  fill: currentColor;
  display: block;
}

/* Media Queries */
@media (max-width: 600px) {
  .image-wrapper {
    width: 70%;
    height: auto;
  }
  .coming-soon {
    display: none;
  }

  .coming-soon-mobile {
    display: block;
    font-size: 100px;
  }

  footer {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
  .logo {
    font-size: 1.3rem;
  }
}
