body{
    background-color: rgb(8, 8, 8);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    align-items: center;
}

h1 {
    margin-top: 20px;
    font-size: 2.5em;
}


header {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header img{
    max-width: 100%;
    max-height: 100px;
    border-radius: 5px;
}

.light-show-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
}

.light-show {
    background: #242424;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.light-show:hover {
    transform: translateY(-15px);
}

.light-show img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.light-show-info {
    padding: 15px;
    text-align: left;
}

.light-show-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

light-show-info p {
    font-size: 0.9rem;
}

a{
    text-decoration: none;
    color: white;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer {
    background-color: rgba(0, 0, 0, 0.24);
    color: gray;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
    left: 0;
}
footer a {
    color: gray;
    text-decoration: underline;
}

.head-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-image img{
    max-width: 100%;
    max-height: 300px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .light-show {
        margin: 0 10px;
    }

    .light-show img {
        height: 200px;
    }

    .light-show-info {
        padding: 10px;
    }

    .light-show-info h3 {
        font-size: 1rem;
    }

    .light-show-info p {
        font-size: 0.8rem;
    }
}

.show-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: white;
}

.show-page h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.pricing {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(124, 124, 124, 0.1);
}

.pricing h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.pricing ul {
    list-style: none;
    padding: 0;
}

.pricing ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.date{
    color: rgb(209, 45, 45);
    font-weight: bold;
}