/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  height: 100vh;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  overflow: hidden;
  color: #ffffff;
}

/* Background image */
.background {
  position: fixed;
  inset: 0;
  background-image: url('emocija_brend.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: -2;
}

/* Blur overlay */
.overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: linear-gradient(
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.45)
  );
  z-index: -1;
}

/* Content */
.content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

/* Brand name */
.content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.18em;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Subtitle */
.content p {
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Footer */
footer {
  position: absolute;
  bottom: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 12px;
  color: #e0dddd;
}

footer strong {
  font-weight: 500;
}