/* Base styles */
body {
    font-family: 'New Rocker', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
}

.logo {
    max-width: 200px;
    display: block;
    margin: 0 auto 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

.header-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-group {
    color: #F3BF43;
    font-size: 0.9em;
    margin-right: 10px;
}

.nav-icons {
    display: flex;
    gap: 10px;
}

.nav-icon, .footer-icon {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icon:hover, .footer-icon:hover {
    color: #ffc107;
}

.nav-icon svg, .footer-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Main content */
main {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.album-cover {
    margin-bottom: 20px;
}

.album-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .container {
        width: 70%;
        max-width: 800px;
    }
}

/* Listen buttons */
.listen-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 350px; /* Set a fixed width for all buttons */
}

.btn .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn-spotify {
    background-color: #1DB954;
    color: white;
}

.btn-spotify:hover {
    background-color: #1ed760;
}

.btn-apple {
    background-color: #FA243C;
    color: white;
}

.btn-apple:hover {
    background-color: #fb3b50;
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background-color: #ff1a1a;
}

/* About section */
.about {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.about h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
    color: #d4d4d4; /* Light gray instead of gold */
    font-weight: normal; /* Less bold than h2 */
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Previews page */
.soundcloud-embed {
    margin: 2rem 0;
}

.soundcloud-embed iframe {
    height: 600px; /* Increased height to show more songs */
}

.feature-point {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-point::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #F3BF43;
}

.about a {
    color: #F3BF43;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about a:hover {
    color: #ffc107;
    text-decoration: underline;
}
