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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #0A0A0A; /* Dark background resembling space */
    color: #FFFACD; /* Light text for contrast */
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'StarJedi';
    src: url('../fonts/Starjedi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* NAVBAR MENU STYLING */
.navbar {
    background: linear-gradient(to bottom, rgba(0, 50, 99, 0.9), rgba(0, 50, 99, 0.3)); /* Dark blue gradient for navbar */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);  /* Stronger shadow for depth */
    padding: 0.3rem 0;
    transition: background-color 0.3s ease;
}

.navbar ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    color: #FFD700;  /* Star Wars yellow for links */
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
}

.navbar ul li a:hover {
    color: #87CEFA;  /* Lighter blue for hover effect */
}

/* Media Query for Mobile (Row Layout, Smaller Menu) */
@media (max-width: 768px) {
    .navbar ul {
        justify-content: space-around;  /* Spread out the menu items */
    }

    .navbar ul li {
        margin: 0 5px;  /* Reduce the space between menu items */
    }

    .navbar ul li a {
        font-size: 1rem;  /* Reduce font size for mobile */
        padding: 0.3rem 0.5rem;  /* Reduce padding to make items fit */
    }
}

/* Hero Section with Dark Sky and Subtle Nebula Effect */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

/* Nebula and Planet Effect with Smaller Elements */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind content */
    background: radial-gradient(circle at 40% 40%, rgba(173, 216, 230, 0.2), rgba(0, 0, 0, 0) 50%), /* Light Blue Nebula */
                radial-gradient(circle at 60% 60%, rgba(255, 99, 71, 0.2), rgba(0, 0, 0, 0) 60%); /* Red Nebula */
    opacity: 0.5;
}

/* Subtle Planet Layers with Reduced Size */
.hero::before {
    background: radial-gradient(circle at 25% 40%, rgba(148, 0, 211, 0.3), rgba(0, 0, 0, 0) 40%), /* Dark Purple Nebula */
                radial-gradient(circle at 75% 60%, rgba(0, 255, 255, 0.2), rgba(0, 0, 0, 0) 50%), /* Teal Nebula */
                radial-gradient(circle at 40% 80%, rgba(30, 144, 255, 0.2), rgba(0, 0, 0, 0) 40%), /* Deep Blue Nebula */
                radial-gradient(circle at 60% 20%, rgba(255, 20, 147, 0.2), rgba(0, 0, 0, 0) 40%); /* Vivid Pink Nebula */
    opacity: 0.5; /* Softer opacity */
}

/* More Subtle Planet Layers */
.hero::after {
    background: radial-gradient(circle at 80% 30%, rgba(148, 0, 211, 0.3), rgba(0, 0, 0, 0) 40%), /* Dark Purple Nebula */
                radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.2), rgba(0, 0, 0, 0) 50%); /* Teal Nebula */
    opacity: 0.4; /* Reduced opacity */
}

/* Nebula Fade Animation with Softer Impact */
.hero::before, .hero::after {
    animation: nebula-fade 10s ease-in-out infinite alternate;
}

/* Keyframes for Nebula Animation */
@keyframes nebula-fade {
    0% {
        opacity: 0.3; /* Lowered opacity to keep the background dark */
    }
    100% {
        opacity: 0.5;
    }
}

/* Hero Heading */
.hero h1 {
    font-family: 'StarJedi', sans-serif;
    color: #FFD700;  /* Star Wars yellow */
    font-size: 4rem;
    z-index: 2;  /* Ensure it stays above the background */
    text-shadow: 0 0 15px rgba(235, 235, 235, 0.4), 0 0 25px rgba(100, 100, 100, 0.6);  /* Add stronger text shadow */
    margin-bottom: 2rem;
}

.hero-text-0, .hero-text-6 {
    font-size: 5rem;  /* Larger size for the first letters */
}

