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

html, body {
  height: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #fff;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero */
.hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: brightness(0.45) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

.logo {
  max-width: 380px;
  width: 80vw;
  height: auto;
}

.divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 2rem auto;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.instagram-link {
  display: inline-block;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-link:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Footer */
footer {
  margin-top: 2.5rem;
}

footer,
footer a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .logo {
    max-width: 260px;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }

  .divider {
    margin: 1.5rem auto;
  }
}
