body { background-color: #121212; color: #ffffff; }
input, textarea, select { background-color: #ffffff; color: #000; }
footer { color: #cccccc; }

.navbar .nav-link,
.navbar .navbar-brand,
.navbar .bi {
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
}


/* Make the hero section fill the viewport on the homepage */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Make sure the hero image covers the space nicely */
.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: make the hero text more readable */
.hero-container .text-white {
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* Make navbar fixed so it floats while scrolling */
#mainNavbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    
    transition: background-color 0.3s ease;
}

/* When scrolled, background becomes dark */
#mainNavbar.scrolled {
    background-color: rgba(0,0,0,0.95);
}