:root {
    --card-bg-color: black;
    --dark-red: #a10505;
    --card-hover-shadow-color: rgba(226, 7, 7, 0.3);
    --arrow-color: white;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.883);
    /* Set background color to black for contrast */
}

/* Ensure navbar is over the image */

.navbar {
    position: fixed;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;  /* Keeps the navbar on top of other elements */
    background-color: rgba(0, 0, 0, 0.883);  /* Optional: Set background color for contrast */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Optional: Add shadow for effect */
}

#images{
    display: grid;
}


.navbar-toggler {
    border-color: white; /* Ensure toggler is visible */
}

.navbar-toggler:focus {
    box-shadow: none; /* Remove focus border */
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #a10505 !important;
}

.navbar-brand {
    color: white !important;
}


.container-fluid-gallery {
    background-color: rgba(0, 0, 0, 0.883);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjust size for larger images */
    gap: 0;
    /* Remove spaces between images */
}

.container-fluid-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-fluid-gallery img:hover {
    transform: scale(2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    object-fit: fil;
}

#video{
    display: none;
}

.toggle-bar{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit {
    background-color: var(--dark-red);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-submit:hover {
    background-color: #d23131;
    color: white;
}