
/*-----------------------------------------------
|   Activites Styles
-----------------------------------------------*/

:root,
[data-bs-theme=light] {
  --hideaway-body-bg: 	  #fff;	   /*     #BDB76B; */
  --hideaway-body-font-family: "Roboto", serif;
}

body {
  margin: 0;
  font-family: var(--hideaway-body-font-family);
  font-size: var(--hideaway-body-font-size);
  font-weight: var(--hideaway-body-font-weight);
  line-height: var(--hideaway-body-line-height);
  color: 		var(--hideaway-body-color);
  text-align: var(--hideaway-body-text-align);
  background-color: #527DAE;			
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navbar-brand {
  font-family: "Tangerine", cursive;
  padding-right: 1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-size: 2.48832rem;
  font-weight: 700;
  font-style: normal;
}

/* // <weight>: Use a value from 100 to 900 */
/* // <uniquifier>: Use a unique and descriptive class name */

.roboto-van {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} 

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  
}

h2 {
  font-size: 1.75rem;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.cadre	{
  border-color: #3B2E28; /*  #FFFF; */
  border-style:  double;	/* ridge 	inset		outset				solid;				*/
  border-width: 7px 7px 7px 7px;
  /* padding: 7px;	 */
} 

.img-0 {
	position: absolute;
	top: 650px;
	left: 10px;
	transform: translate(-50% -50%);
	max-width: 350px;
	height: auto;
}

.img-1 {  
	border-radius: 50%;
	background-position:bottom;
  }

.img-2 {
	border-radius: 10px;
	background-position:bottom;
  }	  
.cards {
  padding: 3rem 2.5rem 2.5rem 0rem;

}

.cards > h1 {
  background-color: #000;
   color: #240701;
  text-align: center;
  margin-left: -3rem;
  margin-right: -3rem;
  padding: 1rem;
}

.cards > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 4fr));
  grid-gap: 2rem;
  row-gap: 1.5rem;
  list-style: none;
}

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
  border-radius: 7px;
  position: relative;
}
.card:hover {
  /* box-shadow: 0px 0px 14px 7px #333; */
  box-shadow: 0px 0px 0px 0px rgba(255,255,255, 0.5), 0px 0px 0px 0px rgba(0, 0, 0, 0.3), 5px 0px 5px 5px rgba(0, 0, 0, 0.3), 5px 15px 15px 10px rgba(0, 0, 0, 0.3);
  
}

.card__text {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  padding: 0.5rem 1rem;
  order: 1;
  font-family: "Roboto", serif;
  
}
.card__text * {
  margin-bottom: 0;
}
.card__text :last-child {
  margin-top: auto;
  font-family: "Roboto", serif;
  font-size: 1.5rem;
 
  
}
.card__text :nth-last-child(2) {
  margin-bottom: 1.5rem;
}
.card__text > * + * {
  margin-top: 0.5rem;
  
}

.card__img {
  height: 18rem;
}
.card__img img {
  margin-bottom: 0;
  object-fit: cover;
  object-position: middle center; 				/* object-position: bottom center; */
  height: 100%;
  width: 100%;
 
}

.card__title:focus-within ~ .card__btn {
  text-decoration: underline;
   color: #240701;
}

.card__link {
  color: initial;
  text-decoration: none;
}
.card__link:hover, .card__link:focus {
  color: inherit;
  outline: none;
}