/* ─── Fonts ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Alfabet';
  src: url('../fonts/Alfabet-thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Alfabet';
  src: url('../fonts/Alfabet-extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Alfabet';
  src: url('../fonts/Alfabet-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Alfabet';
  src: url('../fonts/Alfabet-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Alfabet', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
}

/* ─── Background ─────────────────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  background-image: url('../assets/Img_Background_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0;
}

@media (max-width: 768px) {
  .bg {
    background-position: 20% center;
  }
}

/* ─── Overlay ────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

/* ─── Container ──────────────────────────────────────────── */
.container {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  padding: 2rem;
}

/* ─── Coming Soon ────────────────────────────────────────── */
.coming-soon {
  font-weight: 200;
  font-size: clamp(0.8rem, 1.6vw, 1.1rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* ─── Logo ───────────────────────────────────────────────── */
.logo {
  width: clamp(260px, 46vw, 620px);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

/* ─── Instagram ──────────────────────────────────────────── */
.instagram-link {
  position: fixed;
  bottom: 3.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  font-weight: 300;
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0;
  animation: fadeIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.instagram-link:hover {
  color: rgba(255,255,255,0.95);
}

.instagram-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .logo, .coming-soon, .instagram-link {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
