body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url('images/background.webp') center center no-repeat;
  background-size: cover;
  font-family: 'Helvetica Neue', sans-serif;
  color: #f2f2f2;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  animation: vintageSoftPulse 18s ease-in-out infinite alternate;
}

@keyframes vintageSoftPulse {
  0% {
    filter: sepia(0.3) brightness(0.95) contrast(1);
  }
  50% {
    filter: sepia(0.6) brightness(1.03) contrast(1.03) hue-rotate(8deg);
  }
  100% {
    filter: sepia(0.4) brightness(0.98) contrast(1.01) hue-rotate(-5deg);
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  animation: fadeIn 2s ease-out;
  padding: 20px;
  height: 100%;
}

.logo {
  max-width: 800px;
  width: 95vw;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.4));
  opacity: 0;
  animation:
    logoFadeIn 2s ease-out forwards,
    heartbeat 2.4s ease-in-out 2s infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.06);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.03);
  }
  70% {
    transform: scale(1);
  }
}

.text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 2.5s ease-in-out forwards;
  animation-delay: 1.8s;
}

.coming-soon {
  font-size: 1.8em;
  letter-spacing: 2px;
  margin: 0.5em 0;
}

.email a {
  color: #f2f2f2;
  text-decoration: underline;
  font-size: 1.1em;
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .logo {
    max-width: 90vw;
    width: 90vw;
  }

  .coming-soon {
    font-size: 1.4em;
  }

  .email a {
    font-size: 1em;
  }
}


.icon {
  margin-right: 0.4em;
  vertical-align: middle;
}


.email {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  justify-content: center;
}


.socials {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.socials a {
  display: inline-block;
  width: 38px;
  height: 38px;
}
.social-icon {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.15);
}


.email {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  justify-content: center;
}

.email-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
}

.email-icon .icon {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.email-icon:hover .icon {
  transform: scale(1.15);
}


#loader {
  position: fixed;
  inset: 0;
  background: #000;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Helvetica Neue', sans-serif;
  animation: fadeout 1s ease 1s forwards;
}

.loading-text {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  animation: blink 1.5s infinite ease-in-out;
}

.dot {
  animation: pulse 1.5s infinite ease-in-out;
  display: inline-block;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes fadeout {
  to { opacity: 0; visibility: hidden; }
}


#campfire {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.flame {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff9900, #ff3300);
  animation: riseFlame 3s linear infinite;
  opacity: 0.7;
}

@keyframes riseFlame {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}


#loader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.socials {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSocials 1.8s ease-in-out forwards;
  animation-delay: 3.5s;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@keyframes fadeUpSocials {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
