/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --card-bg: rgba(10, 10, 10, 0.8);
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 40px;
    background-image: url('img/wallpaper-large.jpg');
    background-image: url('img/wallpaper-large.avif');
    background-attachment: fixed;
    background-size: cover; /* L'image couvre tout l'écran */
    background-repeat: no-repeat; /* Pas de répétition */
    background-position: center; /* Centrage de l'image */

    position: relative; /* Nécessaire pour le pseudo-élément */
    z-index: 0; /* S'assure que le contenu reste au-dessus */
}


body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Couche noire semi-transparente */
    z-index: -1; /* Place le calque sous le contenu */
    pointer-events: none; /* Permet d'ignorer la couche lors des interactions */
}

/* Header */
header {
    margin: 40px 0;
}

.emoji {
    font-family: 'Noto Color Emoji', sans-serif;
    margin: auto 6px;
}

h1 {
    font-size: 4em;
    color: #ffffff;
    text-align: center;
    font-weight: 100;
}

.yulla-logo {
    max-width: 300px;
    margin-left: 13px;
}

/* Positionne le conteneur des drapeaux en haut à droite */
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.flag img {
    width: 24px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flag img:hover {
    transform: scale(1.1);
}

/* Container */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1240px;
    align-items: flex-start;
}

.container.hidden {
    display: none;
}
.hidden {
    display: none;
}
.container.centered {
    align-items: center;       /* Centre les éléments verticalement */
}

/* Social Box */
.social-box {
    /* background-color: #1e1e1eda; */
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    min-width: 320px;
    max-width: 350px;
}

.social-box h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 100;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Button styling */
.social-button {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #333333;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1em;
    transition: background-color 0.3s;
    justify-content: center;
}

/* Icon-text container for alignment */
.icon-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
}

.button-text {
    margin: auto;
}

