/* Container styles */


@media (min-width: 600px) {
    .container {
        max-width: 80%;
    }
}

img,
.profile-image {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    text-align: center;
    /* font-family: 'Courier New', monospace; */
    font-size: 2.5rem;
    color: #1DB954;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.spotify-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.spotify-section h2 {
    text-align: center;
}

.projects-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    /* flex-wrap: wrap; */
    justify-content: center;
}

.project-card {
    background: #282828;
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: #1DB954;
}

.project-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.project-card h3 a {
    color: #1DB954;
    text-decoration: none;
}

.project-card p {
    color: #b3b3b3;
    line-height: 1.5;
}

.spotify-buttons {
    display: flex;
    gap: 1rem;
}

/* Button styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1ed760, #1DB954);
}

.btn-secondary {
    background: #282828;
    color: white;
}

.btn-secondary:hover {
    background: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .spotify-section {
        flex-direction: column;
        padding: 1rem;
    }

    .projects-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .project-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem;
        margin: 0 2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Profile section styles */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.profile-image-container {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    overflow: hidden;
}

.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}