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

/* Body Styling */
body {
    font-family: 'Impact', sans-serif;
    background: url(https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExZ3cxZTVxaWNxdW4wNTgxcGpyMGZqeWd3cXR1M3lkOWVvMW9lZGFreiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ncMvRcyV7JGxe8qteR/giphy.gif) no-repeat center center fixed;
    background-size: cover; /* Ensures the GIF covers the entire screen */
    color: white;
    text-align: center;
    overflow-x: hidden;
    animation: bgFlicker 5s infinite alternate;
}

.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bio-img {
    width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bio-img:hover {
    transform: scale(1.5);
}


/* Header Styling */
/* Update the header styling in your style.css file */
header {
    background: linear-gradient(to bottom, #000 90%, rgba(0, 0, 0, 0));
    padding: 2rem 0;
}

header h1 {
    font-size: 4rem;
    color: #ff0000;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8), 0 0 25px #ff0000, 0 0 5px #ff0000;
    animation: flicker 2s infinite alternate;
}

header .logo img {
    max-width: 700px;
    margin-bottom: 1rem;
    width: 100%; /* Make logo responsive */
}

/* Navigation Bar Styling (top navbar) */
#navbar {
    background-color: #000;
    text-align: center;
    padding: 1rem 0;
}

#navbar .nav-links {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 2rem;
    flex-wrap: wrap; /* Allow wrapping for small screens */
}

#navbar .nav-links li {
    margin: 0;
}

#navbar .nav-links li a {
    text-decoration: none;
    color: #ffcc00;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

#navbar .nav-links li a:hover {
    color: #fff;
    background-color: #ff0000;
    border-radius: 5px;
}

/* Section Styling */

.scrollable-gallery {
    display: flex;
    overflow-x: auto;
    max-width: 100%; /* Ensures it doesn't extend beyond the borders */
    scrollbar-width: none; /* Hides the scrollbar in Firefox */
    -ms-overflow-style: none; /* Hides the scrollbar in Internet Explorer */
    padding: 10px;
    gap: 10px;
}

.scrollable-gallery::-webkit-scrollbar {
    display: none; /* Hides the scrollbar in Chrome and Safari */
}

.bio-img {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bio-img:hover {
    transform: scale(1.1);
}


.section {
    margin: 5rem auto;
    padding: 2rem;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

.rushsh {
    font-size: 200px;
}

h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.bio-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allow images to wrap on small screens */
}

.bio-img {
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.contact-info p, .links a {
    color: #ccc;
    font-size: 1.1rem;
}

.contact-info a, .links a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.links a {
    margin: 0 1rem;
}

/* Releases Section */
.release-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap; /* Allow items to stack in smaller viewports */
}

.release-item {
    background: rgba(255, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    width: 45%;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    margin-bottom: 2rem; /* Ensure some space between items */
}

.release-item h3 {
    font-size: 1.8rem;
    color: #fff;
}

.release-item p {
    color: #ccc;
}

#releases1 {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    margin-top: 3rem;
}

#releases1 h2 {
    color: #ffcc00;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.release-list1 {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.release-item1 {
    background: rgba(255, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    width: 45%;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.release-item1 h3 {
    font-size: 1.8rem;
    color: #fff;
}

.release-item1 p {
    color: #ccc;
}

.release-logo-img {
    width: 100%;
    max-width: 110px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.release-list1 {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.release-item1 {
  flex: 1;
}

/* Footer Styling */
footer {
    background: #111;
    padding: 1rem 0;
    color: #999;
    font-size: 1rem;
    box-shadow: 0 -5px 20px rgba(255, 0, 0, 0.5);
}

/* Animations */
@keyframes flicker {
    0% {
        text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8), 0 0 25px #ff0000, 0 0 5px #ff0000;
    }
    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 15px #ffcc00, 0 0 3px #ffcc00;
    }
    100% {
        text-shadow: 7px 7px 15px rgba(0, 0, 0, 0.8), 0 0 40px #ff0000, 0 0 8px #ff0000;
    }
}

@keyframes bgFlicker {
    0% {
        background-color: #1c1c1c;
    }
    50% {
        background-color: #333;
    }
    100% {
        background-color: #1c1c1c;
    }
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
    }

    .section {
        max-width: 95%;
        padding: 1.5rem;
    }

    .bio-content {
        flex-direction: column;
        align-items: center;
    }

    .bio-img {
        width: 200px;
        margin-bottom: 1.5rem;
    }

    .release-list {
        flex-direction: column;
    }

    .release-item {
        width: 100%; /* Full width on small screens */
    }

    #navbar .nav-links {
        flex-direction: column; /* Stack links vertically */
        gap: 1rem;
    }

    #navbar .nav-links li a {
        font-size: 1rem;
        padding: 1rem; /* Add padding to make links easier to click */
    }

    .logo img {
        max-width: 300px; /* Adjust logo size for smaller screens */
    }
}

/* Media Queries for Very Small Screens */
@media (max-width: 480px) {
    header h1 {
        font-size: 2.5rem;
    }

    .bio-img {
        width: 150px;
    }

    .release-item {
        width: 100%;
    }

    .bio-content {
        flex-direction: column;
    }

    #navbar .nav-links {
        gap: 0.5rem;
    }

    #navbar .nav-links li a {
        font-size: 0.9rem;
        padding: 0.8rem; /* More comfortable padding for small screens */
    }
}

@media (max-width: 600px) {
  #releases1 .release-list1 {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #releases1 .release-item1 {
    text-align: center;
    margin-bottom: 1rem;
  }

  #releases1 img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  h2, h3, p {
    font-size: 1rem;
  }
}
