.hero 
{
  position: relative;
  height: 100vh;
  background-image: url(../../../Images/image0.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);

}
  
.hero::before 
{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
  
.hero-content 
{
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  
}
  
.hero-title 
{
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  
}
  
.hero-subtitle 
{
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  
}

.seasonal-collection
{
  padding-top: 10px;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  
}

