/* === Base Styles === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  height: 100vh;
  overflow: hidden;
  position: relative;
  color: #f5f5f5;
}

/* === Background Overlays === */
.overlay-logo {
  background: url("../img/logo.jpg") no-repeat center center;
  background-size: 90%;
  opacity: 0.15;
  filter: brightness(1.2) blur(1px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.overlay-texture {
  background: url("../img/texture.png") repeat center center;
  background-size: cover;
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === Main Container === */
.container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* === Animated Letter-by-Letter Typography === */
.company-name span {
  font-family: 'Great Vibes', cursive;
  font-size: 100px;
  color: #f1f0ea;
  letter-spacing: 1px;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0px  0px 6px rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: inline-block;
  transform: scale(0.9) translateY(15px);
  filter: blur(0.01px);
  animation: writeLetter 0.4s ease-out forwards;
}

/* === Other Animated Text === */
.tagline {
  font-size: 1.3rem;
  font-weight: 400;
  color: #d1d1d1;
  margin-bottom: 2.5rem;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 3.8s;
  opacity: 0;
}

.coming-soon {
  font-size: 2rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 4.4s;
  opacity: 0;
}

.contact {
  font-size: 0.95rem;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 5s;
  opacity: 0;
}

.contact a {
  color: #66ccff;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* === Keyframes === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes writeLetter {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
