section{
    /* display: flex; */
    /* align-items: stretch; */
    flex-direction: column;
    row-gap: 10px;
}

/*for all*/

section > .header{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;

}

.floating{
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}

.padding{
    padding: 50px 100px;
}

section .right{
    text-align: right;
}

section .action{
    justify-content: end;
    display: flex;
    gap: 10px;
}

@media only screen and (max-width: 768px) {
    .padding{
        padding: 20px;
    }
}

/* for artist */

section > .artist{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media only screen and (max-width: 768px) {
    section > .artist {
        flex-direction: column;
        align-items: center;
    }
}

section > .artist > .artist-details{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.artist .main-photo{
    height: 500px;
    object-fit: cover;
}

/* section > .artist >.artist-details .socials{
    display: flex;
    flex-flow: row wrap;
    gap: 5px 10px;
} */

section > .artist >.artist-details .skills{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0px 3px;
}

section.artist .all-photos ,
.artist-all-photos{
    display: flex;
    gap: 10px;
    flex-wrap: nowrap; 
    overflow: auto;
}

/* section.artist .scrollable{
    display: flex;
    flex-direction: column;
    max-height: 200px;
    flex-wrap: nowrap; 
    overflow: auto;
} */

/*for home*/

section.main-header{
    display: flex;
    flex-direction: column;
    position: relative;
}

section.main-header > .photo{
    position: relative;
    overflow: hidden;
    max-height: 70vh;
    width: 100%;
    margin-bottom:-10rem;
}

section.main-header img {
    width: 100%;
    object-fit:cover;
    height: 400px;
}

section.main-header .gradient-overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--black), transparent);
}





/* ================================cards================================ */

.myCards {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
}

/* Card styling */
.myCard {
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    position: absolute;
    position: relative;
    color: white;
}

@media only screen and (max-width: 768px) {
    .myCard {
        height: 400px;
    }
}

/* Image container with gradient overlay and text overlay */

.myCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Gradient overlay */
.myCard .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.myCard .manager {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
}

/* @media only screen and (max-width: 768px){
    .myCard .manager{
        right: 10px;
        left: 10px;
    }
} */

/* Talent information styling overlaying the image */
.myCard .info {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    text-align: left;
    z-index: 2;
}

.myCard .info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.myCard .info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ddd;
}

/* ============social media chips ==============*/


.social-chips{
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-chips > img{
    height: 20px;
}

/* =============staff ==============*/

.home-staff img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}
