@font-face {
    font-family: 'Raleway';
    src: url('/fonts/Raleway-Regular.woff2') format('woff2'),
        url('/fonts/Raleway-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #6495ED;
    text-align: center;
    font-weight: 400;
}

.page-container {
    display: flex;
    flex-direction: column;
    height: 100svh;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.content-cards__wrapper {
    height: 100%;
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    margin-block: 0;
    padding-inline: 0;
    grid-gap: 0;
}

.content-card {
    position: relative;
    flex-shrink: 0;
    margin-top: 50px;
    width: 100vw;
    padding-inline: 5vw;
    scroll-snap-align: start;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    aspect-ratio: auto;
}

.content-card__image {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 100%;
    display: block;
}


.content-card__logo {
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.content-card__link-wrapper {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10%;
    width: 100%;
    left: 0;
}

.content-card__link {
    text-align: center;
    text-decoration: none;
    position: relative;
    border-radius: 30px;
    padding-block: 20px;
    font-weight: 500;
    font-family: 'Raleway', 'Lato', Arial, Helvetica, sans-serif;
    color: #ffffff;
    letter-spacing: 0.6px;
}

.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: 18px;
}

.content-card__logo--width {
    width: 75vw;
}

.content-card__link--width {
    width: 70vw;
}

.friends2follow-link {
    background-color: rgba(79, 66, 198, 1); /* Set the background color with transparency */
}

.OnlyFans-link {
    background: rgba(0, 140, 207, 1);
}

.fancentro-link {
    background: #FFA30C;
    color: #000;
}

.webiste-link {
    background: rgba(54, 118, 232, 1);
}

.carousel-dot-indicator {
    margin-top: 30px;
    display: block;
    justify-content: center;
    display: flex;
    gap: 10px;
}
  
.dot {
    height: 12.5px;
    width: 12.5px;
    margin: 0 5px;
    border: 1px solid #ffffff;
    background-color: transparent;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.dot.active {
    background-color: #ffffff;
} 

footer {
    text-align: center;
    width: 100%;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}


footer p {
    font-size: 14px;
}


@media only screen and (min-width: 401px) {
    footer p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 601px) {
    .page-wrapper {
        justify-content: center;
    }

    .content-wrapper {
        flex-grow: 0;
    }

    .content-cards__wrapper {
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        margin-block: 25px;
        padding-inline: 2.5vw;
        grid-gap: 25px;
    }

    .content-card {
        width: auto;
        position: relative;
        display: flex;
        padding-inline: 0;
        padding-top: 0;
        border-radius: 20px;
        aspect-ratio: 3/4;
    }

    .content-card__link {
        transition: transform .3s;
    }
    
    .content-card__link:hover {
        transform: scale(1.03);
    }

    .content-card__logo--width {
        width: 35vw;
    }

    .content-card__link--width {
        width: 30vw;
    }

    .carousel-dot-indicator {
        display: none;
    }  
}

@media only screen and (min-width: 750px) {
    .content-cards__wrapper {
        grid-template-columns: repeat(2, 40vw);
    }

    .content-card__logo--width {
        width: 30vw;
    }

    .content-card__link--width {
        width: 25vw;
    }
}

@media only screen and (min-width: 950px) {
    .content-cards__wrapper {
        grid-template-columns: repeat(2, 30vw);
        grid-gap: 50px;
        margin-block: 50px;
    }

    .content-card__link--font-size {
        font-size: 16px;
    }

    .content-card__logo--width {
        width: 25vw;
    }

    .content-card__link--width {
        width: 20vw;
    }
}

@media only screen and (min-width: 1200px) {
    .content-cards__wrapper {
        grid-row-gap: 20px;
        justify-content: center; /* Space items evenly along the main axis */
        z-index: 1;
        grid-template-columns: repeat(3, 25vw);
        gap: 5vw;
    }

    .content-card__logo--width {
        width: 15vw;
    }

    .content-card__link--width {
        width: 15vw;
    }  
}

@media only screen and (min-width: 1600px) {
    .content-card__link--font-size {
        font-size: 17px;
    } 
}