body {
    font-family: 'Elza Text', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    overflow-x: hidden;
}

.container {
    display: flex;
}

.menu {
    background: linear-gradient(to bottom, #333, #222);
    color: #fff;
    width: 300px;
    min-width: 300px;
    padding: 40px;
    height: 100vh;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
}


.menu img {
    max-width: 100%;
    height: auto;
}

.artist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding-top: 50px;
}

.artist-info img {
    max-height: 350px;
    width: auto;
    max-width: 100%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.artist-bio {
    width: 900px;
    background: linear-gradient(to right, #f2f2f2, #e0e0e0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.artist-bio h1 {
    text-align: left;
}

.artist-button {
    display: block;
    text-align: center;
    margin: 20px auto;
    width: fit-content;
    padding: 10px 20px;
    background: linear-gradient(to bottom, #0074d9, #0056b3);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.artist-button:hover {
    background: linear-gradient(to bottom, #0056b3, #003D74);
}

.content {
    flex-grow: 1;
    padding: 20px;
    margin-left: 350px; /* Adjust this value as needed */
}

.content .banner {
    width: 900px; 
    margin: 0 auto;
}

.content h1 {
    text-align: center;
    padding-top: 25px;
    padding-bottom: -25px;
}

.gallery {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.gallery-item {
    text-align: center;
    margin: 10px;
    max-width: calc(30% - 20px);
    box-sizing: border-box;
    transition: transform 0.3s; /* Add a transition for smooth scaling */
}

.gallery-item:hover {
    transform: scale(1.02); /* Scale up by 5% on hover */
}

/* Add this selector for the Buy Now button to scale properly */
.gallery-item:hover .buy-button {
    transform: scale(1);
}


.gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery-item h2 {
    margin: 10px 0;
}

.buy-button {
    display: inline-block; /* Set the initial display to inline-block */
    background-color: #bbb;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.buy-button:hover {
    display: inline-block; /* Maintain display as inline-block on hover */
    background-color: #737373;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    max-width: 100%;
    max-height: 80%;
}

.close {
    position: absolute;
    right: 100px;
    top: 50px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

.gallery-item-details {
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.signature {
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.menu ul {
    list-style: none;
    padding: 0;
    font-size: large;
    margin-top: 50px;
}

.menu ul li {
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 10px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    transition: font-size 0.4s;
    font-size: 20px;
}

.menu ul li a.selected {
    color: #fff;
    text-decoration: underline;
}

.menu ul li a:hover {
    font-size: 1.2em;
    color: #fff;
    text-decoration: underline;
}

.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    width: 800px;
    height: 700px;
    padding-top: 50px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: center;
    align-items: center;
    height: 90%;
}

.carousel img {
    max-width: 100%;
    max-height: 100%;
}

.carousel-navigation {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.carousel:hover .prev,
.carousel:hover .next {
    opacity: 1;
    transition: opacity 0.3s;
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.active {
    background-color: #717171;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    font-size: large;
}

.content .banner {
        width: 90%; 
        margin: 0 auto;
}

footer {
    background: linear-gradient(to bottom, #737373, #444444);
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
    margin-left: 150px; /* Adjust this value as needed */

}

footer div {
    max-width: fit-content;
    margin: 0 auto;
}

footer a {
    color: #fff;
    text-decoration: underline;
}


@media screen and (max-width: 768px){
    body {
        font-family: 'Elza Text', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f2f2f2;
    }
    
    .container {
        display: flex;
        flex-direction: column;
    }
    
    .menu {
        background: linear-gradient(to bottom, #333, #222);
        color: #fff;
        max-width: 100%; /* Take full width on small screens */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        height: fit-content;
        position: relative;
    }
    
    .menu img {
        max-width: 100%;
        height: auto;
    }
    
    .content {
        padding: 20px;
        margin-left: 0;
    }
    
    .content h1 {
        text-align: center;
    }
    
    .gallery {
        padding-top: 50px; /* Adjust spacing as needed */
    }
    
    .artist-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0 auto;
        padding-top: 20px; /* Adjust spacing as needed */
    }
    
    .artist-info img {
        max-height: 350px;
        width: auto;
        max-width: 100%;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }
    
    .artist-bio {
        width: 100%; /* Take full width on small screens */
        padding: 10px; /* Adjust padding as needed */
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    }
    
    .artist-bio h1 {
        text-align: center;
    }
    
    .artist-button {
        display: block;
        text-align: center;
        margin: 10px auto; /* Adjust spacing as needed */
        width: fit-content;
        padding: 10px 20px;
        background: linear-gradient(to bottom, #0074d9, #0056b3);
        color: #fff;
        text-decoration: none;
        border: none;
        border-radius: 4px;
        font-weight: bold;
        transition: background-color 0.3s;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    }
    
    .artist-button:hover {
        background: linear-gradient(to bottom, #0056b3, #003D74);
    }
    
    .gallery-item {
        text-align: center;
        margin: 10px;
        max-width: calc(100% - 20px); /* Take full width and adjust spacing */
        box-sizing: border-box;
        transition: transform 0.3s; /* Add a transition for smooth scaling */
    }
    
    /* Add this selector for the Buy Now button to scale properly */
    .gallery-item:hover .buy-button {
        transform: scale(1);
    }
    
    .gallery-modal {
        display: none;
        position: fixed;
        z-index: 1;
        text-align: center;
        background: rgba(0, 0, 0, 0.9);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 10vh;
    }
    
    .close {
        position: absolute;
        top: 10px; /* Adjust the top value as needed to position the x button */
        right: 20px; /* Adjust the right value as needed to position the x button */
        color: #fff;
        font-size: 50px;
        cursor: pointer;
        z-index: 2; /* Ensure the close button is above the modal */
    }
    
    .gallery-item-details {
        color: #fff;
        position: absolute;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .signature {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .menu ul {
        list-style: none;
        padding: 0;
        font-size: large;
        margin-top: 20px; /* Adjust spacing as needed */
    }
    
    .menu ul li {
        margin-bottom: 10px;
        text-align: center;
        padding-bottom: 10px;
    }
    
    .menu ul li a {
        color: #fff;
        text-decoration: none;
        padding: 10px; /* Adjust padding as needed */
        transition: font-size 0.4s;
        font-size: 16px; /* Adjust font size as needed */
    }
    
    .menu ul li a.selected {
        color: #fff;
        text-decoration: underline;
    }
    
    .menu ul li a:hover {
        font-size: 1.1em; /* Adjust font size as needed */
        color: #fff;
        text-decoration: underline;
    }
    
    .carousel {
        position: relative;
        max-width: 100%;
        overflow: hidden;
        text-align: center;
        margin: 0 auto;
        width: 100%; /* Take full width on small screens */
        padding-top: 50px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease;
        justify-content: center;
        align-items: center;
        height: 60%; /* Adjust height as needed */
    }
    
    .carousel img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .carousel-navigation {
        position: absolute;
        top: 45%;
        left: 0;
        right: 0;
    }
    
    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px; /* Adjust padding as needed */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
        color: white;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .prev {
        left: 10px; /* Adjust spacing as needed */
    }
    
    .next {
        right: 10px; /* Adjust spacing as needed */
    }
    
    .carousel:hover .prev,
    .carousel:hover .next {
        opacity: 1;
        transition: opacity 0.3s;
    }
    
    .carousel-dots {
        text-align: center;
        margin-top: 10px;
        position: relative;
    }
    
    .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px; /* Adjust spacing as needed */
        background-color: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }
    
    .active {
        background-color: #717171;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
        font-size: large;
    }

    .content .banner {
        width: 100%; 
        margin: 0 auto;
    }
    
    footer {
        background: linear-gradient(to bottom, #737373, #444444);
        color: #fff;
        text-align: center;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
        margin-left: 0; /* Reset the margin for footer */
    }
    
    footer div {
        max-width: fit-content;
        margin: 0 auto;
    }
    
    footer a {
        color: #fff;
        text-decoration: underline;
    }
}