/* New Hero Section Styles */
.hero-new {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../img/cooling-sheets-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-new__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hero-new__content {
  padding: 40px 0;
  max-width: 550px;
}

.hero-new__title {
  font-size: 75px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #003057;
  font-family: inherit;
  opacity: 0;
  animation: heroFadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-new__subtitle {
  font-size: 22px;
  color: #003057;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
  animation: heroFadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-new__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: max-content;
  opacity: 0;
  animation: heroFadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-new__btn {
  display: inline-block;
  padding: 0 40px;
  height: 60px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-new__btn--primary {
  background-color: white;
  color: #003057;
  border-color: white;
}

.hero-new__btn--primary:hover {
  background-color: #f8f9fa;
  border-color: #003057;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 48, 87, 0.1);
}

.hero-new__btn--secondary {
  background-color: #DEE6ED;
  color: #003057;
  border-color: #DEE6ED;
}

.hero-new__btn--secondary:hover {
  background-color: #d0dae3;
  border-color: #003057;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 48, 87, 0.1);
}

/* Image is now background, no separate image element needed */

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-new__container {
    gap: 30px;
    padding: 0 15px;
  }
  
  .hero-new__title {
    font-size: 3rem;
  }
  
  .hero-new {
    min-height: 450px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-new {
    margin: 10px 10px 0;
    border-radius: 10px;
    min-height: 60vh;
    background-image: url('../img/cooling-sheets-hero-mobile.png');
    background-position: center;
  }
  
  .hero-new__container {
    flex-direction: column;
    justify-content: start;
    padding: 30px 20px;
    max-width: none;
    min-height: 60vh;
  }
  
  .hero-new__content {
    padding: 0;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-new__title {
    font-size: 44px;
    margin-bottom: 12px;
  }
  
  .hero-new__subtitle {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding: 0 30px;
  }
  
  .hero-new__buttons {
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  
  .hero-new__btn {
    padding: 0 15px;
    height: 60px;
    border-radius: 100px;
    font-size: 18px;
    white-space: nowrap;
    width: fit-content;
    margin: 0 auto;
  }
}


/* Hide original hero */
.hero {
  display: none;
}

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