/* Enhanced Header */
.page-header {
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 40, 85, 0.9)), url('https://images.unsplash.com/photo-1576086213369-97a306d36557?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    margin-bottom: 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 30px;
}

.breadcrumb-item, .breadcrumb-item a {
    color: white;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Venue Map Styling */
.venue-map iframe {
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

/* Info Card Styling */
.venue-info-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  padding: 2rem 2rem 1.5rem 2rem;
  margin-bottom: 2rem;
}
.footer-logo{
  filter: brightness(0) invert(1);

}
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary, #0056b3);
  margin-bottom: 1.5rem;
}

.venue-address {
  font-size: 1.05rem;
  color: #333;
  background: #f8fafc;
  border-left: 4px solid var(--primary, #0056b3);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

/* Travel Tips Styling */
.venue-tips {
  background: #f6fafd;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(44, 62, 80, 0.06);
  margin-top: 1.5rem;
}

.venue-tips h5 {
  color: var(--primary, #0056b3);
  font-weight: 600;
}

@media (max-width: 768px) {
  .venue-info-card, .venue-tips {
    padding: 1rem;
  }
  .section-heading {
    font-size: 1.3rem;
  }
  .venue-map iframe {
    height: 220px;
  }
}