
:root {
    --colorRose: #E40BC2;
}

@font-face {
    font-family: "Abeezee";
    src: url(/assets/fonts/ABeeZee-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "AbeezeeItalic" ;
    src: url(/assets/fonts/ABeeZee-Italic.ttf) format("truetype");
}

@font-face {
    font-family: "Allison";
    src: url(/assets/fonts/Allison-Regular.ttf) format("truetype");
}

.color1 {
    color: #E40BC2;
}

.color2 {
    color: white;
}

.color3 {
    color: yellow;
    text-shadow: 5px 5px 10px rgba(255, 255, 255, 0.587);
}

body {
    background-color: black;
}

/*------------------------------------------MODAL-----------------------------------------------------------------*/

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 5; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.900); /* Black w/ opacity */
  }

  /* The Close Button */
  .close {
    float: right;
  }
  
  .close:hover,
  .close:focus {
    text-decoration: none;
    cursor: pointer;
  }

/* ---------------------------------------- Pop up Cookies ------------------------------------------------
/* Box cookies */
.box-cookies {
    display: block;
    height: 100px;
    width: 100%;
    background-color: white;
    border-top: 1px solid #ccc;
}

/* Modal cookies */
.modal-cookies {
    display: block;
    position: fixed;
    z-index: 120;
    bottom: -120%;
    left: 0; 
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.363);
}

/* Classe pour la transition */
.slide-in {
    bottom: 0 !important; /* Définir la position bottom à 10% */
    transition: bottom 2s ease; /* Transition effect */
}

.slide-out {
    bottom: -100% !important; /* Définir la position bottom à 10% */
    transition: bottom 2s ease; /* Transition effect */
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

#btn-accept-cookies {
    background-color: #007bff;
    color: white;
    width: 70%;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

#btn-continue-without-accept {
    background-color: gray;
    color: white;
    width: 70%;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.zone-btn {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 40%;
}

#random-text {
    margin-right: 50px;
    text-align: justify;
    font-size: small;
    color: black;
    font-family: "Abeezee";
}

/*--------------------------------------------BODY----------------------------------------------------------------*/

body {
    margin: 0;
    color: white;
}

a {
    text-decoration: none;
}

.color {
    color: var(--colorRose);
}

.white {
    color: white;
}

/*---------------------------page accueil +18ans------*/
#pageAccueil {
    background-color: black;
    height: 100vh;
}

/* h1 utiliser pour le logo positionner sur le header */
h1 {
    font-family: 'Allison' !important;
    font-size: 12em;
    font-weight: lighter;
    letter-spacing: 0.05em;
    margin: 0;
    color: white;
}

h2, h3, h4, h5, h6, p, a {
    font-family: "Abeezee";
    margin: 0;
    color: white;
    font-weight: normal;
}

h4 {
    font-size: 1.1em;
}

/*------------------------------------ GESTION DES IMAGES --------------------------------------------------------*/

#imageLogoInstagram {
    height: 40px;
    width: 40px;
}

#imageLogoInstagram2 {
    height: 25px;
    width: auto;
}

#imageTwitter {
    height: 40px;
    width: 40px;
}

#imageAngleterre {
    height: 25px;
    width: 25px;
}

#imageFrance {
    height: 25px;
    width: 25px;
}

#imageUser {
    height: 30px;
    width: 30px;
}

#imageMym {
    height: 13px;
    width: auto;
}

#imageOnlyfans {
    height: 20px;
    width: auto;
}

#imageTiktok {
    background-color: white;
    height: 40px;
    width: auto;
}

#imageLeo {
    height: 40px;
    width: auto;
    background-color: beige;
}

#imageVinted {
    height: 40px;
    width: auto;
}

#imageAmazon {
    height: 40px;
    width: auto;
}

#imagePornhub {
    height: 40px;
    width: auto;
}

#imagePornhubFooter {
    height: 30px;
    width: auto;
}

#imageSwame {
    height: 40px;
    width: auto;
}

