/* Style for the section */
#section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#section1 h1 {
	width: 600px;
	margin-top: 200px;
	margin-left: 20%;
	font-weight: 1000;
	font-size: 60px;
	text-align: left;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-content h4 {
	width: 40vw;
	margin-top: 5vh;
	margin-bottom: 5vh;
	margin-left: 10vw;;
	text-align: left;
}

.video-container img {
    width: 300px;
    margin-top: 200px;
}

.video-container {
    text-align: center;
}

.video-container iframe {
    max-width: 600px;
    width: 100%;
    max-height: 600px;
    height: 100%;
}


.image-container {
    display: flex;
    justify-content: center; /* Center horizontally */
}

.artist {
    padding-top: 10px;
    padding-bottom: 10px;
    flex: 0 0 calc(30%); /* Set the width for three items across with spacing */
    text-align: center; /* Center-align the content within each artist div */
    margin-bottom: 20px; /* Add some spacing between each artist div */
}

.artist:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a slight drop shadow */
    transition: box-shadow 0.3s ease; /* Apply a 0.3-second transition effect to the box shadow */
}


.artist img {
    max-width: 100%; /* Ensure images don't exceed their container width */
    max-height: 300px;
}

h3, p {
    margin: 10px 0; /* Add some spacing around headings and paragraphs */
}

p {
    text-align: center;
}

.buy-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button a {
    color: inherit;
    text-decoration: none;
}

.buy-button:hover {
    background-color: #0056b3;
}

/* CSS for fullscreen overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.artist-fullscreen {
    background-color: white;
    max-width: 70vw;
    max-height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.artist-fullscreen img {
    max-height: 400px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    cursor: pointer;
}

/* Additional styles for the image and caption */
.artist-fullscreen img {
    max-width: 100%;
    height: auto;
}


#section2 {
    height: auto;
}

.biography-text {
    width: 80; /* Adjust the width as needed */
    float: right;
}

#section2 h2 {
    width: 100%;
    margin-top: 100px; /* Add 100px space on top */
    font-size: 42px;
    margin-left: 0;
    font-weight: 200;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.efe-container h2 {
    padding-top: 170%;
}

#section2 p {
    font-size: 14px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.bio-photo {
    max-width: 60%;
    height: auto;
    display: block; /* Set the image to block level element */
    margin: 0 auto; /* Center the image horizontally */
}

.biography-wrapper .biography-photos {
    max-width: 50%;
}

.center-video {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center-video {
    width: 800px;
    
}

.efe {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Center the element horizontally */
}



/* Responsive adjustments */
@media screen and (max-width: 768px) {

    #section1 h1 {
        width: 402px;
        margin-top: 0px;
        margin-left: 0;
        font-weight: 1000;
        font-size: 40px;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    #section2 h2 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        font-size: 22px;
        font-weight: 200;
        text-align: center; /* Center the text horizontally */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    

    .text-content h4 {
        width: 90%;
        margin-top: 0;
        margin-bottom: 5vh;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    #section1 {
        flex-direction: column;
    }

    .video-container img {
        width: 150px;
        margin-top: 15vh;
    }

    .efe {
        width: 90%; /* Set the width to 90% */
        margin: 0 auto; /* Center horizontally by adding equal margins to the left and right */
        max-width: 100%; /* Ensure the element doesn't exceed the viewport width on small screens */
    }
    

    #section2 p {
        font-size: 14px;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .center-video {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Mobile view styles */
@media screen and (max-width: 768px) {

    .efe-container {
        text-align: center; /* Center-align content */
    }

    .efe-container h2 {
        font-size: 24px; /* Reduce heading font size */
        padding-top: 650%;
    }

    .efe {
        max-width: 100%; /* Ensure the image doesn't exceed the viewport width */
    }

    .efe-container p {
        font-size: 14px; /* Reduce paragraph font size */
        margin: 10px 0; /* Add spacing around paragraphs */
    }

    .image-container {
        display: flex;
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center-align images */
    }

    .image-container img {
        max-width: 90%; /* Adjust image width as needed */
        margin: 10px 0; /* Add spacing between images */
    }
}
