html {
  scroll-behavior: smooth;
}

/* Navbar styling */
.navbar {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}
#navbar-example .nav-link.active {
    color: #0d6efd !important; /* Bootstrap Blue */
    font-weight: bold;
    border-bottom: 2px solid #0d6efd;
}
/*Video Section*/
.video-hero-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed (80% of screen) */
    overflow: hidden;
    display: flex;
    align-items: center; /* Centers content vertically */
    margin-top: 55px;
}

#myVideo {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* This creates the dark tint so text is readable */
.hero-overlay {
    position: relative;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
    z-index: 2;
    margin-top: 200px;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding-left: 10%; /* Matches the left-aligned look of your image */
    text-align: left;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Serif', Georgia, 'Times New Roman', serif; /* Matching the header style */
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}
