/* Style for the section */
#section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#section1 h1 {
	width: 800px;
	margin-top: 150px;
	margin-left: 40%;
	font-weight: 1000;
	font-size: 60px;
	text-align: left;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Style for the video container */
.video-container {
    flex: 1;
    padding: 20px;
    margin-top: 22vh;
    margin-left: -10vw;
}

/* Style for the text content */
.text-content {
    flex: 1;
    margin-left: -50vw;
    width: 100vw;
}

.text-content h4 {
    width: 40vw;
    margin-top: -5vh;
    margin-bottom: 5vh;
    margin-left: 32vw;
    text-align: left;
}

#section2 p {
	width: 69%;
	margin-left: auto;
    margin-right: auto;

	font-size: 21px;
	font-weight: 200;
	text-align: center;
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #section1 {
        flex-direction: column;
    }
    .video-container,
    .text-content {
        flex: 1;
        width: 100%;
    }
}


#section2 {
    text-align: center; /* Center-align the content within the section */
    height: auto;
}

#section2 h3 {
    font-size: 36px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center-align the flex items horizontally */
    gap: 20px; /* Add some spacing between the items */
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.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;
}

@media screen and (max-width: 768px) {

    #section1 h1 {
        width: 300px;
        margin-top: 0px;
        font-weight: 1000;
        font-size: 32px;
        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;
        text-align: left;
    }

    #section1 {
        flex-direction: column;
    }
    
    .video-container {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        height: 100vh; /* Set the desired container height */
        flex: 1;
        margin-top: 10vh;
        margin-left: 0vw;
    }

    iframe {
        width: 100%; /* Make the video responsive, fill the container */
        max-width: 800px; /* Control the maximum width of the video */
        height: auto; /* Maintain the video's aspect ratio */
        border: none; /* Remove the iframe border, if any */
    }

    

    .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;
    }
}
