@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');

/*****
INDEX
*****/
.advertize {
	text-align: center;
}

/****
HOME
****/

.home-img-box {
	display: flex;
	justify-content: center;
}

.main-home {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	margin-top : 1.6rem;
	margin-bottom: 1.6rem;
	padding: 0 1.2rem;
}

.main-home-img {
	display: block;
	width: 100%;
}

.main-text {
	text-align: left;
	padding:0px 5px;
}

/***********
INFO - BDSM
***********/
.info-bdsm {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 3.2rem;
	grid-row-gap: 3.2rem;
	text-align: center;
	align-items: center;
}

.info-bdsm-img {
	height: 100%;
	box-shadow: 0.1rem 0.1rem 0.5rem 0.5rem #333;
	border-radius: 5px;
}

.info-bdsm ul {
	display: flex;
	flex-direction: column;
	font-size: 1.2rem;
	gap: 1.2rem;
	list-style: none;
}

/*********************
RUBRIQUES INFORMATIVES
PRATIQUES DIVERSES
ACCESSOIRES DIVERS
CONTRATS / LIMITES
**********************/
.subsection {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	margin: 5px 10px;
}

.subsection ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	font-size: 1.2rem;
	grid-column-gap: 1.2rem;
	grid-row-gap: 1.2rem;
	list-style: none;
	margin-bottom: 2.4rem;
}

.subsection ul li {
	padding: 10px;
}

.subsection img {
	width: 800px;
	border-radius: 20px;
	box-shadow: 0.1rem 0.1rem 0.5rem 0.5rem #333;
}

/*****************************
RUBRIQUES INFORMATIVES SECTION
******************************/
.sectionrubriques {
	padding: 0px 20px;
}

.sectionrubriques p {
	margin-bottom: 1.2rem;
}

.sectionrubriques ul {
	font-size: 1.4rem;
	margin-left: 3.2rem;
	line-height: 1.4;
	margin-bottom: 2.4rem;
}

.sectionrubriques ol {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-left: 3.2rem;
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 2.4rem;
}

.sectionrubriques ol li::marker,
.sectionrubriques ul li::marker {
	color : white;
}

/*********
POLITIQUE
*********/
.politique {
	display: flex;
	flex-direction: column;
	font-size: 1.2rem;
	gap: 1.2rem;
	list-style: none;
	margin-left: 2.4rem;
}

.politique li {
	text-align: left;
}

/* NAVBAR - DESKTOP MODE */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  	display: none;
}

.navbar {
  	box-shadow: 0px 5px 10px 0px #aaa;
  	position: fixed;
	top: 0px;
  	width: 100%;
  	background: #000;
  	color: red;
  	opacity: 0.85;
  	height: 90px;
  	z-index: 12;
}

.navbar-container {
  	display: flex;
  	justify-content: space-between;
	align-items: center;
  	height: 90px;
}

.menu-items {
  	order: 2;
  	display: flex;
	flex-flow: row wrap;
}

.menu-items li {
  	list-style: none;
  	margin-left: 1rem;
  	margin-right: 1rem;
  	margin-bottom: 0.5rem;
  	font-size: 1rem;
}

.menu-items a:link,
.menu-items a:visited {
  	text-decoration: none;
  	color: darkgoldenrod;
  	transition: color 0.3s ease-in-out;
}

.menu-items a:hover,
.menu-items a:active {
  	color: palegoldenrod;
  	transition: color 0.3s ease-in-out;
}

.logo {
  	order: 1;
  	font-size: 2.3rem;
  	margin: 0.2rem;
	padding-left: 0.5rem;
}

.logo img {
	display: block;
	width: 100%;
}

.has-submenus {
	position: relative;
 	color: darkgoldenrod;
  	cursor: pointer;
}

.has-submenus:after {
  	content: "\025BC";
}

.has-submenus:hover > ul,
.has-submenus:focus > ul {
  	display: block;
}

.has-submenus ul {
  	display: none;
  	position: absolute;
  	padding: 5px 0px;
  	min-width: 100%;
  	border: 1px solid #888;
  	line-height: 2;
  	white-space: nowrap;
  	background-color: #FFF;
	border-radius: 5px;
}

.has-submenus ul a:hover,
.has-submenus ul a:active {
	color: black;
}

/*************************
FOOTER
*************************/
.footer {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	top: 91px;
	font-size: 1.2rem;
	gap: 1.2rem;
	margin-bottom: 9.6rem;
	margin-top: 2.4rem;
}

.footer a {
	font-size: 0.8rem;
}

.footer img {
	display: inline;
	height: 20px;
}

.fo-column {
	text-align: center;
	padding: 0 1.6rem;
	font-size: 1.6rem;
}



/****
SIZE
****/
#size {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
}
