/* Profile Container */
.profile-container {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px; /* Optional: set a maximum width */
    border: 1px solid #ddd; /* Optional: border around profile section */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: #f9f9f9; /* Optional: background color */
    margin-top: 70px; /* Ensure space from the fixed header */
}

.profile-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px; /* Optional: rounded corners for image */
    margin-right: 20px;
}

.profile-details {
    flex-grow: 1;
}

.profile-details p {
    margin: 5px 0;
}

.profile-details strong {
    font-weight: bold;
}

/* Discography Section */
.discography-container {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px; /* Optional: set a maximum width */
    border: 1px solid #ddd; /* Optional: border around discography section */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: #f9f9f9; /* Optional: background color */
}

.album-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between album divs */
    flex-wrap: wrap; /* Wrap items to the next line if necessary */
}

.album {
    text-align: center;
    flex: 1; /* Allow albums to grow equally */
    max-width: 200px; /* Optional: set a maximum width */
}

.album img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px; /* Optional: rounded corners for images */
    margin-bottom: 10px;
}

.album p {
    margin: 0;
    font-size: 14px;
}

/* Awards Section */
.awards-container {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px; /* Optional: set a maximum width */
    border: 1px solid #ddd; /* Optional: border around awards section */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: #f9f9f9; /* Optional: background color */
}

.awards-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.awards-container li {
    margin-bottom: 5px;
}

/* Social Media Section */
.social-media-container {
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 800px; /* Optional: set a maximum width */
}

.social-icon {
    margin: 0 10px;
    display: inline-block;
    color: #333;
    font-size: 24px; /* Adjust size as needed */
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff; /* Change color on hover */
}

/* Embedded Player Section */
.player-embed-container {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px; /* Optional: set a maximum width */
    border: 1px solid #ddd; /* Optional: border around player section */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: #f9f9f9; /* Optional: background color */
}

.player-embed {
    border-radius: 12px;
}