.button-text.gold {
    font-weight: bold;
    background: linear-gradient(70deg, #ffbd16, #ffd700, #fffacd, #ffd900, #ffbd16, #ffd700, #fffacd);
    /* background: linear-gradient(70deg, #fffacd, #ffd700, #ffbd16); */
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s infinite linear;
}

.button-text.blue {
    color: #02AFF0;
    /* color: #0094ca; */
}
@keyframes shine {
    100% { background-position: 0% 50%; }
    0% { background-position: 100% 50%; }
    /* 100% { background-position: 0% 50%; } */
}

/* Icon styling */
.icon-text img {
    width: 26px;
    height: 26px;
    margin: 0 0 0 0;
}

.icon-text svg {
    width: 26px;
    height: 26px;
}


.social-button {
    transition: background-color 0.3s ease; /* Transition pour un effet de fondu */
    transition: filter 0.3s ease; /* Transition fluide pour l'effet */
}

/* Colors for specific buttons */
.social-button.instagram {background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-button.twitter { background-color: #000000; }
.social-button.onlyfans { background-color: #02AFF0; }
.social-button.onlyfansvip { background-color: #000000; border:1px solid #febe1d}
.social-button.onlyfansvip.blue { background-color: #000000; border:1px solid #02AFF0}
/* .social-button.chaturbate { background-color: #f29b18; } */
.social-button.chaturbate { background-image: linear-gradient(315deg, #eec78c 0%, #febe1d 58%, #fcae1e 69%, #f58420 92%, #f37321 100%); }
.social-button.stripchat { background-color: #9e1010; }
.social-button.twitch { background-color: #6441a4; }
.social-button.pornhub { background-image: linear-gradient(25deg, #FF9900 0%, #000 60%); }
.social-button.manyvids { background-color: #313131; }
.social-button.wishlist { background-image: linear-gradient(32deg, #4da6ff, #4d4dff 25%, #990aff 50%, #d11db3 75%, #ffc400); }
.social-button.bluesky { background-color: #0085ff; }
.social-button.pornhub:hover { background-color: #131313; }
.social-button.manyvids:hover { background-color: #2e2e2e; }
.social-button.twitter:hover { background-color: #131313; }
.social-button.onlyfansvip:hover { background-color: #131313; }
.social-button.onlyfansvip:hover { background-color: #131313; }


/* Au survol, appliquer une luminosité plus élevée */
.social-button:hover {
    filter: brightness(1.2); /* Augmente la luminosité de 20% */
}

.card {
    border: 0px solid #1e1e1e;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--card-bg);
    /* background-color: #1e1e1e; */
    text-align: center;
    max-width: 720px;
    min-width: 660px;
    margin: 0px;
}

.card h2 {
    margin-bottom: 20px;
}

.card-content {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-image {
    width: 180px;
    height: auto;
    margin-right: 20px;
    margin-left: 10px;
    border-radius: 8px;
}

.card-info {
    flex-grow: 1;
}

.gauge {
    width: 100%;
    height: 24px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.gauge-fill {
    height: 100%;
    background-color: #3082CE;
    border-radius: 12px;
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.card p {
    text-align: left; /* Alignement à gauche pour la lisibilité */
    margin-bottom: 20px;
}

.card-button {
    display: inline-flex;
    align-items: center; /* Centre le texte verticalement */
    padding: 10px 30px;
    color: #fff;
    background-color: #007bff;
    background-image: linear-gradient(32deg, #4da6ff, #4d4dff 25%, #990aff 50%, #d11db3 75%, #ffc400);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin: 10px auto 0; /* Centre le bouton horizontalement */
    text-align: center;
    transition: filter 0.3s ease; /* Transition fluide pour l'effet */
    align-items: center; 
    justify-content: center;

}

.card-button:hover {
    filter: brightness(1.2); /* Augmente la luminosité de 20% */

}

.card-button img {
    height: 20px;
    margin-right: 12px;
}

.text-card {
    border: 0px solid #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--card-bg);
    text-align: left;
    max-width: 720px;
    min-width: 660px;
    width: 100%;
    margin-bottom: 10px;
    
}

.text-card h3 {
    font-size: 1.3em;
    font-weight: 100;
    margin-bottom: 30px;
}

.text-card p {
    margin-bottom: 12px;
}

.text-card p:last-child {
    margin-bottom: 0;
}

.text-card .centered {
    text-align: center;
}

.trailer-container {
    display: flex;
    gap: 20px; 
    width: 100%; /* Par défaut, occupe toute la largeur disponible */
    max-width: 1200px;
    min-width: 720px;
    overflow: hidden;
    border-radius: 8px;
    margin: 10px 20px;

}

.video-container {
    flex: 1; /* Les vidéos prennent la même proportion de l'espace */
    aspect-ratio: 16 / 9; /* Maintient le ratio 16:9 */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-hover {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    transition: opacity 0.5s ease; /* Transition pour un effet de fondu */
    text-decoration: none;

}

.video-hover:hover {
    opacity: 1;
    cursor: pointer;
}

.cadre {
    display: flex;
    /* padding: 10px 30px; */
    /* border: 1px solid white; */
    /* border-radius: 4px; */
    padding-bottom: 2px;
    border-bottom: 1px solid white;
    margin: auto;
}

.video-hover h1 {
    font-size: 1.3em;
    font-weight: 100;
    margin: auto;

    /* text-decoration: underline; */
}

footer {
    margin-top: 70px;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: rgb(180, 180, 180);
}
footer a:hover {
    text-decoration: underline;
    color: rgb(255, 255, 255);
}
.age-title {
    margin-bottom: 30px;
}
.text-card button {
    padding: 14px 50px;
    border-radius: 4px;
    background-color: #1e1e1e;
    color: rgb(231, 231, 231);
    border: 0;
    margin-right: 6px;
    margin-top: 20px;
    font-size: 1em;
}
.text-card button:hover {
    filter: brightness(1.3); /* Augmente la luminosité de 20% */
    transition: filter 0.3s ease;
}
.text-card button.enter {
    background-color: #0056b3;
}
.text-card.age {
    text-align: center;
    margin-bottom: 200px;
}
.full-page {
    flex: 1;
    display: flex;
    align-items: center;
}
.full-page.hidden {
    display: none;
}

.list-card p {
    display: flex;
}

.list-card .dot {
    margin-right: 6px;
}

p.ul {
    margin-bottom: 4px;
}

p.li, div.li {
    padding-left: 30px;
    margin-bottom: 4px;
}

p.last-li, div.last-li {
    padding-left: 30px;
}

div.last-li {
    margin-bottom: 12px;
}

p.liu {
    margin-bottom: 4px;
}

p.end {
    margin-bottom: 20px;
}

p.high {
    margin: 30px auto;
}

#about-me .p {
    margin-bottom: 4px;
}

.list-card .big,
.text-card .big,
.card .big {
    font-weight: 600;
    margin-right: 10px;
}



.list-card .centered {
    text-align: center;
}

.large {
    font-size: 1.2em;
    font-weight: 100;
    margin: 30px auto;
}

h4 {
    font-size: 1.1em;
    font-weight: 100;
    margin-bottom: 20px;
}

.summary .summary-intro {
    margin-bottom: 10px;
}

.summary p {
    margin-bottom: 4px;
}


.summary a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 4px 20px 6px 16px;
    border-radius: 6px;
    background-color: rgba(36, 28, 78, 0.932);
    /* margin: 3px; */
    transition: background-color 0.5s ease;
}

.summary a:hover {
    /* font-weight: 600; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    background-color: rgba(89, 69, 190, 0.932);

}

.summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.text-card.largest {
    width: 100%;
}

.flex-container {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    
}

.table-card {
    display: flex; 
    flex-direction: column;
    width: 100%;
}

.table-card .table-row {
    display: flex;
    width: 100%;
    padding: 4px 0;
    justify-content: space-between; /* Répartit l'espace entre les éléments */
    align-items: center; /* Centrer verticalement */
}

.table-card .table-row .table-cell {
    text-align: left; 
    vertical-align: top; 
    gap: 20px;
}

.table-card.vibrations .table-row .table-cell:first-child {
    width: 160px;

}

.table-card.vibrations .table-row .table-cell:nth-child(2) {
    width: 50px;   
} 

.table-card.vibrations .table-row .table-cell:nth-child(3) {
    width: 80px;   
} 

.table-card.pattern .table-row .table-cell:first-child {
    width: 100px;
}

.table-card.pattern .table-row .table-cell:nth-child(2) {
    width: 40px;
}

.table-card.pattern .table-row .table-cell:nth-child(3) {
    width: 150px;
}

p.fr-info {
    margin-bottom: 30px;
    color:#b7dcff
}

.footer {
    text-shadow: 0px 0px 6px #000000;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #202020d0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 6px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease, visibility 0.5s ease, background-color 0.5s ease;
}

.scroll-to-top.hide {
    visibility: hidden;
    opacity: 0;
}

.scroll-to-top:hover {
    background-color: rgba(89, 69, 190, 0.932);
}

.toys-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 20px;

    /* margin-top: 40px; */
}

.toys-section h1 {
    font-size: 2.3em;
    margin-top: 20px;

}

.toys-section h2 {
    font-size: 1.4em;
    font-weight: 100;
    margin-top: 20px;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.toys-section h2:nth-child(2) {
    margin-top: 0px;
}

.size-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1240px;
    width: 100%;
    margin: 0;
}

.toy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0px solid #1e1e1e;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--card-bg);
    /* background-color: #1e1e1e; */
    text-align: center;
    min-width: 130px;
    max-width: 190px;
    min-height: 220px;
    /* width: 190px; */
    /* height: 250px; */
}

a.toy-card {
    text-decoration: none;
    color: white;
}

/* au hover l'element se déplace légèrement */
a.toy-card:hover {
    filter: brightness(1.2);
    transition: filter 0.3s ease, transform 0.3s ease;
    transform: translateY(-4px);
}

.toy-card.bdsm {
    padding: 16px 24px;
}

.toy-card h4 {
    margin-bottom: 6px;
}

.toy-card img {
    height: 160px;
    max-width: 100%;
}

.toy-card img {
    height: 160px;
    max-width: 100%;
}

.toy-card .toy-info:first-child {
    margin-top:6px;
}

.vertical-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.toy-card.bdsm img {
    height: auto;
    max-height: 160px;
    /* margin: auto 0; */
    align-items: center;
}

.toy-info {
    display: flex;
    flex-direction: row;
    color: #c5c5c5;
    font-size: 0.9em;
    gap: 8px
}

.toy-info span {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.toy-info span:first-child {
    flex: 2;
    justify-content: left;
}
.user-counter {
    margin: 20px auto 0;
}







@media (max-width: 660px) {
    /* Ajuste la carte pour un affichage vertical */

    .yulla-logo {
        max-width: 200px;
    }
    .card {
        min-width: 350px;
        margin: 10px 20px;
    }
    .card-content {
        flex-direction: column; /* Passe en mode vertical */
        align-items: center;
    }

    .card-image {
        margin-right: 0; /* Supprime la marge à droite */
        margin-bottom: 20px; /* Ajoute un espacement en bas de l'image */
        width: 100%; /* Adapte la largeur de l'image pour l'écran */
        max-width: 120px;
    }

    /* Organisation des boutons sur deux lignes */
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-button {
        flex: 1 1 45%; /* Chaque bouton prend environ la moitié de la largeur */
        margin-bottom: 10px;
    }

    .text-card {
        min-width: 350px;
        margin: 0 20px 10px;
    }

    .trailer-container {
        flex-direction: column; /* Empile les vidéos verticalement */
        min-width: 350px;
        gap: 20px; /* Ajustez l'espace entre les vidéos si nécessaire */
    }

    .video-container {
        width: 100%; /* Chaque vidéo prend toute la largeur du conteneur */
    }

    .flex-container {
        flex-direction: column;
    }

    .table-card {
        max-width: 320px;
        margin: 0 auto;
    }
}