
    /* General Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        background-color: #fff;
        color: #000;
        text-align: center;
    }

    header {
        padding: 4px;
        background-color: #000;
        color: #fff;
    }

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px; /* Add spacing between the logo and text */
    font-size: 1.3rem;
    letter-spacing: 0.57px;
    color: #fff;
}
@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
        letter-spacing: 3px;
        color: #fff;
         display: flex;
        align-items: center;
        gap: 5px; /* Add spacing between the logo and text */
    }

    .logo-image {
        width: 150px; /* Adjust size as needed */
        height: 125px; /* Adjust size as needed */
        object-fit: contain; /* Ensure the logo maintains its aspect ratio */
    }
    #text {
        align-self: center;
        object-fit :fill;
        width: 200px;
        content: url(../img/text-s.png);
    }
}

#text {
    align-self: center;
    object-fit :fill;
    width: 800px;
    content: url(../img/text2.png);
}

.logo-image {
    width: 57px; /* Adjust size as needed */
    height: 57px; /* Adjust size as needed */
    object-fit: contain; /* Ensure the logo maintains its aspect ratio */
}

    main {
        margin: 20px 0;
    }

    /* Artists Section */
    .artist {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin: 20px auto;
        background-color: #000;
        color: #fff;
        max-width: 800px;
        padding: 20px;

    }

    .artist-intro {
        width: 150px;
        height: auto;
        margin-right: 20px;
        align-self: center;
    }

    .artist-info {
        flex: 1;
        max-width: 600px;
        text-align: left;
        position: relative;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, height 0.5s ease-in-out;
        max-height: 80px;
    }

    .artist-info p {
        font-size: 1.1rem;
        margin-bottom: 0.5em;
    }

    .artist-info .full-desc {
        display: none;
    }

    .artist-info:hover {
        max-height: none;
        height: auto;
    }

    .artist-info:hover .short-desc {
        display: none;
    }

    .artist-info:hover .full-desc {
        display: block;
    }

    footer {
        padding: 20px;
        background-color: #000;
        color: #fff;
        text-align: center;
    }

    /* Carousel Section */
    .carousel {
        margin: 50px 0;
    }

    .carousel-container {
        display: flex;
        justify-content: space-between;
        overflow: hidden;
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 0 20px;
    }

    .carousel-container img {
        width: calc(25% - 10px);
        height: auto;
        transition: transform 0.5s ease-in-out;
        object-fit: cover;

        margin: 0 10px;
    }

    .carousel-container img:hover {
        transform: scale(1.05);
    }
   /* Medium devices: 2 images per row */
@media (max-width: 1024px) {
    .carousel-container img {
        width: calc(60% - 10px); /* Two images */
        margin: 0 5px;
    }
}
/* Small devices: 1 full-width image */
@media (max-width: 600px) {
    .carousel-container img {
        width: 100%; /* One image spanning full width */
        margin: 10px 0; /* Space above/below */
    }
}

/* Popup overlay */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

/* Image inside popup */
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Navigation arrows */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

    .page-container {
        flex: 1; /* Takes remaining vertical space */
        display: flex;
        flex-direction: column;
        min-height: 75vh;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
