@charset "utf-8";
/* CSS Document */
  .solid-red-bar {
    background-image: url('assets/img/stage-red-curtain.webp');
    background-size: cover;
    height: 150px;
    width: 100%;
    margin-top: 0;
    position: relative;
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
    display: flex; /* Enable flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }

  .solid-red-bar h1 {
    color: white; /* Or any color you prefer */
    text-align: center; /* Ensure text is centered within the h1 */
    /* Add any other styling you want for the heading, like font-size, font-family, etc. */
    margin: 0; /* Remove default h1 margins if necessary */
      font-weight: 700;
  }
        /* Hero Section */
.hero-section {
    background-image: url('https://maestroenterprisesinternational.ca/assets/img/stage-red-curtain.webp');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.slide.active {
    left: 0;
    opacity: 1;
}

.slide.exit {
    left: -100%;
    opacity: 0;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.slider-dots .dot.active {
    background-color: white;
}

/* Hero Title and Byline */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}

.hero-byline {
    font-size: 2rem;
    margin-top: 10px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-byline {
        font-size: 1.2rem;
    }
}

/* Navigation Bar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.navbar-light .navbar-nav .nav-link {
    color: black;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: red;
}

.btn-getstarted {
    background-color: #d9534f;
    color: gold;
    border: 2px solid gold;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-getstarted:hover {
    background-color: #c9302c;
    color: gold;
}
 /* Donate Button Styling */
    .btn-getstarted {
      background-color: #d9534f;
      color: white;
    }

    .btn-getstarted:hover {
      background-color: #c9302c;
      color: white;
    }




/* Footer */
footer {
    border-top: 3px solid #FFD700;
}

footer a.text-white,
footer .text-white a,
footer a {
    color: #FFD700 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a.text-white:hover,
footer .text-white a:hover,
footer a:hover {
    color: #DAA520 !important;
    text-decoration: underline;
}

.bg-danger-dark {
    background-color: rgba(0, 0, 0, 0.15);
}