/* AirSync Product Page Styles*/

body {
  &:not(:has(.airsync-privacy)){
    background-image: url('https://images.unsplash.com/photo-1629131726692-1accd0c53ce0?q=80&w=3870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  @media (prefers-color-scheme: dark) {
  background-image: url('https://images.unsplash.com/photo-1537498425277-c283d32ef9db?q=80&w=3878&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  }
}
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  /* min-height: 60vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content {
  padding: 1.5rem;
}

.hero-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 3vh;
  z-index: -1;
  color: var(--primary-color);
}

.hero-title {
  font-family: "sugar-magic", sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  top: 10vh;
  z-index: -1;
  font-size: 20vw;
  line-height: 0.9;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  color: var(--text-color);

  @media screen and (max-width: 500px) {
    font-size: 2.5rem;
  }
}

#hero-sub-section {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2vh;
  z-index: 1000;
}

.container p {
  overflow: auto;
  text-wrap: normal;
  white-space: wrap;
  text-align: left;
}

.hero-subtitle {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center !important;
  font-size: 1.2rem;
  color: var(--blue);
  margin: 1.5rem auto 1rem auto;
  font-weight: 400;
  opacity: 0.9;
}

.hero-description {
  text-align: center !important;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 1rem auto 2rem auto;
  opacity: 0.9;
  font-weight: 500;
  background: var(--background-color-tr);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-out);
  border: 1px solid var(--primary-color);
  backdrop-filter: blur(var(--blur));
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-content {
    padding: 1rem;
  }
}

/* Section spacing */
section {
  margin: 3rem 0;
}

/* Container override for AirSync page */
.container {
  max-width: calc(100vw - 2em);
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  margin-top: 40vh;
}

.airsync-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.airsync-privacy h3, .airsync-privacy h2{
  background-color: transparent !important;
  padding: 0 !important;
}

#privacy-policy {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  a{
  background-color: transparent;
  color: var(--primary-color);
  border: var(--primary-color) 1px solid;
  border-radius: var(--radius-out);
  padding: 0.5rem 1rem;
  }
}