/* ==========================================================================
   Valense — Waiting Page
   Design: Dark navy + gold (#C5AC8E) brand palette
   ========================================================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  background-color: #0d1f35;
}

/* ---- Page Wrapper ---- */
.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* ---- Background ---- */
.bg-image {
  position: absolute;
  inset: 0;
  background-image: url('Assets/BG.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 60%,
    rgba(13, 31, 53, 0.6) 0%,
    rgba(13, 31, 53, 0.2) 60%,
    transparent 100%
  );
  z-index: 1;
}

/* ---- Content ---- */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 80px 24px 40px;
}

/* ---- Icon (top V mark) ---- */
.icon-wrapper {
  margin-bottom: 330px;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.icon-wrapper img {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(197, 172, 142, 0.15));
}

/* ---- Logo ---- */
.logo-wrapper {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.logo-img {
  width: clamp(260px, 30vw, 400px);
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(197, 172, 142, 0.1));
}

/* ---- Tagline ---- */
.tagline-area {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.tagline-line img {
  width: 20px;
  height: auto;
  opacity: 0.7;
}

.tagline-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.4;
}

.tagline-top {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #f1ede7;
}

.tagline-bottom {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  color: #C5AC8E;
}

/* ---- Actions ---- */
.actions-area {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.social-link:hover {
  transform: scale(1.12);
  opacity: 1;
}

.social-link:hover img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(15%) saturate(700%) hue-rotate(350deg) brightness(90%) contrast(90%);
}

.social-link img {
  width: 26px;
  height: 26px;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f1ede7;
  background: linear-gradient(135deg, #d4be9e 0%, #C5AC8E 50%, #b89c7a 100%);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(197, 172, 142, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 172, 142, 0.35);
  background: linear-gradient(135deg, #dcc8a8 0%, #d0b898 50%, #c4a888 100%);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(197, 172, 142, 0.2);
}

/* ---- Animations ---- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .icon-wrapper {
    margin-bottom: 100px;
  }

  .logo-img {
    width: clamp(200px, 65vw, 320px);
  }

  .tagline-area {
    gap: 14px;
    margin-bottom: 28px;
  }

  .tagline-line img {
    width: 16px;
  }

  .actions-area {
    flex-direction: column;
    gap: 24px;
  }

  .cta-button {
    padding: 14px 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .icon-wrapper {
    margin-bottom: 60px;
  }

  .icon-wrapper img {
    width: 32px;
  }

  .logo-img {
    width: clamp(180px, 70vw, 280px);
  }

  .tagline-top {
    font-size: 11px;
  }

  .tagline-bottom {
    font-size: 13px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 13px;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .icon-wrapper,
  .logo-wrapper,
  .tagline-area,
  .actions-area {
    animation: none;
    opacity: 1;
  }
}