#imageSwameFooter {
    height: 17px;
    border: solid 3px white;
    border-radius: 20px;
    width: auto;
}

#imagePaypal {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

/*-------------------------------------------HEADER---------------------------------------------------------------*/
/* -------------------------header general css ----------------*/
header {
    background-color: black;
    display: flex;
    width: 100%;
    height: 25vh;
}

/* ----------------------------------logo reseaux sociaux css */
#conteurReseauxSocial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}

#boxRs {
    display: flex;
    width: 70%;
    height: 60px;
    align-items: center;
}

#boxRs > div {
    margin-left: 10px;
    transform-origin: center;
}

#boxRs div a img {
    transition-duration: 0.5s;
}

#boxRs div:hover {
    position: relative;
    animation: animate 0.4s infinite;
}

.logo-pornhub {
    border: solid 2px white;
    border-radius: 5px;
}

#boxRs div a img:hover {
    transition-duration: 0.5s;
    transform: scale(1.5);
}

@keyframes animate {
    0% {
        transform: rotate(5deg);
    }
    50%{
        transform: rotate(-5deg);
    }
    75%{
        transform:rotate(5deg);
    }
    100%{
        transform: rotate(-5deg);
    }    
}

/* --------------------barre de navigation et logo Bellatina css */
#conteneurLogoNav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: 100%;
}

#logo {
    display: flex;
    width: 100%;
    height: 65%;
}

#logo > div {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

#logo > div > a > h1 {
    line-height: normal !important;
}

#btnOpen {
    display: none;
}

#boxNav {
    width: 100%;
    height: 25%;
}

#display-responsive {
    display: none;
}

#nav {
    width: 100%;
}

#navbar {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 18px;
}

.separateur_horizontal {
    display: none;
}

#btnOpen {
    display: none;
}

#btnOpenClose {
    display: none;
}

#nav div div h2 {
    font-size: x-large;
}

.div-abonnement {
    display: flex;
    justify-content: center;
    align-items: center;
}

.a-abonnement {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
}

/* bouton navigation menu */
#btnAccueil, #btnVisio, #btnVideostore {
    font-weight: lighter;
}

/* ---------------box changement langue et identification css */
#conteneurConnexionLangue {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

/*---------------------- box identification css -------------*/
#display-responsive {
    display: none;
}

#boxUser {
    display: flex;
    align-items: center;
    height: 70%;
    flex-direction: row;
    z-index: 10 !important;
}

#user {
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#connection a > h2 {
    color: var(--colorRose);
    font-weight: lighter;
    margin-left: 5px;
    margin-bottom: 0 !important;
}

#connection:hover {
    cursor: pointer;
}

/* ------------------------box changement langue---------------*/
#boxLangue-responsive {
    display: none;
}

#boxLangue {
    width: 100%;
    margin-right: 50px;
    align-items: center;
    justify-content: end;
    display: flex;
}

/* Style du bouton principal */
.dropbtn {
    background-color: rgba(255, 255, 255, 0.103);
    border: none;
    display: flex;
    align-items: center;
    width: 75px;
    color: white;
    padding: 8px;
    font-size: 16px;
    border: solid 2px white;
    cursor: pointer;
  }

  .show {
    display: flex !important;
    z-index: 50;
  }

  .label {
    font-size: large;
    font-family: "Abeezee" !important;
  }
  
  /* Style des éléments du menu déroulant */
  .dropdown-content {
    display: none;
    position: absolute;
    flex-direction: column;
    border: solid 2px white;
  }
  
  .dropdown-content a {
    display: block;
    background-color: rgba(255, 255, 255, 0.103);
    color: white;
    padding: 8px;
    text-decoration: none;
  }

  #connection-admin {
    margin-left: 20px;
    border-radius: 25px;
  }

  #connection-admin > a > span {
   padding: 0px 10px 0px 10px;
   font-size: x-large;
   color: white;
  }

  #connection-admin > a {
   margin: 0;
   padding: 0;
  }
  
  .dropdown-content a:hover {
    background-color: #E40BC2;
  }
  
  /* Style des drapeaux */
  .flag {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

/*-------------------------------POP-UP----------------------------------------*/
/*-----------------------------------------------------------------------------*/
#pop-up-connexion {
    position: absolute;
    position: fixed;
    display: flexbox;
    width: 30%;
    height: 80%;
    top: 5%;
    background-color: black;
    border: solid 5px var(--colorRose);
}

