:root {
  --common-padding: 40px;
  --content-gap: 24px;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-family: 'Raleway', sans-serif;
  color: white;
  background: #000;
  overflow: hidden;
}

.coming-soon {
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 60PX;
  letter-spacing: 2px;
}

.amanara {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url('/assets/bg.avif');
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  min-height: 100vh;      /* Ensures the body takes full viewport height */
  margin: 0;    
  gap: var(--content-gap);
  animation: zoomOut 1s ease-out forwards;
}

.amanara__header {
  padding: 0px var(--common-padding);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
  text-align: center;
  align-items: center;
  display: block
}

.amanara__logo {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  animation: slideUp 1s ease-out 0.5s both;
}

.amanara__logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .amanara__logo img {
    max-width: 180px;
  }
}

.amanara__coordinates {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  display: block;
  animation: slideUp 1s ease-out 0.5s both;
  letter-spacing: 1px;
  padding-top: 80px;
}

.amanara__content {
  display: block;
  text-align: center;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px var(--common-padding) 0px var(--common-padding);
}

.amanara__content__left {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
  align-items: start;
}

.amanara__description {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
  max-width: 500px;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: 300;
  animation: slideUp 1s ease-out 0.9s both;
  text-align: center;
}

.amanara__button {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  animation: slideUp 1s ease-out 1.1s both;
}
.amanara__button:hover {
  background: white;
  color: #000;
  border: 1px solid #000;
  transition: all 0.25s ease-in-out;
}

.amanara__opening {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  text-align: right;
  animation: slideUp 1s ease-out 1.3s both;
  white-space: nowrap;
}


@keyframes zoomOut {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

