
/* Content Platforms section */

#content-platforms {
    padding-top: 350px;
}

.content-platforms__wrapper {
    display: flex;
    flex-direction: column;
}

.content-platforms__mobile-divider-image--wrapper {
    display: none;
}

.content-platforms__written-content--wrapper {
    text-align: center;
}

.content-platforms__title--font-size {
    font-size: 50px;
}

.content-platforms__text--wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.content-platforms__text {
    width: 60%;
}

.content-platforms__text--font-size {
    font-size: 22px;
}

.content-cards__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 20vw);
    grid-row-gap: 20px;
    margin-top: 40px;
    justify-content: center; /* Space items evenly along the main axis */
    gap: 5vw;
    padding-inline: 5vw;
    z-index: 1;
}

.grid-columns {
    grid-template-columns: repeat(4, 20vw);
}

.content-card {
    position: relative;
    display: flex;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    aspect-ratio: 3/4;
}

.content-card__image {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.content-card__logo {
    object-fit: contain;
}

.content-card__logo--width {
    width: 15vw;
}

.logo-and-link__wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    left: 50%; /* Move the div to the horizontal center */
    transform: translateX(-50%); /* Adjust to center it precisely */
    bottom: 30%; /* Position the div 35% from the bottom */
}

.content-card__link-wrapper {
    display: flex;
    justify-content: center;
}

.content-card__link {
    text-align: center;
    text-decoration: none;
    position: relative;
    border-radius: 40px; /* Add border radius for rounded corners */
    padding-block: 25px;
    font-weight: 400;
    font-family: 'Raleway', 'Lato', Arial, Helvetica, sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: transform .3s;
}

.content-card__link:hover {
    transform: scale(1.03);
}

.content-card__link--width {
    width: 15vw;
}

.content-card__link-right-arrow--wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20px;
    aspect-ratio: 1;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.content-card__link--font-size {
    font-size: 17px;
}

.friends2follow-link {
    background-color: rgba(79, 66, 198, 1); /* Set the background color with transparency */
}

.OnlyFans-link {
    background: rgba(0, 0, 0, 1);
}

.OnlyFeetFans-link {
    background: linear-gradient(to right, rgba(0, 175, 239, 1), rgba(0, 140, 207, 1));
}

.Fancetro-link {
    background: linear-gradient(to right, rgba(118, 60, 189, 1), rgba(255, 163, 12, 1));
}

@media only screen and (max-width: 1600px) {
    #content-platforms {
        padding-top: 250px;
    }
}

@media only screen and (max-width: 1400px) {
    #content-platforms {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 1200px) {
    .content-cards__wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }

    .content-card__link--width {
        width: 26vw;
    }  

    #content-platforms {
        padding-top: 150px;
    }

    .content-card__link--font-size {
        font-size: 18px;
    }

    .content-platforms__text {
        width: 75%;
    }

    .content-card__logo--width {
        width: 30vw;
    }
}

@media only screen and (max-width: 1150px) {
    .content-platforms__title--font-size {
        font-size: 45px;
    }

    .content-platforms__text--font-size {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1050px) {
    .content-platforms__title--font-size {
        font-size: 45px;
    }

    .content-platforms__text--font-size {
        font-size: 20px;
    }

    #content-platforms {
        padding-top: 100px;
    }
}


@media only screen and (max-width: 600px) {
    #content-platforms {
        padding-top: 0;
    }

    .content-platforms__title--font-size {
        font-size: 30px;
    }

    .content-platforms__text--font-size {
        font-size: 18px;
    }

    .content-cards__wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
        padding-inline: 0;
        margin-top: 40px;
    }

    .content-card__image {
        border-radius: 0;
        height: 100svh;
    }

    .content-card__logo--width {
        width: 80vw;
    }

    .content-card__link--width {
        width: 75vw;
    }

    .content-card {
        position: relative;
        display: flex;
        border-radius: 0;
        box-shadow: none;
        aspect-ratio: 3/4;
    }

    .content-platforms__text {
        width: 100%;
    }

    .content-platforms__mobile-divider-image--wrapper {
        display: block;
        position: relative;
        height: 75svh;
        width: 100%;
        margin-bottom: 40px;
    }

    .content-platforms__mobile-divider-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .content-platforms__mobile-divider-image--wrapper::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        border-top: 50px solid transparent;
        border-left: 100vw solid var(--primary-color);
        z-index: 2;
    }

    .logo-and-link__wrapper {
        bottom: 35%; /* Position the div 35% from the bottom */
    }
}


/* End Content Platforms section */