/* ---------------------------------------------------------MAIN -------------------------------------------------*/
/*------------------ MAIN CARROUSSEL DE MENU  ------------------------------*/
/* INIT DES CONFIG NIMI DU MAIN*/
main {
    width: 100%;
    height: auto;
}

/*BOX MENU CONTIENT LES PARAMETRES CSS DU MENU MAIN*/
#carrousel-id {
	width: 100%;
    margin: auto;
    height: 85vh;
}

.carrousel {
    width: 100%;
    margin: 0;
    position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
    height: 85vh;
}

.active {
    transition: opacity 1.5s ease-in-out;
    z-index: 20 !important;
}

/*CHEVRON DE NAVIGATION FORCER DU MENU MAIN*/
.chevron {
    position: absolute;
}

#carrousel-id .chevron img {
    width: 50px;
    height: 50px;
    z-index: 30;
}

#carrousel-id .chevron {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 60%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.315);
    cursor: pointer;
    transition-duration: 0.8s;
}

#carrousel-id .chevron:hover {
    background-color: rgba(255, 255, 255, 0.123);
    transition-duration: 0.8s;
}

#carrousel-id .chevron.left {
    left: 25px;
    z-index: 50;
}

#carrousel-id .chevron.right {
    right: 25px;
    z-index: 50;
}
  
.carrousel > img {
    height: auto;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

/*PARAMETRE DE LA BOX QUI CONTIENT LE TEXTE ET LE BOUTON*/
.boxText {
	display: flex;
	position: absolute;
	z-index: 10;
	width: 60%;
	height: 15vh;
	flex-direction: column;
	align-items: center;
	top: 10vh;
}

.boxText > div {
	display: flex;
}

.boxText > div > span > p {
	display: inline-block;
    font-size: 15em;
	font-family: "Allison";
}

.rose {
    color: #E40BC2;
}

/*BOUTON DIRECTION LIENS*/
.btn-menu {
	border: solid 4px white;
	padding: 20px 150px 20px 150px;
    background-color: transparent;
    color: white;
	font-size: 2.5em;
}

.btn-menu:hover {
	border: solid 4px #E40BC2;
}

/*-------------------------FIN DE CARROUSEL MENU MAIN--------------*/
/*---------------------------- modal overlay titre ------------*/
#titreAccueil {
    width: 100%;
}

#boxOverlay {
    width: 60%;
    margin-left: 20%;
    background-color: rgba(0, 0, 0, 0.21);
}

#boxOverlay > h2 {
    font-size: 20em;
    font-family: "allison";
    text-align: center;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.121);
}
/*------------------Modal accueil------------------------------*/
#conteneurAccueil {
    width: 80%;
    margin-left: 10%;
    position: absolute;
    top: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#boxTextAccueil {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#boxTextAccueil > h2 {
    margin-bottom: 40px;
    font-size: 4.5em;
}

#boxTextAccueil >  p {
    font-size: 1.3em;
}

#boxBtnAccueil {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin-top: 60px;
}

#boxBtnAccueil > div  {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 25px;
}

#boxBtnAccueil > div > a  {
    font-size: 1.2em;
}

.close {
    color: white;
    font-size: 1.2em;
    font-family: "abeezee";
}

#btnOui {
    background-color: var(--colorRose);
    border: 3px solid var(--colorRose);
    transition-duration: 0.8s;
}

#btnNon {
    background-color: black;
    border: 3px solid white;
    transition-duration: 0.8s;
}

#boxTextEnSavoirPlus {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60%;
    height: 50px;
}

#boxTextEnSavoirPlus > a > p {
    color: var(--colorRose);
}

/*-------------------- modal accueil hover --------------------*/