/* Ensure space between the two words "Naboo" and "Garden" */
.hero-text-5 {
    display: inline-block;
    width: 1rem;  /* Create visible space */
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .naboo-word, .garden-word {
        display: block;  /* Force the words to stack vertically */
        text-align: center;  /* Center align the words on smaller screens */
    }

    .hero h1 {
        font-size: 2.5rem;  /* Reduce overall font size for mobile */
    }

    .hero-text-0, .hero-text-6 {
        font-size: 3.5rem;  /* Reduce the size of the first letters */
    }

    .hero-text-5 {
        width: 0.5rem;  /* Slightly reduce the space between words */
        display: none;
    }
}


/* Hero Button with Enhanced Contrast */
.hero .explore-btn {
    background-color: #003263;  /* Darker space blue */
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    z-index: 2;  /* Ensure it stays above the background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);  /* Stronger shadow for contrast */
}

.hero .explore-btn:hover {
    background-color: #004080;  /* Lighter blue on hover */
    transform: scale(1.05);
}

.hero .hero-image {
    width: 100px;
    margin-bottom: 50px;
    filter: invert(1);
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .hero .hero-image {
      width: 50px;
      margin-bottom: 20px;
      margin-top: 20px;
    }
}

/* LOTTIE UTILITY*/
.animation-container {
    background: transparent;
    margin-top: 50px;
    display: flex;
    justify-content: center; /* Horizontally center */
    height: auto;            /* No need for full viewport height */
}







/* GENERAL BUTTONS STYLING */
.naboo-btn {
    background-color: #2F3D40;  /* Deep Teal base */
    color: #EAE8D3;  /* Cream text */
    padding: 1rem 2rem;  /* Spacious padding */
    font-size: 1.2rem;  /* Large font size */
    border: 2px solid #76A6A0;  /* Jade Green border */
    border-radius: 8px;  /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-decoration: none;  /* Remove underline if used as a link */
    font-family: 'Arial', sans-serif;
}

/* Hover and Focus Effects */
.naboo-btn:hover,
.naboo-btn:focus {
    background-color: #76A6A0;  /* Jade Green on hover */
    color: #2F3D40;  /* Deep Teal text on hover */
    transform: translateY(-3px);  /* Slight upward movement */
    box-shadow: 0 0 15px rgba(118, 166, 160, 0.7);  /* Glow effect */
}

/* Active Button (when clicked) */
.naboo-btn:active {
    transform: translateY(0);  /* Reset transform on click */
    box-shadow: none;  /* Remove shadow on click */
}








/* LATEST RELEASES HOMEPAGE STYLING */
.releases {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.8), rgba(0, 50, 99, 0.9)); /* Deep Teal to Dark Blue gradient */
    color: #FFFACD; /* Light yellow text */
    margin-bottom: 100px;
}

/* Playlist Heading */
.releases h2 {
    font-size: 2rem;
    color: #FFD700;  /* Star Wars yellow */
    margin-bottom: 2rem;  /* Add more space below the heading */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);  /* Subtle shadow for text */
}

.releases p {
    font-size: 2rem;
    color: #fff09e;
    font-weight: bold;
}
/* Release Grid */
.release-grid {
    padding-top: 2rem; /* Added more padding for spacing */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted minimum size for better layout */
    gap: 1.5rem; /* Increased gap for better spacing */
    justify-content: center; /* Center grid items */
    align-items: stretch; /* Ensure all items are stretched equally */
}

/* Release Item */
.release-item-home {
    background-color: rgba(47, 61, 64, 0.9); /* Deep Teal background */
    padding: 1.5rem;
    border-radius: 15px; /* More rounded corners for a smoother look */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: #EAE8D3; /* Cream color text */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Stronger shadow for depth */
    transition: box-shadow 0.3s, transform 0.3s; /* Smooth transition for shadow and scaling */
}

/* Hover Effect */
.release-item-home:hover {
    box-shadow: 0 0 20px rgba(118, 166, 160, 0.7); /* Jade Green shadow on hover */
    transform: translateY(-5px) scale(1.05); /* Slightly lift the card */
}


