/* 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;
}

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

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

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;
}

/* 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 */
}

/* Logo and 'Enter' Section */
#logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#logo-container img {
    width: 500px; /* Adjust size for the logo */
    filter: invert(1); /* Invert to white */
}

#enter-text {
    font-size: 2rem;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    cursor: pointer;
}

#enter-text:hover {
    text-decoration: underline;
}

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

/* Artist section layout */
.artist-container {
    font-family: 'AsketExtended-Light', sans-serif; /* Use AsketExtended-Light */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 170px; /* Adjusted margin to avoid clash with header */
}

.artist {
    margin: 0 50px; /* Space between the two artist images */
    text-align: center;
}

.artist img {
    width: 400px; /* Bigger image size */
    height: 400px; /* No round corners, square */
    object-fit: cover; /* Ensures the image is cropped and maintains aspect ratio */
}

.artist-name {
    margin-top: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

/* Centered email in the middle */
#email-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Centers it vertically in the viewport */
}

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

/* Centered text */
#pro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Centers it vertically in the viewport */
}

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

/* Social media icons */
#social-icons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    width: 150px; /* Adjust the spacing between the icons */
}

#social-icons a {
    color: black; /* Always black */
    font-size: 2rem; /* Icon size */
    text-decoration: none;
}

.ripple {
    position: absolute;
    border-radius: 75%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.8) 0%, rgba(138, 43, 226, 0.4) 70%); /* Neon pink to violet gradient */
    pointer-events: none; /* Prevent interference with clicks */
    transform: scale(0); /* Start from zero scale */
    opacity: 0.1; /* Start fully visible */
    transition: transform 1s ease-out, opacity 1.5s ease-out; /* Smooth animation, slower */
}

.ripple.show {
    transform: scale(4); /* Scale up the ripple */
    opacity: 0; /* Fade out for a smoother effect */
}

/* 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 */
    }
}
