
body {
    background-color: black;
    /* background-image: url('images/background.jpg');  REMOVED */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.navbar {
    padding-top: 3px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.4); 
    min-height: 100px;
}

.navbar-nav .nav-link {
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 0.9rem;
    letter-spacing: 1px; 
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important; 
    transition: 0.3s; 
}


.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
}

.btn-primary {
    background-color: #ffffff; 
    border-color: #ffffff;
    color: black;
}

.btn-primary:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: black;
}

.navbar-brand img {
    transform: scale(2.7);
    margin-top: 15px;
    transition: transform 0.3s ease-in-out; 
}

#bg-video {
    position: fixed; 
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    z-index: -2; 
    object-fit: cover;
}

 .video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background-color: rgba(0, 0, 0, 0.2); 
    z-index: -1; 
}