/* Release Text and Titles */
.release-item-home h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #76A6A0; /* Jade Green for release titles */
}

.release-item-home p {
    font-size: 1rem;
    color: #EAE8D3; /* Cream color for release descriptions */
}

/* Image Styling Inside Release Item */
.release-item-home img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Slightly rounded image corners */
    transition: transform 0.3s ease;
}

/* Hover Effect on Image */
.release-item-home:hover img {
    transform: scale(1.05); /* Image grows slightly on hover */
}











/* ABOUT SECTION HOMEPAGE */
.about {
    padding: 4rem 2rem;  /* More balanced padding */
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.8), rgba(118, 166, 160, 0.8)); /* Deep Teal to Jade Green gradient */
    text-align: center;
    color: #EAE8D3;  /* Cream color text */
    border: none;  /* Remove unnecessary borders */
    max-width: 900px;  /* Slightly wider section */
    margin: 0 auto;  /* Center the section */
    border-radius: 12px;  /* Rounded edges for modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Soft shadow for depth */
}

/* Headings and Paragraphs */
.about h2 {
    font-size: 2rem;
    color: #FFD700;  /* Star Wars yellow for heading */
    margin-bottom: 1.5rem;  /* More space below heading */
}

.about p {
    font-size: 1.2rem;
    color: #EAE8D3;  /* Cream color text */
    margin-bottom: 1.5rem;
    line-height: 1.6;  /* Increased line height for readability */
}

/* About Image Styling */
.about-image {
    text-align: center;
    margin: 0rem auto;  /* Space around the image */
}

.about-image img {
    max-width: 50px;  /* Slightly larger image */
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover Effect for Image */
.about-image img:hover {
    transform: scale(1.1);  /* Grow the image slightly on hover */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .about {
        width: 95%;
        max-width: none;  /* Remove max-width constraint on mobile */
        padding: 3rem 1rem;  /* Adjust padding for smaller screens */
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 1rem;
    }

    .about-image img {
        max-width: 100px;  /* Reduce image size on mobile */
    }
}


/* HOMEPAGE PLAYLISTS SECTION */
.playlists {
    padding: 3rem 1rem;  /* More padding for spacing */
    background: linear-gradient(to bottom right, rgba(209, 184, 148, 0.9), rgba(47, 61, 64, 0.8)); /* Sandy Beige to Deep Teal */
    text-align: center;
    color: #EAE8D3;  /* Cream text */
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 10px;  /* Rounded corners for the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Soft shadow for depth */
}

/* Playlist Heading */
.playlists h2 {
    font-size: 2rem;
    color: #FFD700;  /* Star Wars yellow */
    margin-bottom: 2rem;  /* Add more space below the heading */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);  /* Subtle shadow for text */
}

/* Playlist Grid */
.playlists ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  /* Responsive grid */
    gap: 1.5rem;  /* Space between items */
    justify-content: center;
    align-items: center;
}

/* Playlist Items */
.playlists li {
    position: relative;
    border-radius: 15px;  /* More rounded for a smoother design */
    overflow: hidden;  /* Prevent images from overflowing */
    width: 100%;  /* Responsive width */
    max-width: 350px;  /* Limit the max width */
    height: 350px;  /* Keep items uniform in height */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);  /* Deeper shadow for cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Playlist Links */
.playlists a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;  /* Ensure the entire area is clickable */
}

/* Playlist Image */
.playlists img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensure images cover the container */
    transition: transform 0.4s ease;
    border-radius: 15px;
}

/* Hover Effects for Playlist Item */
.playlists li:hover {
    transform: translateY(-10px);  /* Lift the card slightly on hover */
    box-shadow: 0 8px 25px rgba(118, 166, 160, 0.8);  /* Jade Green glow on hover */
}

.playlists img:hover {
    transform: scale(1.1);  /* Slight zoom-in effect on hover */
}

