body {
      overflow-x: hidden;
    }
.banner {
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%),
                url('/images/caroselmusic.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    height: 400px;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.homePage_hero {
    text-shadow: 2px 2px 0 #000;/* Shadow bottom-right */
}

.content-section {
    padding: 50px 0;
}

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-logo {
    height: 40px; /* Adjust this value to match your desired logo height */
    width: auto;
    max-width: 200px; /* Maximum width of the logo */
    object-fit: contain; /* Maintains aspect ratio */
}

/* Optional: Add hover effect to the logo */
.navbar-brand:hover .navbar-logo {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Festival Page Styles */

      /* Row styling */
    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    /* Column styling */
    .col {
        display: flex;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    /* Card link wrapper */
    .card-link {
        text-decoration: none;
        color: inherit;
        width: 100%;
        display: flex;  /* This is crucial for equal heights */
    }

    /* Card styling */
    .card {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;      /* This ensures full height */
        background: #fff;
        transition: all 0.3s ease;
    }

  .card-img-wrapper {
    position: relative;
    overflow: hidden;
    
    height: 200px;

    /* Make this a flex container for centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-img-center {
    width: 75%;
    height: auto;
    /* Remove any flex styling from img itself */
    margin: auto;
}

    /* Card body */
    .card-body {
        flex: 1;          /* This allows the body to fill remaining space */
        display: flex;
        flex-direction: column; 
        padding: 1.25rem;
    }

    .card-title {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
        font-weight: 500;
    }

    .card-text {
        margin-bottom: 0;
        flex-grow: 1;     /* Allows text area to grow */
    }
/* Login Page Styles */
    .login-card {
        border: none;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .login-card-header {
        background-color: #0d6efd;
        color: white;
        border-bottom: none;
    }
    .password-container {
        position: relative;
    }
    .toggle-password {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }
    .btn-primary {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }
    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

   /* Sidebar menu fixed for desktop */
    .sidebar-md {
      width: 220px;
      height: 100%;
      position: fixed;
      top: 66px;
      left: 0;
      background-color: #f8f9fa;
      padding-top: 1rem;
      border-right: 1px solid #dee2e6;
      z-index: 1020;
    }

/* Application Page Styles */

    .application-page .card-body {
    flex-direction: row !important;
}

/* Give the footer a higher Zindex than the sidebar so that it appears above it */
.footer-container {
    z-index: 1500; 
} 

/* Optional: Adjust logo size for mobile devices */
@media (max-width: 768px) {
    .navbar-logo {
        height: 30px; /* Smaller logo on mobile */
    }
}
/* Adjust content block on logged in pages to account for secondary sideBar Nav*/
@media (min-width: 768px) {
      .loggedin-content {
        margin-left: 220px;
        padding: 2rem;
      }
    }
