.jumbotron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  position: relative;
  height: 91.70vh;
  max-width: 100%;
}

/* Typography - Base styles */
.title {
  font-size: 28rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Responsive Design */

/* Large screens (1200px and up) */
@media screen and (min-width: 1200px) {
  .jumbotron {
    padding: 4rem 2rem;
    min-height: 70vh;
  }
  
  .container {
    height: 91.70vh;
  }
  
  .title {
    font-size: 3rem;
    text-shadow: 4px 4px 12px rgb(206, 181, 41);
  }
  
  .title {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
}

/* Medium screens (768px to 1199px) - Tablets */
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .jumbotron {
    padding: 3rem 1.5rem;
    min-height: 60vh;
  }
  
  .container {
    height: 80vh;
  }
  
  .title {
    font-size: 2.2rem;
    text-shadow: 3px 3px 10px rgb(206, 181, 41);
  }
  
  .title {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }
}

/* Small screens (481px to 767px) - Large phones/small tablets */
@media screen and (max-width: 767px) and (min-width: 481px) {
  .jumbotron {
    padding: 2.5rem 1rem;
    min-height: 50vh;
    text-align: center;
  }
  
  .container {
    height: 70vh;
    padding: 0 1rem;
  }
  
  .title {
    font-size: 2.8rem;
    text-shadow: 2px 2px 8px rgb(206, 181, 41);
    margin-bottom: 1.5rem;
  }
  
  .title {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
  }
}

/* Mobile screens (480px and below) */
@media screen and (max-width: 480px) {
  .jumbotron {
    padding: 2rem 0.75rem;
    min-height: 45vh;
    text-align: center;
  }
  
  .container {
    height: 60vh;
    padding: 0 0.5rem;
  }
  
  .title {
    font-size: 2.2rem;
    text-shadow: 2px 2px 6px rgb(206, 181, 41);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .title {
    font-size: 1rem;
    font-weight: 400;
    max-width: 320px;
    margin: 0 auto 1rem;
    line-height: 1.6;
  }
  
  /* Adjust button if you have one */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Extra small screens (360px and below) */
@media screen and (max-width: 360px) {
  .jumbotron {
    padding: 1.5rem 0.5rem;
    min-height: 40vh;
  }
  
  .container {
    height: 50vh;
    padding: 0 0.25rem;
  }
  
  .title {
    font-size: 1.8rem;
    text-shadow: 1px 1px 4px rgb(206, 181, 41);
    margin-bottom: 0.75rem;
  }
  
  .title {
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto 0.75rem;
    line-height: 1.7;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
    max-width: 200px;
  }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .jumbotron {
    min-height: 80vh;
    padding: 1rem;
  }
  
  .container {
    height: 80vh;
  }
  
  .title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* Additional utility classes for better mobile experience */
@media screen and (max-width: 767px) {
  .jumbotron .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Ensure text remains readable */
  .title, .title {
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* High DPI/Retina display adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .title {
    text-shadow: 3px 3px 10px rgb(206, 181, 41), 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
}