/* Playlist Button for Listen Now */
.playlists .playlist-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #EAE8D3;  /* Cream text */
    font-size: 1.2rem;
    background: rgba(47, 61, 64, 0.7);  /* Deep Teal background */
    padding: 0.5rem 1rem;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

.playlists li:hover .playlist-btn {
    opacity: 1;
    bottom: 20px;  /* Move up on hover */
}

/* Center the button and limit its width */
.playlists .naboo-btn {
    max-width: 30%;  /* Set the max width to 50% */
    margin: 2rem auto 0;  /* Center the button and add space above it */
    display: block;  /* Ensure it's treated as a block element to center */
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .playlists {
        padding: 2rem 0.5rem;  /* Adjust padding for smaller screens */
    }

    .playlists li {
        max-width: 100%;
        height: 250px;  /* Reduce height for smaller screens */
    }

    .playlists h2 {
        font-size: 1.8rem;  /* Adjust heading size for mobile */
    }
}


/* SHOP SECTION HOMEPAGE STYLING */
.shop-section {
    padding: 2rem 0;  /* Increased padding for more breathing room */
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.8), rgba(118, 166, 160, 0.8));  /* Deep Teal to Jade Green gradient */
    text-align: center;
    width: 95%;
    margin: 0 auto;  /* Center the section */
    border-bottom: none;
    border-top: none;
    border-radius: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
    color: #EAE8D3;  /* Cream text */
}

/* Shop Section Heading */
.shop-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFD700;  /* Star Wars yellow */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);  /* Subtle shadow for heading */
}

/* Shop Header for Flex Alignment */
.shop-header {
    display: flex;  /* Aligns title and button horizontally */
    justify-content: space-between;  /* Space between title and button */
    align-items: center;
    gap: 3rem;  /* Reduced gap between title and button */
    margin-bottom: 2rem;  /* Space below the header */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Shop Columns (Grid Layout) */
.shop-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  /* Responsive grid with minimum size */
    gap: 2rem;  /* Spacing between columns and rows */
    width: 95%;
    margin: 0 auto;  /* Center the section */
    margin-top: 30px;
    justify-content: center;  /* Center grid items */
}

/* Shop Column Items */
.shop-column {
    text-align: center;
    background-color: rgba(47, 61, 64, 0.9);  /* Deep Teal background */
    padding: 1rem;
    border-radius: 15px;  /* Smoother rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-column:hover {
    transform: translateY(-5px);  /* Slight lift on hover */
    box-shadow: 0 8px 20px rgba(118, 166, 160, 0.8);  /* Jade Green glow */
}

/* Shop Links */
.shop-column a {
    display: block;
    text-decoration: none;
    color: #EAE8D3;  /* Cream text for links */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Shop Images */
.shop-image {
    width: 100%;
    height: auto;
    max-width: 300px;  /* Limit the size of the images */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.shop-column a:hover .shop-image {
    transform: scale(1.05);  /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Shop Titles */
.shop-column h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #FFD700;  /* Star Wars yellow for product titles */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);  /* Light shadow for text */
}






/* RELEASE INTRO SECTION */
.release-intro {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.9), rgba(118, 166, 160, 0.8));  /* Deep Teal to Jade Green */
    color: #EAE8D3;  /* Cream text */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Soft shadow */
    border-radius: 12px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);  /* Subtle text shadow */
    margin-bottom: 2rem;
}

/* RELEASE ITEM CARD */
.release-item {
    background-color: rgba(47, 61, 64, 0.9); /* Deep Teal background */
    padding: 1rem;
    border-radius: 15px;  /* More rounded for a modern look */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #EAE8D3;  /* Cream text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);  /* 5px radius shadow */
    transition: box-shadow 0.3s, transform 0.3s ease;  /* Smooth transition */
    max-height: 440px;  /* Adjusted for better consistency */
    min-height: 440px;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .release-item {
    max-height: 500px !important;  /* Adjusted for better consistency */
    min-height: 500px !important;
  }
}



