@import url(../FONTS/font-stylesheet.css);
@import url(../FONTS/specimen_files/specimen_stylesheet.css);


body{
    background-color: black;
    background-image: url('../IMAGES/CURRENT ARTWORK/grayMApattern.svg');
    background-repeat: repeat;
    background-size: 360px;
    background-position: center;
    background-attachment: fixed;
    background-color: rgba(255, 0, 0, 0.5);
    z-index: -1;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll issues */
    font-family: Georgia, 'Times New Roman', Times, serif;
}


/* Hero Section Styling */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background-color: #0e0e0eff;
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* box-shadow: 0px 0px 43px 43px #ff202044, 0px 0px 24px 0px rgb(229, 255, 0), 0px 0px 24px 0px #ffb00000 inset; */
    /* box-shadow: 0px 0px 143px 13px rgb(255, 13, 13); */
    border: 14px solid #5e001cff;
}

.image {
    padding: 10px 10px 0px 10px;
    border-radius: 50% 50% 0% 0%;
}

.header {
    padding: 10px 50px 10px 50px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    max-width: 400px;
}

h1 {
    font-size: clamp(2.4rem, 10vw, 9rem);
    margin: 0;
    font-family: 'Yeseva One', 'Times New Roman';
    font-weight: 100;
    padding-bottom: 30px;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between; /* Space between logo and nav-links */
    align-items: center;
    background-color: #0e0e0eff;
    position: relative; /* Keep the navbar fixed at the top */
    width: 100%;
    z-index: 1000; /* Ensure it stays above other content */
    height: 90px;
    box-shadow: 0px -10px 0px 0px #cc001fff, 0px 10px 0px 0px #5e001cff, 20px 0px 50px -5px black;
    margin: 10px 0px 0px 0px;
}

/* Sticky navbar */
.navbar.sticky {
    position: fixed; /* Make it fixed when sticky */
    top: -10px; /* Stick it to the top */
}

.sticky + #content {
    padding-top: 150px;
}

/* Logo container to group logo and text */
.logo-container {
    display: flex;
    align-items: center; /* Align logo and text vertically */
}

/* Logo styling */
.logo img {
    max-height: 90px; /* Adjust height as needed */
    min-height: 50px;
    padding: 5px 0px 5px 0px;
}

/* Logo text styling */
.logo_name a {
    color: white;
    font-family: 'Yeseva One', 'Times New Roman';
    font-weight: 100;
    text-decoration: none;
    font-size: 2rem; /* Adjust font size */
    padding-left: 15px; /* Space between logo and text */
}

/* Navigation links styling */
.nav-links {
    display: flex;
    justify-content: flex-end; /* Align links to the right */
    margin-right: 20px;
    overflow-x: wrap;
    gap: 5px;
}

.nav-links a {
    display: flex;
    justify-content: center; /* Center the text horizontally inside the button */
    align-items: center; /* Center the text vertically inside the button */
    text-align: center; /* Ensure text is centered */
    white-space: normal; /* Allow text to wrap inside the button */
    max-width: 200px; /* Optional: Limit width if needed */
    word-wrap: break-word; /* Break long words if needed */
    color: white; /* Change text color */
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    text-decoration: none;
    padding: 20px 15px;
    border-radius: 5px;
    transition: background 0.3s; /* Add transition for hover effect */
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Change background on hover */
}

#newest-release, #about, #discography, #contact, #merch {
    scroll-margin-top: 120px; /* Adjust this value based on your navbar height */
}

/* Main Content Section */
*, *::before, *::after {
    box-sizing: border-box;
}

#content {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 50px;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
    padding-bottom: 30px;
}

/* General Section Styling */
.content-blob {
    width: fit-content;
    max-width: 80%;
    margin: auto;
    padding: 20px 10px;
    background-color: /*#cc001fff*/#5e001cff;
    border: 7px solid #cc001fff;
    /*box-shadow: 0px 0px 24px 5px rgba(255, 0, 0, 0.7);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

/* Content Layout */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    flex-wrap: wrap; /* Allows responsive stacking */
    max-width: 1200px;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.2); */
}

