
.hero {
    background-image:url("../assets/background-image.jpg");
    background-size:cover;
    background-position: center;
    background-attachment:fixed;
    background-color: rgba(255, 255, 255, 0.603); 
    background-blend-mode: multiply;  
    height:100vh;
    display:flex;
    justify-content: start;
    align-items:center;
    color:white;
    text-shadow: 1px 1px 2px black;
    
}

.image-container {
    width:30%;
}

 .hero-image {
  width:1000px;
  }

.button-container {
     
  display: flex;
  align-items: center;      
  justify-content: start; 
  gap: 24px;                
  height: 200px;           
}


.logo {
    width:150px;
}



.text-container {
    width:50%;
    padding:50px;
}


.text-container, h2, p {
  font-family: "Roboto", sans-serif;
  text-align:left;

}

.cta-button{
     font-family: "Sour Gummy", sans-serif;
    background-color:#15bb23;
    color:white;
    border-radius:20px;
    padding:20px;
    margin-left:100px;
    font-size:18px;
    font-weight:bold;
    width:250px;

}

.cta-button:hover {
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);

    
}

.text-container h2 {
    font-size:60px;
}

.text-container p {
    font-family: "Roboto", sans-serif;
    color: #1A2D7E;
    font-size:18px;
    font-weight:bold;
}



/* linear-gradient(90deg, #4e9af1 0%, #22223b 100%); */



/* Mobile responsive styling rules  */


@media only screen and (max-width: 768px) {
  /* Hero Section Adjustments */
  .hero {
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    background-attachment: scroll;
    background-color: rgba(255, 255, 255, 0.8);
  }
   .hero-image {
   display:none;
  }

  /* Text Container Adjustments */
  .text-container {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .text-container h2 {
    font-size: 32px;
    text-align: center;
  }

  .text-container p {
    font-size: 16px;
    text-align: center;
  }

  /* Image Container Adjustments */
  .image-container {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  /* Button Container Adjustments */
  .button-container {
    flex-direction: column;
    gap: 12px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cta-button {
    margin-left: 0;
    width: 80%;
    max-width: 250px;
    font-size: 16px;
    padding: 16px;
  }

  .logo {
    width: 120px;
  }
}


@media only screen and (max-width: 480px) {
  .text-container h2 {
    font-size: 28px;
  }
  .text-container p {
    font-size: 14px;
  }
  .cta-button {
    width: 90%;
    font-size: 14px;
    padding: 14px;
  }


  .hero-image {

    width:250px;

  }
}