#btnOui:hover {
    border-radius: 25px;
    border: solid 2px white;
    box-shadow: 0 12px 16px 0 rgba(255, 255, 255, 0.24), 0 17px 50px 0 rgba(255, 255, 255, 0.19);
}

#btnNon:hover {
    background-color: white;
    box-shadow: 0 12px 16px 0  rgba(255, 255, 255, 0.24), 0 17px 50px 0 rgba(255, 255, 255, 0.19);
}

#btnNon > a:hover {
    color: black;
}

/*------------------ page en savoir plus ---------------------*/

#conteneurAbout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#boxTextAbout {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#boxTextAbout > div {
    display: flex;
    width: 100%;
    height: 50px;
}

#boxTextAbout > div > h4 {
    font-size: 1em;
    color: var(--colorRose);
}

#boxTextAbout > h3 {
    font-size: 1.28em;
    font-weight: bold;
    margin-bottom: 50px;
    text-decoration: underline;
}

#boxTextAbout > p {
    text-align: justify;
}

#boxRetour {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
}

#btnRetour {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 90%;
    border-radius: 25px;
    background-color: var(--colorRose);
    transition-duration: 0.8s;
}

#btnRetour {
    font-size: 1.2em;
    color: white;
}

/*------------------ page index ------------------------------*/
.main_container {
    width: 80%;
    height: 90vh;
    margin-left: 10%;
    background-color: #E40BC2;
    display: flexbox;
    color: black;
}

.main_container > form > div {
    display: flexbox;
    flex-direction: column;
}

#variant1 {
    width: 100%;
    height: 90vh;
    /* background: url(./assets/images/ef3a5d_2964c3ecae7e4c44ab1d44c92da91a33_mv2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

.boxVariant {
    display: flex;
}

/*----------------------------------------------------FOOTER------------------------------------------------------*/

footer {
    width: 100%;
    background-color: black;
}

#conteneurFooter {
    display: flex;
    justify-content: center;
    height: 70%;
}

#conteneurFooter div h4 {
    font-size: x-large;
}

#piedDePage {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 30%;
}

#followMeResponsive {
    display: none;
}

/*-------mentions legales ---------------------------*/
#mentions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 100%;
    margin-top: 15px;
}

#mentions > a {
    margin-top: 10px;
}

#mentions a h5 {
    font-size: medium;
}

#followMe {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 100%;
    margin-top: 15px;
 }

#followMe > a {
    margin-top: 10px;
    color: white;
}
.filleul {
    color: red;
}

.bold {
    font-weight: bold;
}

.margin-top {
    margin-top: 5px !important;
}

#partenaire {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 100%;
    margin-top: 15px;
}

#partenaire > a {
    margin-top: 10px;
}

#partenaire a h5 {
    font-size: medium;
    text-align: center;
}

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 100%;
    margin-top: 15px;
}

#about > a {
    margin-top: 10px;
}

#about a h5{
    font-size: medium;
}


/*---------pied de page ----------------------------*/
#piedDePage {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

#byLogo {
    width: 80%;
    height: 20px;
}

#byLogo > p {
    font-size: 1.1em;
}

#line {
    background-color: white;
    height: 2px;
    width: 80%;
}

#productBy {
    display: flex;
}

#productBy > h4 , a {
    color: gray;
    font-size: 0.8em;
    padding: 2px;
}

/*---------------------Noel ----------------------------------*/
@keyframes scaleAnimation {
    0%, 100% {
        transform: scale(0.1) translateX(-10px);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1) translateX(100px);
    }
}

.box-evennement {
    position: absolute;
    height: 90px;
    width: 300px;
    left: 0%;
    z-index: 1;
    animation: scaleAnimation 5s forwards; /* Animation se produit 2 fois */
}

.box-evennement > img {
    width: auto;
    height: 80%;
}

.box-evennement > p {
    font-family: "Allison";
    font-size: larger;
}

.box-evennement:hover {
    animation: scaleAnimation 2s forwards; /* Annule l'animation normale lors du survol */
}
