/* styles.css */

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

/* Dark mode body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    line-height: 1.6;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensures full-height centering */
}

/* Container for content */
.container {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e; /* Slightly lighter dark background */
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Header section */
header {
    margin-bottom: 30px;
}

/* Headings with heartbeat animation */
h1 {
    font-size: 3em;
    color: #1DB954; /* Spotify green */
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Heartbeat animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Description under heading */
.description {
    font-size: 1.2em;
    color: #b0b0b0;
}

/* Spotify Embed Section */
.spotify-embed {
    margin-bottom: 40px;
}

.spotify-embed h2 {
    font-size: 2em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Footer section */
footer {
    margin-top: 40px;
}

footer a {
    text-decoration: none;
    color: #1DB954; /* Spotify green */
    font-size: 1.1em;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f1f1f1; /* Light hover effect */
    text-decoration: underline;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 20px auto;
    }

    h1 {
        font-size: 2.5em;
    }

    .spotify-embed h2 {
        font-size: 1.8em;
    }

    footer a {
        font-size: 1em;
    }
}
