/* Hero Section */
.hero {
    position: relative;
    background: url('../images/colosseum-hero.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  /* Add a dim overlay */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
    z-index: 1; /* Ensures the overlay is above the background */
  }
  
  .hero div {
    position: relative; /* Ensures text stays above the overlay */
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .hero .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    font-size: 1rem;
  }
  
  .cta-btn:hover {
    background-color: #0056b3;
  }
  
  
  /* Footer */
  footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  
  footer a {
    color: #ddd;
  }
  
  footer a:hover {
    color: #fff;
  }
  

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .page-header .lead {
    font-size: 1.25rem;
    color: #666;
  }
  
  /* Images */
  .img-fluid {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-height: 300px; /* Set max-height to limit image size */
    object-fit: cover; /* Ensures the image is cropped, not squished */
    width: 100%; /* Ensures full width for responsiveness */
  }
  
  /* List Styling */
  ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }

  /* Navbar */
  .offcanvas-header {
    background-color: #f8f9fa;
  }
  
  .offcanvas-title {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar-toggler {
    border-color: transparent;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  .offcanvas-body {
    padding: 1.5rem;
  }

  
a {
    text-decoration: none!important; /* Removes underline */
    color: #8B008B; /* Dark pink color */
}
  