/* ==========================================================================
   Lockewise - Hero Section Styles
   Created: June 20, 2025
   ========================================================================== */

.hero {
  background: #000000;
  text-align: center;
  animation: fadeIn 0.8s ease-in;
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 6rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-color);
}

.hero h1 span {
  color: var(--light-blue);
  position: relative;
}

.hero h1 span::after {
  display: none;
}

.hero p {
  margin-bottom: 3rem;
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
}

.hero button {
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.01em;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero button.primary-btn {
  background: var(--primary-gradient);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  background-size: 200% auto;
  background-position: left center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero button.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero button.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.hero button.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
  background-position: right center;
}

.hero button.primary-btn:hover::after {
  opacity: 1;
}

.hero button.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.play-icon {
  transition: transform var(--transition-fast);
  width: 22px;
  height: 22px;
}

.hero button.secondary-btn:hover .play-icon {
  transform: translateX(3px);
}

/* Floating decorator element for hero section */
.floating-decorator {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 10%;
  right: 5%;
  background: none;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
