/* --- General Design --- */
body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    background-color: #f5f5f5;
    /* padding-bottom: 80px;  <-- This is no longer needed */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* --- Header --- */
.header-image {
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added for hover effect */
}

/* --- Hover effect for linked images --- */
.playlist-section a:hover .header-image {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


/* --- Primary Call-to-Action Button --- */
.btn-spotify {
    background-color: #1DB954;
    color: white;
    border: none;
    border-radius: 500px;
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-spotify:hover {
    background-color: #1ed760;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-spotify .fab {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* --- About Me Section --- */
.about-me-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.about-me-section h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-me-section p {
    color: #6c757d;
    line-height: 1.7;
}


/* --- Email Signup Overlay --- */
#email-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.overlay-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
}

.form-control {
    border-radius: 500px;
    padding: 20px;
}

.btn-subscribe {
     background-color: #007bff;
     color: white;
     border-radius: 500px;
     padding: 10px 30px;
     font-weight: bold;
     margin-top: 1rem;
}

/* --- Footer --- */
.footer {
    /* position: fixed; <-- REMOVED */
    /* bottom: 0; <-- REMOVED */
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 1.5rem 0; /* Added padding for spacing */
    margin-top: 3rem; /* Added margin for spacing */
}

.imprint-collapse {
    display: none;
    padding: 40px 20px;
    margin-top: 20px;
    background-color: #f8f9fa;
}
