/* CSS Document */


.hero-buttons-container{
}


.hero-button{

display:inline-block;
background-color:#FFFFFF;
color:#000;
border-radius:10px;
padding:10px;
padding-left:20px;
padding-right:20px;
margin:10px;
text-decoration:none;

transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* smooth hover effect */

position: relative;
z-index: 2;
}

.hero-button:hover {
  color:#000;
  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.6); /* gentle white glow */
  transform: translateY(-1px); /* optional: small lift effect */
}


.hero {
  position: relative;
  overflow: hidden;
  max-height: 600px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

/* background container */
.hero-bg-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero-front{
position:relative;
z-index:1;
}


.hero img.hero-texts {
  width: 100%;           /* fill available space */
  max-width: 700px;      /* won't grow beyond 700px */
  margin: 0 2rem;        /* horizontal margin on smaller screens */
  position: relative;
  z-index: 2;
  margin-bottom:20px;
}