
*, p {
    font-family: 'Montserrat'
}

.h1 {color: green;}

.span {font-size: 1.1em;}
.nav-item {
    font-size: 1.2em;
}

.nav-separated .nav-item {
    position: relative;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

.nav-separated .nav-item:first-child {
    margin-left: 0;
    padding-left: 0;
}

.nav-separated .nav-item:not(:first-child)::before {
    content: '/';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

@media (max-width: 991.98px) {
    .navbar-collapse.show {
    background-color: #e3f2fd; /* your desired background */
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    }
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
    }

    @media (min-width: 768px) {
    .carousel-item img {
        height: 500px;
    }
    }

    @media (min-width: 992px) {
    .carousel-item img {
        height: 600px;
    }
}



.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
}

.carousel-caption h5,
.carousel-caption p {
    color: #fff;
}

/* CHANGE THE BACKGROUND COLOR WHEN EACH ITEMS IN THE NAVBAR IS HOVERED */
.navbar-nav .nav-link {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border-radius: 5px; /* Rounded corners for better look */
    padding: 8px 12px;  /* Optional: add some padding */
}

.navbar-nav .nav-link:hover {
    background-color:rgb(20, 249, 100); /* Bootstrap primary blue or any color you prefer */
    color: white !important;    /* Make text white on hover */
    transform: scale(1.05);     /* Slight zoom effect */
    text-decoration: none;      /* Remove underline on hover */
}


.text-left {
    text-align: left;
}

.me-3 {
    margin-right: 1rem;
}



/* UPCOMING EVENTS DATE OVERLAY BOX */
.date-overlay {
position: absolute;
top: 10px;
left: 0px;
background-color: rgba(127, 255, 0, 0.7); /* light background with slight transparency */
padding: 5px 8px;
text-align: center;
width: 100px;

font-family: Arial, sans-serif;
}

.date-overlay .day {
font-size: 1.3rem;
font-weight: bold;
line-height: 1;
}

.date-overlay .month-year {
font-size: 1rem;
line-height: 1;
color: #333;
}

.card-img-wrapper {
position: relative;
}


/* FOOTER */
footer {
      background-color: #f8f9fa;
      padding: 40px 0 20px 0;
    }
    .footer-icon {
      font-size: 1.2rem;
      margin-right: 10px;
      color: #333;
    }
    .footer-icon:hover {
      color: #007bff;
    }
    .footer-heading {
      font-weight: bold;
      margin-bottom: 1rem;
    }