/* Text Content Styling */
.text-content {
    flex: 1;
    padding: 10px;
    text-align: center;
    margin-right: 20px;
}

.text-content h2 {
    font-family: 'Yeseva One', 'Times New Roman';
    font-size: 2em;
    font-weight: 100;
    margin-bottom: 20px;
}

.text-content p {
    margin-bottom: 10px;
    font-size: 1.2em;
    line-height: 1.6;
}

.text-content p a {
    color: black;
}
.text-content p a:hover {
    color: lightgrey;
}

.text-content .btn, .text-content .btnOoO {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cd0000ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    font-size: 1em;
}
.text-content .btnOoO {
    pointer-events: none;
    color: darkgray;
    background-color: rgb(69, 69, 69);
}
.text-content .picButton {
    background-color: none;
    box-shadow: none;
}

/* Image Content Styling */
.image-content {
    flex-basis: 300px;
    padding: 10px;
    margin-right: 20px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.cover-art {
    width: 300px;
    height: 300px;
    background-color: #333;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    color: #fff;
    font-size: 1.2em;
    border-radius: 5px;
    overflow: hidden;
}
.cover-art img {
    width: 100%;
    height: auto;
}
.cover-art p {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-content .btn, .image-content .btnOoO {
    display: inline-block;
    margin: auto;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #1db954; /* Spotify green */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'donegal_oneregular', 'Arial';
}
.image-content .btnOoO {
    pointer-events: none;
    color: darkgray;
    background-color: rgb(69, 69, 69);
    font-family: 'donegal_oneregular', 'Arial';
}

/* DISCOGRAPHY SECTION */
#discography, #merch {
    background-color: rgb(70, 70, 70);
    /*box-shadow: 0px 0px 24px 10px rgba(255, 255, 255, 0.4);*/
    border: 7px solid #1e1e1eff;
}
#discography .content-container {
    display: flex;
    flex-direction: column; /* Stack text content and images vertically on wider screens */
    text-align: center;
}

#discography .text-content {
    margin-bottom: 20px;
    width: 100%;
}

/* Image Grid Styling */
#discography .image-content {
    /* background-color: rgba(255, 0, 0, 0.5); */
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#discography .cover-art {
    width: 300px;
    margin: 10px;
    position: relative;
}

#discography .cover-art #lightkeeper-gray {
    filter: grayscale(70%);
}

/* Contact Section */
#contact .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 20px;
    filter: invert(100%);
}

.social-icons a {
    text-decoration: none;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s; /* Smooth hover effect */
}

.social-icons img:hover {
    transform: scale(1.2); /* Slight enlarge on hover */
}

#merch {
    background-color: rgb(70, 70, 70);
    /*box-shadow: 0px 0px 24px 10px rgba(255, 255, 255, 0.4);*/
}


/* Footer Styling */
#footer {
    display: block;
    padding: 20px;
    background-color: #000000; /* Solid background for footer */
    text-align: center;
    height: auto;
}

#footer p {
    margin: 0;
    font-size: 0.9em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }

    .header {
        padding: 0px 3px;
    }

    .content-blob {
        max-width: 100%;
        width: 100%;
        padding: 10px;
    }

    .content-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        width: 100%; /* Ensure it takes full width */
        padding: 0; /* Reset padding to avoid extra spacing */
    }
    
    .image-content {
        margin-top: 20px;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .text-content h2 {
        font-size: 1.8em;
    }
    .text-content p {
        font-size: 1.0em;
    }

    .cover-art {
        max-width: 250px;
        max-height: 250px;
    }

    .logo-container .logo_name{
        display: none;
    }
    .logo-container .logo img{
        width: 60px;
        height: auto; /* Maintain aspect ratio */
    }

    .nav-links {
        justify-content: center; /* Center the nav links */
        margin: auto;
        margin-right: 0; /* Remove right margin */
        flex-wrap: wrap; /* Allow the links to wrap */
        padding: 2px 2px;
    }

    .nav-links a {
        padding: 10px 5px; /* Reduce padding for smaller buttons */
        font-size: 0.9em; /* Adjust font size if needed */
    }

    .navbar {
        height: auto;
    }

    .sticky + #content {
        padding-top: 130px;
    }
}