/* HOVER EFFECT FOR RELEASE ITEM */
.release-item:hover {
    box-shadow: 0 8px 20px rgba(118, 166, 160, 0.8);  /* Jade Green glow */
    transform: scale(1.05);  /* Slight grow on hover */
}

/* RELEASE ITEM IMAGE */
.release-link img {
    width: 100%;
    height: auto;
    border-radius: 12px;  /* Slight rounding for a softer look */
    transition: transform 0.3s ease;
}

.release-link:hover img {
    transform: scale(1.1);  /* Grow effect */
}

/* TEXT STYLING */

/* Set a fixed height for h3 titles to maintain grid structure */
.release-item h3 {
    font-size: 1.4rem;
    color: #FFD700;  /* Star Wars Yellow */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
      margin: 0rem 0;
      height: 80px;  /* Fixed height for titles */
      overflow: hidden;  /* Hide overflow */
      text-overflow: ellipsis;  /* Add ellipsis for long titles */
      display: -webkit-box;  /* Required for line clamping */
      -webkit-line-clamp: 2;  /* Limit to 2 lines */
      -webkit-box-orient: vertical;
      word-wrap: break-word;  /* Allow text to wrap */

    /* Flexbox to center the text vertically */
display: flex;
align-items: center;  /* Vertically center the text */
justify-content: center;  /* Horizontally center the text */
text-align: center;  /* Center the text */
}

.release-item-artist {
    font-size: 1.3rem !important;  /* Slightly larger for readability */
    color: #ffe55c !important;  /* Cream text */
}

.release-item-small-text {
    font-size: 0.9rem !important;  /* Slightly larger for readability */
    color: #EAE8D3;  /* Cream text */
}

.release-item-smaller-text {
    font-size: 0.75rem !important;  /* Slightly larger than before */
    color: #EAE8D3;  /* Cream text */
}

/* GENERAL RELEASE ITEM LINK STYLING */
.release-link {
    display: block;
    width: 100%;
    max-width: 250px;  /* Increased width for better emphasis */
    overflow: hidden;
    position: relative;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .release-item {
        max-height: 300px;
        min-height: 300px;
    }

    .release-link {
        max-width: 100%;  /* Full width for mobile */
    }

    .release-item h3 {
        font-size: 1.4rem;
    }
}











/* ARTISTS PAGE INTRO SECTION */
.artists-intro {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.9), rgba(118, 166, 160, 0.8)); /* Deep Teal to Jade Green gradient */
    background-size: cover;
    background-repeat: no-repeat;
    color: #EAE8D3;  /* Cream text for intro */
    border-radius: 12px;  /* Soft rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Soft shadow for depth */
}

/* ARTISTS GRID */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  /* Adjusted for responsive fit */
    gap: 2rem;  /* Increased gap for better spacing */
    padding: 3rem;
    max-width: 1200px;  /* Limit to 1200px for better centering */
    margin: 0 auto;  /* Center the grid container */
}

/* ARTIST CARD */
.artist-card {
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.9), rgba(118, 166, 160, 0.9)); /* Deep Teal to Jade Green */
    border-radius: 15px;  /* More rounded corners for a modern look */
    padding: 1.5rem;
    max-width: 100%;  /* Ensure full-width responsive layout */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #EAE8D3;  /* Cream text for artist cards */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  /* Soft shadow */
}

/* ARTIST CARD IMAGE */
.artist-card img {
    width: 200px;
    height: auto;
    border-radius: 50%;  /* Slight rounding for images */
    transition: transform 0.3s ease;
}

/* HOVER EFFECTS */
.artist-card:hover {
    transform: translateY(-5px);  /* Lift the card slightly on hover */
    box-shadow: 0 8px 20px rgba(118, 166, 160, 0.8);  /* Jade Green glow on hover */
}

.artist-card img:hover {
    transform: scale(1.05);  /* Slight zoom effect on hover */
}

