/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AsketExtended-Light';
    src: url('AsketExtended-Light.otf') format('opentype'); /* Adjust the path if needed */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Asket-ExtraBold';
    src: url('Asket-ExtraBold.otf') format('opentype'); /* Adjust the path if needed */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'AsketExtended-Light', sans-serif; /* Use AsketExtended-Light */
    background-color: black; /* Set background color to black */
	background-image: url('background.png'); /* Full-screen background image */
    background-position: center;
    color: #ffffff; /* Ensure text is readable on background */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
}

#email {
    font-size: 0.67rem; /* Reduced size (3x smaller) */
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Style for the anchor tag */
#enter-link {
    text-decoration: none; /* Remove underline */
}

#enter-link:link,
#enter-link:visited,
#enter-link:hover,
#enter-link:active {
    color: white; /* Keep the color white at all states */
}

/* Header styles */

header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    background: transparent; /* Transparent menu */
}

header img {
    width: 200px; /* Set logo size */
    filter: invert(1); /* Invert logo color to white */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px; /* Spacing between menu items */
}

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

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

/* Logo on top left, 4x bigger */
#logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px; /* 4x bigger (was 50px) */
    filter: invert(1); /* Invert to white */
}


/* Artist section layout */
.artist-container {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;
    margin-top: 120px; /* Space from the header */
}

.artist-image {
    margin: 0 0 20px; /* Space below the image */
}

.artist-image img {
    width: 600px; /* Adjust image size */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image is cropped properly */
}

.artist-description {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Full width */
    max-width: 1200px; /* Limit maximum width */
    margin-bottom: 20px; /* Space below the description */
}

.artist-description div {
    width: 45%; /* Allow both sections to be of equal width */
}

.artist-description p {
    font-size: 1rem; /* Text size for the description */
}

/* Social media icons */
#social-icons {
    display: flex;
    justify-content: center;
    margin: 20px 0; /* Space around social icons */
}

#social-icons a {
    color: white; /* Icon color */
    font-size: 2rem; /* Icon size */
    margin: 0 10px; /* Space between icons */
}

/* Video frames */
.video-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 videos per row */
    gap: 20px; /* Space between videos */
    margin-bottom: 30px; /* Space below the video section */
}

.video-container iframe {
    width: 100%; /* Full width */
    height: 200px; /* Set a height for the video */
}

.spotify-container {
    display: grid;
    gap: 20px; /* Space between videos */
    margin-bottom: 30px; /* Space below the video section */
}

.spotify-container iframe {
    width: 100%; /* Full width */
    height: 400px; /* Set a height for the video */
}

/* Concerts list */
.concerts-list {
	font-family: 'AsketExtended-Light', sans-serif; /* Use AsketExtended-Light */
    width: 100%;
    max-width: 800px; /* Limit width of the concert list */
    margin-top: 30px; /* Space above concerts list */
}

.concerts-list h3 {
	font-family: 'Asket-ExtraBold', sans-serif; /* Use AsketExtended-Light */
    font-size: 1.5rem; /* Title size */
    margin-bottom: 15px; /* Space below title */
}

.concerts-list ul {
    list-style-type: none; /* Remove bullet points */
}

.concerts-list li {
    font-size: 1rem; /* Concert item size */
}


/* Responsive styles for smaller devices */
@media (max-width: 768px) {
    header {
        padding: 10px 15px; /* Slightly reduced padding for smaller screens */
        background: rgba(0, 0, 0, 0.8); /* Add a dark background for visibility */
    }

    header nav ul {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center align menu items */
        margin: 10px 0; /* Margin around the list */
    }

    header nav ul li {
        margin: 5px 0; /* Spacing between menu items */
    }

    #logo {
        width: 150px; /* Adjust logo size for smaller screens */
    }

    .artist-container {
        margin-top: 80px; /* Further adjusted margin to fit below the header */
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: center; /* Center items */
    }

    .artist {
        margin: 10px; /* Reduce space between artist images */
    }

    .artist img {
        width: 250px; /* Adjust image size for smaller screens */
        height: 250px; /* Keep images square */
    }

    .artist-name {
        font-size: 1.2rem; /* Adjust artist name font size */
    }

    #social-icons {
        display: none; /* Hide icons on smaller screens */
    }
}

@media (max-width: 480px) {
    header {
        padding: 5px 10px; /* Further reduce padding for very small screens */
    }

    header nav ul li {
        margin: 5px 0; /* Maintain spacing for vertical menu */
    }

    #logo {
        width: 120px; /* Further adjust logo size */
    }

    .artist-container {
        margin-top: 60px; /* Further adjust margin to fit well */
    }

    .artist img {
        width: 200px; /* Further adjust image size */
        height: 200px; /* Keep images square */
    }

    .artist-name {
        font-size: 1rem; /* Further adjust artist name font size */
    }
}

/* Responsive styles for smaller devices */
@media (max-width: 768px) {
    header {
        padding: 10px 15px; /* Slightly reduced padding for smaller screens */
        background: rgba(0, 0, 0, 0.8); /* Add a dark background for visibility */
    }

    header nav ul {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center align menu items */
        margin: 10px 0; /* Margin around the list */
    }

    header nav ul li {
        margin: 5px 0; /* Spacing between menu items */
    }

    #logo {
        width: 150px; /* Adjust logo size for smaller screens */
    }

    .artist-container {
        margin-top: 80px; /* Further adjusted margin to fit below the header */
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: center; /* Center items */
    }

    .artist-image img {
        width: 100%; /* Make artist images responsive */
        max-width: 250px; /* Limit the max width */
    }

    .artist-description {
        flex-direction: column; /* Stack description vertically on smaller screens */
        align-items: center; /* Center items */
        text-align: center; /* Center text */
    }

    .artist-description div {
        width: 100%; /* Full width for description divs */
        margin: 10px 0; /* Add margin for spacing */
    }

    .artist-name {
        font-size: 1.2rem; /* Adjust artist name font size */
    }

    #social-icons {
        flex-wrap: wrap; /* Wrap social icons for better spacing */
        justify-content: center; /* Center align social icons */
        margin: 10px 0; /* Add margin for spacing */
    }

    #social-icons a {
        font-size: 1.5rem; /* Adjust icon size */
        margin: 5px; /* Adjust spacing between icons */
    }
}

@media (max-width: 480px) {
    header {
        padding: 5px 10px; /* Further reduce padding for very small screens */
    }

    header nav ul li {
        margin: 5px 0; /* Maintain spacing for vertical menu */
    }

    #logo {
        width: 120px; /* Further adjust logo size */
    }

    .artist-container {
        margin-top: 60px; /* Further adjust margin to fit well */
    }

    .artist-image img {
        width: 100%; /* Make artist images full width */
        max-width: 200px; /* Limit the max width */
    }

    .artist-name {
        font-size: 1rem; /* Further adjust artist name font size */
    }

    .artist-description {
        text-align: center; /* Center text on very small screens */
    }

    .concerts-list h3 {
        font-size: 1.2rem; /* Smaller title size for concerts */
    }

    .concerts-list li {
        font-size: 0.9rem; /* Smaller concert item size */
    }

    .video-container {
        grid-template-columns: 1fr; /* Stack videos in one column */
    }

    .concerts-list {
        width: 90%; /* Make the concert list take more width */
    }
}
