.container {
    padding-bottom: 100px;
}

.jumbotron {
    background-image: url('../images/grud.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: transparent;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.carousel-img {
    height: 250px;
}

@media (min-width: 768px) {
    .carousel-img {
        height: 450px;
    }
}

.custom-footer {
    background-color: #1a1a1a; /* Dark charcoal */
    color: #f8f9fa;
    padding: 2rem 0;
    margin-top: auto; /* Ensures it stays at bottom in flexbox */
    border-top: 4px solid #0056b3; /* Optional: A nice blue accent line */
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Ensure the wrapper grows to fill empty screen space */
.flex-grow-1 {
    flex-grow: 1;
}