:root {
  --startColor: hsl(330, 85%, 60%); /* Soft Pink */
  --stopColor: hsl(270, 85%, 55%);  /* Soft Purple */
}

@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 {
  background: black;
  font-family: 'AsketExtended-Light', sans-serif;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden; /* Keep SVGs within viewport */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.svg-container {
  position: absolute;
  width: 1200px;  /* Original width */
  height: 1200px; /* Original height */
  overflow: hidden;
}

.top-left {
  top: -600px;
  left: -500px;
}

.bottom-right {
  bottom: -600px;
  right: -500px;
}

svg {
  width: 100%;
  height: 100%;
}

path {
  cursor: pointer;
}

#logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; /* Ensure positioning context */
  z-index: 999; /* Higher value means it will be in front of others */
}

#logo-container img {
  width: 500px; /* Original logo size */
  filter: invert(1); /* White logo */
}

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

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

#social-icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  width: 150px;
}

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

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

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

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

/* Responsive styles for smaller devices */
@media (max-width: 768px) {
    /* Position the top canvas */
    .top-left {
        top: 50%; /* Align the top SVG to the top of the viewport */
        left: -10%; /* Align it to the left */
        width: 100vw; /* Full viewport width */
        height: 120vh; /* Half the viewport height */
    }

    /* Position the bottom canvas */
    .bottom-right {
        bottom: 40%; /* Align the bottom SVG to the bottom of the viewport */
        left: -10%; /* Align it to the left */
        width: 200vw; /* Full viewport width */
        height: 100vh; /* Half the viewport height */
    }

    #logo-container img {
        width: 80%; /* Adjust logo size for smaller screens */
    }

    #enter-text {
        font-size: 1.5rem; /* Adjust text size for smaller screens */
    }

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

@media (max-width: 480px) {
    #logo-container img {
        width: 70%; /* Further adjust logo size for very small screens */
    }

    #enter-text {
        font-size: 1.2rem; /* Further adjust text size */
    }
}

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