body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
  }

  .hero {
    background-image: url('images/headerImage.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
  }

  .carousel-item img {
    object-fit: cover;
    height: 500px;
    width: 100%;
  }

  .gallery-thumbs {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .gallery-thumbs img {
    height: 100px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
  }

  .gallery-thumbs img:hover {
    transform: scale(1.05);
  }

  .modal-img {
    width: 100%;
    height: auto;
  }

  .navbar {
    background-color: rgba(0, 0, 0, 0.7);
  }