/* Hero Section */
.hero {
   /* Image + overlay in one shorthand: position + size + repeat */
  background-color:#112;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/Top.png') center / cover no-repeat;

  color: #fff;
  text-align: center;

  /* Responsive spacing */
  padding: 10px;
  padding-top: 2px;
  min-height: min(60vh, 800px);
  display: grid;
  place-items: center; /* centers inner content nicely */
 }
 
.hero p {
  position:relative;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight:bold;
 }

/* Tablets */
@media (max-width: 1024px) {
  .hero p { font-size: 1.8rem; }
}

/* Mobile */
@media (max-width: 600px) {
  .hero p { font-size: 1.2rem;  }
}
 
.hero small {
  display: block;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
  top:5px;
  position:relative;
  max-width: 700px;  margin: auto; margin-bottom:15px;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
}

/* Responsive Image Container */
.responsive-img-container {
  width: 80%;
  max-width: 1150px; /* optional max width */
  margin: auto;
  overflow: hidden;
}

.responsive-img-container img {
  width: 100%;
  height: auto;        /* maintain aspect ratio */
  object-fit: cover;   /* fill container without distortion */
  object-position: center; /* center the image */
  display: block;      /* remove inline spacing */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Soft shadow around image */
}

 .fade-corner {
   text-align: left;  padding:20px; margin:auto;  max-width: 700px;
 }
 
  .banner {
    font-size: 30px; background-image: url('../images/banner.png'); 
    padding:60px;
    background-size: contain; 
    background-position: center; 
    background-repeat: no-repeat; 
  }