/* ARTIST CARD TITLE */
.artist-card h2 {
    font-size: 1.5rem;
    color: #FFD700;  /* Star Wars yellow for titles */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);  /* Light shadow for text */
    margin: 1rem 0;
}

/* ARTIST CARD DESCRIPTION */
.artist-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #EAE8D3;  /* Cream color for artist description */
    line-height: 1.6;  /* Better readability */
}





/* SEARCH STYLING */
.search-container {
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

#release-search {  /* Updated to match your HTML */
    width: 90%;
    padding: 0.75rem;
    border: 1px solid #47A09D;  /* Jade Green border */
    border-radius: 10px;
    font-size: 1.1rem;
    background-color: rgba(47, 61, 64, 0.8);  /* Deep Teal background */
    color: #EAE8D3;  /* Cream text */
}

#search-button {
    padding: 0.75rem 1.5rem;
    background-color: #FFD700;  /* Star Wars yellow */
    color: #2F3D40;  /* Deep Teal text */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: 1rem;
    transition: background-color 0.3s;
}

#search-button:hover {
    background-color: #EAE8D3;  /* Cream on hover */
    color: #2F3D40;  /* Deep Teal text */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  /* Adjusted for smaller screens */
    }

    .artist-card {
        padding: 1rem;
    }

    .search-container {
        width: 100%;
    }
}






/* ARTIST BIO SECTION */
.artist-bio {
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.9), rgba(118, 166, 160, 0.8));  /* Deep Teal to Jade Green */
    border-radius: 15px 15px 15px 15px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    color: #EAE8D3;  /* Cream text */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Soft shadow for depth */
}

.artist-info h1 {
    font-size: 2.5rem;
    color: #FFD700;  /* Star Wars yellow */
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);  /* Soft shadow for heading */
}

.artist-info img {
  width: 250px;
  border-radius: 50%;
}
.artist-info p {
    font-size: 1.2rem;
    line-height: 1.8;  /* Increased line-height for better readability */
    margin-bottom: 2.5rem;
    color: #EAE8D3;  /* Cream text */
}

/* SPOTIFY PLAYER STYLING */
.spotify-player {
    margin: 0 auto;
    max-width: 450px;
    padding: 0;
    background-color: rgba(47, 61, 64, 0.8);  /* Deep Teal background */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  /* Subtle shadow */
    overflow: hidden;
}

/* ARTIST DISCOGRAPHY SECTION */
.artist-discography {
    padding: 3rem;
    background-color: rgba(47, 61, 64, 0.8);  /* Deep Teal background */
    color: #EAE8D3;  /* Cream text */
    text-align: center;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.artist-discography h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFD700;  /* Star Wars yellow */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.artist-discography ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.artist-discography li {
    margin: 1rem;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-discography img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.artist-discography li:hover img {
    transform: scale(1.1);  /* Slight zoom effect on hover */
}

.artist-discography figcaption {
    font-size: 0.7rem; /* Make the caption text smaller */
    color: #EAE8D3; /* Cream text for consistency with the theme */
    text-align: center;
    text-decoration: none !important; /* Ensure no underline */
}

/* Remove text decoration from links within the figcaption */
.artist-discography figcaption a {
    text-decoration: none !important; /* Remove underline for links */
    color: inherit !important; /* Ensure link color matches the figcaption color */
    border-bottom: none !important; /* If any borders are causing the underline */
}

.artist-discography figcaption a:visited,
.artist-discography figcaption a:link {
    text-decoration: none !important; /* No underline for both visited and unvisited links */
    border-bottom: none !important;
}

.artist-discography figcaption a:hover,
.artist-discography figcaption a:focus {
    text-decoration: none !important; /* No underline on hover or focus */
    border-bottom: none !important;
}

/* SOCIAL LINKS SECTION */
.artist-social {
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.9), rgba(118, 166, 160, 0.8));  /* Deep Teal to Jade Green */
    text-align: center;
    max-width: 1200px;
    border-radius: 15px 15px 15px 15px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.artist-social h2 {
    font-size: 2rem;
    color: #FFD700;  /* Star Wars yellow */
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.artist-social a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #EAE8D3;  /* Cream background for icons */
    margin: 0 0.5rem;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.artist-social img {
    width: 50%;
    height: auto;
    display: block;
}

.artist-social a:hover {
    background-color: #FFD700;  /* Star Wars yellow on hover */
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .artist-bio, .artist-discography, .artist-social {
        max-width: 95%;
    }

    .artist-discography li {
        width: 150px;
        height: 150px;
    }
}






/* PLAYLISTS PAGE INTRO */
.playlist-intro {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(47, 61, 64, 0.9), rgba(118, 166, 160, 0.8));  /* Deep Teal to Jade Green */
    color: #EAE8D3;  /* Cream text */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* Soft shadow */
    border-radius: 12px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);  /* Subtle text shadow */
    margin-bottom: 2rem;
}

