/* Sinkr Coming Soon - Reusing original theme styles */

:root {
  /* Exact colors from the original theme */
  --sinkr-blue: #0172FF;
  --sinkr-yellow: #ffbd00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--sinkr-blue);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Original Hero Background Image positioned exactly as in the theme */
.hero-bg {
  position: absolute;
  bottom: 0;
  right: -15vw;
  width: 1071px;
  height: 750px;
  background: url('../demos/saas/images/hero-bg.png') no-repeat bottom right / contain;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.container {
  max-width: 800px;
  text-align: center;
  width: 100%;
}

.logo-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Matching the original theme's display-5 typography */
.hero-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--sinkr-yellow);
}

/* Matching the original theme's hero-para typography */
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-bg {
    right: -30vw;
    opacity: 0.15;
  }
  .logo {
    width: 220px;
    margin-bottom: 2rem;
  }
}