/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-align: right;
}

.logo span {
    color: #ff9900; /* Highlight color */
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #ff9900;
}

/* Running poster styles */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 20px;
}

.carousel-images {
    display: flex;
    transition: transform 1s ease;
}

.carousel-item {
    min-width: 100%;
    text-align: center;
    background-color: #ddd;
    padding: 20px;
    border-radius: 5px;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #ff9900;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .logo {
        font-size: 20px;
    }

    nav a {
        font-size: 14px;
    }
}
