/* Preloader */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 100px;
}

/* Social Media Bar */
.social-media-bar {
    height: 1cm;
    background-color: #FF0000;
    text-align: center;
    padding: 5px 0;
}

.social-link {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.social-link:hover {
    color: red;
}

/* Navigation Bar */
.navbar {
    transition: background-color 0.5s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
}

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

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

/* Transparent Navbar on Scroll */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Section with Overlay */
.my-section {
    position: relative;
    background: linear-gradient(rgba(0, 128, 0, 0.7), rgba(255, 0, 0, 0.7)), url('background.jpg') no-repeat center center/cover;
    padding: 50px 0;
    color: white;
}

/* Text Section with Transparent Background Image */
.text-section {
    position: relative;
    background: url('SAXONWOLD-PRIMARY-SUPPORTS-SOUTH-AFRICAN-SPORT-01.jpg') no-repeat center center/cover;
    padding: 50px;
    border-radius: 15px;
}

.text-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.text-section h1 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.text-section p {
    color: #ddd;
    font-size: 1.2rem;
}

/* Carousel Customization */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: green;
}

.carousel-indicators li {
    background-color: red;
}
