/* Carousel Styles */
.carousel {
    max-width: auto;
    margin: 0 auto;
}

.carousel-inner img {
    height: auto;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black; /* Makes the buttons have a black background */
    border-radius: 80%; /* Makes them circular */
    width: 30px; /* Increase size */
    height: 30px;
    opacity: 0.3; /* Makes them slightly transparent */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    opacity: 1; /* Fully visible on hover */
    transform: scale(1.5); /* Slightly increases the size on hover */
    background-color: #171717; /* Changes background to a darker shade */
}

.carousel-control-prev,
.carousel-control-next {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); /* Adds a shadow effect for better visibility */
    z-index: 10; /* Ensures the buttons appear above the images */
}

/* Overlay content styling */
.carousel-caption {
    position: absolute;
    top: 5px;
    left: 15%;
    max-width: 500px;
    z-index: 1;
    text-align: center;
    padding-top: 0;
}

.carousel-caption .btn-primary {
    background-color: #e36d12d8;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.carousel-caption .btn-primary:hover {
    background-color: #040404;
}

p.lead {
    line-height: 4;
}

/* Servers Banner Styles */
.servers-banner {
    height: auto; /* Set a fixed height */
    padding: 0; /* Reduce padding to shrink the banner vertically */
}

.servers-banner .info {
    padding-top: 10px;
    font-size: 16px;
    color: #343a40;
}

.servers-banner h1 {
    font-size: 40px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 20px;
}

.servers-banner .features {
    list-style: none;
    padding: 0;
    margin: 10px;
}

.servers-banner .features li {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.servers-banner .features li::before {
    content: "✔";
    color: #28a745;
    font-size: 18px;
    margin-right: 10px;
}

.servers-banner .btn-primary {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

.servers-banner .btn-primary:hover {
    background-color: #218838;
    color: #fff;
}