/* PLAYLIST SECTION */
.playlist-section {
    padding: 2rem 0;
    background-color: rgba(47, 61, 64, 0.9);  /* Deep Teal background */
    color: #EAE8D3;  /* Cream text */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* PLAYLIST CONTAINER */
.playlist-container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

/* FLEXBOX FOR 2-COLUMN LAYOUT */
.playlist {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(118, 166, 160, 0.5);  /* Jade Green separator */
}

.playlist:last-child {
    border-bottom: none;
}

/* LEFT COLUMN: PLAYLIST ARTWORK */
.playlist-left {
    max-width: 280px;  /* Smaller image size */
    text-align: center;
}

.playlist-artwork {
    width: 100%;
    height: auto;
    border-radius: 12px;  /* Slightly rounded corners */
    transition: transform 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);  /* Soft shadow */
}

.playlist-left a:hover .playlist-artwork {
    transform: scale(1.1);  /* Grow the image on hover */
    box-shadow: 0 6px 15px rgba(118, 166, 160, 0.8);  /* Jade Green glow */
}

/* RIGHT COLUMN: TITLE, DESCRIPTION, AND ICONS */
.playlist-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.playlist-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;  /* Star Wars yellow */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);  /* Subtle shadow */
}

.playlist-description {
    font-size: 1.2rem;
    color: #EAE8D3;  /* Cream text */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ICONS FOR PLATFORMS */
.playlist-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.playlist-icons a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.playlist-icons img {
    width: 25px;
    height: 25px;
    opacity: 0.8;
    filter: invert(1);
}

.playlist-icons img:hover {
    transform: scale(1.2);  /* Grow effect on hover */
    opacity: 1;
}

/* RESPONSIVENESS FOR MOBILE */
@media (max-width: 768px) {
    .playlist {
        flex-direction: column;  /* Stack the content vertically */
        align-items: center;  /* Center the content */
        text-align: center;  /* Center text on smaller screens */
    }

    .playlist-left {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .playlist-right {
        padding-left: 0;
        justify-content: center;
    }

    .playlist-title {
        font-size: 1.5rem;  /* Reduce title size */
    }

    .playlist-description {
        font-size: 1rem;  /* Reduce description size */
    }

    .playlist-icons {
        justify-content: center;
    }
}






/* CONTACT FORM STYLING */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(47, 61, 64, 0.9);  /* Deep Teal background */
    margin-top: 8rem;
    border: 1px solid #47A09D;  /* Jade Green border */
    border-radius: 15px;  /* Softer rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);  /* Deeper shadow for depth */
    color: #EAE8D3;  /* Cream text */
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #FFD700;  /* Star Wars Yellow */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #47A09D;  /* Jade Green border */
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(234, 232, 211, 0.1);  /* Cream background with transparency */
    color: #EAE8D3;  /* Cream text */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);  /* Subtle inset shadow */
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;  /* Star Wars Yellow on focus */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);  /* Yellow glow on focus */
}

.contact-form button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #FFD700;  /* Star Wars Yellow button */
    color: #2F3D40;  /* Deep Teal text */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #EAE8D3;  /* Cream on hover */
    color: #2F3D40;  /* Deep Teal text */
    transform: scale(1.05);  /* Slight grow on hover */
}

.contact-form .g-recaptcha {
    margin-bottom: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }

    .contact-form button {
        width: 100%;
        padding: 1rem;
    }
}










/* Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(47, 61, 64, 0.8); /* Deep Teal background */
    border-radius: 50%; /* Fully circular button */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Soft shadow for depth */
}

.scroll-to-top img {
    width: 24px;
    height: 24px;
    filter: invert(1); /* Make the icon white for visibility */
}

/* Hover effect for Scroll to Top Button */
.scroll-to-top:hover {
    opacity: 1; /* Show the button on hover */
    transform: scale(1.1); /* Slightly grow the button on hover */
    background-color: #998100; /* Change to Star Wars yellow on hover */
}

/* Show button when scrolling */
.scroll-to-top.show {
    opacity: 1; /* Make it visible when scroll is detected */
}





/*DIVIDER STYLING*/
.divider-footer {
    height: 4px; /* Thickness of the divider */
    background-color: #FFF;
    border: none; /* Remove border if needed */
    margin: 0rem auto 0rem auto; /* Center with margin auto and add space around */
    width: 100%; /* Adjust width as needed */
}




/* FOOTER STYLING */
footer {
    background: linear-gradient(to bottom, rgba(118, 166, 160, 0.8), rgba(47, 61, 64, 0.9)); /* Deep Teal to Jade Green gradient */
    color: #EAE8D3;  /* Cream text */
    padding: 2rem 0;  /* Increased padding for better spacing */
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);  /* Soft shadow to create depth */
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* Footer Columns */
.footer-column {
    flex: 1;
}

.footer-column:first-child {
    display: flex;
    align-items: center;
    text-align: left;
}

.footer-column:last-child {
    text-align: right;
}

/* Footer Logo Container */
.footer-logo-container {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 100px;
    margin-right: 0.5rem;
}

.established-text {
    font-size: 0.75rem;
    color: #FFD700;  /* Star Wars yellow */
    margin: 0;
}

/* Second Column: Social Media Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon img {
    width: 30px;  /* Slightly larger icons */
    height: 30px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: invert(1);  /* White icons by default */
}

.footer-social-icons .social-icon:hover img {
    transform: scale(1.3);  /* Larger scale on hover */
    filter: invert(0) sepia(1) saturate(3) hue-rotate(100deg) brightness(1);  /* Bright Jade Green effect on hover */
}

/* Third Column: Copyright */
.footer-copyright {
    font-size: 0.85rem;
    color: #EAE8D3;  /* Cream color text */
    margin: 0;
}

/* Bottom Row: Powered by Text */
.footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
    color: #FFD700;  /* Star Wars yellow */
    padding-bottom: 1rem;
}

.footer-bottom p {
    margin: 0;
}

/* Media Query for Mobile */
@media only screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        position: relative;
        bottom: auto;
        padding-bottom: 1rem;
    }
}








/* BB8 STYLING */
.robot {
  display: block;
  width: 100px;
  margin: 0 auto;
  margin-bottom: 200px;
  margin-top: 50px;
  position: relative;
}

svg#bb8Body {
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  width: 100px;
  position: absolute;
  top: 0px
}
svg#bb8Head {
  width: 100px;
  position: absolute;
  top: -50px;
}
svg#bb8Shadow {
  position: absolute;
  top: 10px;
  z-index: -10;
}







/* CSS for particles container */
#particles-js {
    position: fixed; /* Fixed to stay in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind other content */
    overflow: hidden; /* Hide any overflow of particles */
}

/* Main content area to ensure it's on top of particles */
main, header, footer {
    z-index: 1; /* Ensure these are above the particles */
}
