<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*

	Le rouge : #a63759; 
	Le vert clair : #87bb34;
	Le vert sombre : #44a33d; 

*/


/*=== Variables ===*/

:root {
    --light-color:       	#D7DEE8;
    --main-accent-color: 	#a63759;    
    --dark-accent-color: 	#210B11;    
    --seconde-accent-color: #87bb34;    
    --associated-color:  	#44a33d;    
    --main-text-color:   	#333;    
    --inactive-color:    	#BDC8D9;
}

/*=== General ===*/

* {
  box-sizing: border-box;
}

body {
	/*font-family: 'Bitter', serif;*/
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: var(--main-text-color);
	max-width: 1900px;
	margin: 0 auto;
}

img {
	max-width: 100%;
}

li {
	list-style: none;
}

a {
	font-family: 'Bitter', serif;
	text-decoration: none;
	color: #fff;
}


*:focus {
  outline: none;
}

h2 {
	font-size: 2em;
	font-weight: bold;
	color: var(--main-text-color);
	text-align: center;
	font-family: 'Bitter', serif;
}

h1 {
	text-align: center;
	font-family: 'Bitter', serif;
}


/*=== Header Showcase ===*/

#showcase {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 60vh;
}

.bg-image {
	position: absolute;
	background: url("../images/05.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 60vh;
	z-index: -1;
}

.bg-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.4;
}


/*=== Header Top Container ===*/

.top-container {
	display: flex;
  	justify-content: space-between;
	align-items: baseline;
	padding: 1%;
}

.logo {
	color: var(--light-color);
	font-size: 2em;
	font-weight: bold;
}

.logo img {
	width: 2em;
	height: 2.5em;
	vertical-align: middle;
	filter: invert(90%); filter: invert(90%); /* Changes color in white */
}

.logo a:hover {
	text-decoration: none;
}

.top-nav {
	display: flex;
  	justify-content: space-between;
}

.menu li {
	font-size: 2em;
	font-weight: 400;
	padding-left: 2em;
}

.menu li img {
	font-size: 1.6em;
	filter: invert(90%); filter: invert(90%); /* Changes color in white */
}

.menu a:hover {
	text-decoration: underline;
	color: var(--light-color);
}

/*=== Header-content-wrap ===*/
.container-wrap {
  display: flex;
  align-items: center;
  margin-top: 120px;
  padding: 5%;

}

.header-content-wrap {
  text-align: center;
  width: 549px;
  margin: 0 auto;
}

.header-content-wrap h1 {
	font-size: 6em;
	color: var(--light-color);
	font-family: 'Bitter', serif;
}

.current a {
	color: var(--inactive-color);
}

.current a:hover {
	text-decoration: none;
	color: var(--inactive-color);
}


/*=== Section Call To Action ===*/

.call-to-action {
	text-align: center;
	font-size: 1.5em;
	padding: 2%;
	height: 330px;
	background-color: var(--light-color);
}

.call-to-action h1 {
	font-family: 'Bitter', serif;
	font-size: 2em;
	color: var(--main-accent-color);
	padding: 0.6em;
}



/*=== Cards ===*/

.cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.cards  {
	width: 100%;
	align-content: center;
	padding: 2%;
	text-align: center;
}

.cards p {
	font-size: 1.4em;
}

.card-collective {
	/*background-color: var(--seconde-accent-color);*/

}

.card-traiteur {
	/*background-color: var(--associated-color);*/
}

.card-collective:hover, .card-traiteur:hover {
	transform: scale(1.03);
	transition: all .5s ease-in-out;
}

.cards a h2 {
	color: var(--main-accent-color);
	font-size: 2.2em;
	letter-spacing: 0.2em;
	padding: 1em 0;
}

.cards a h2:hover {
	text-decoration: underline;
}

.border {
	border: 1px solid  var(--associated-color);
	padding: 2em;
}




/*=== Contact Form ===*/

.form-section {
    background-color: var(--light-color);
}

.form-grid {
	display: grid;
	grid-template-columns: 40% 60%;
    grid-template-rows: auto;
    width: 80%;
    margin: 0 auto;
    padding: 2%;
}


.form-section-text {
	/*text-align: center;*/
	font-size: 1.5em;
	padding: 2em 4em 0 0;
}

.form-section-text h3 {
	color: var(--associated-color);
	padding: 1em 0 0.5em 0;
	font-family: 'Bitter', serif;
	font-weight: bold;
}


#form &gt; div {
	padding: 1.5em 0;
}


.form-section .button {
	background-color: var(--associated-color);
	color: var(--light-color);
	width: 100%;
	margin: 0;
}


input, textarea{
	border: none;
	padding: 1em;
	width: 100%;
	font-style: italic;
	outline: none;
	background-color: transparent;
	border-bottom: 1px solid var(--main-text-color);
	transition: background-color .5s ease;
}

.textarea textarea {
	padding: 1.2em 0 0 0;
}

input:focus, textarea:focus {
	background-color: var(--main-accent-color);
	color: var(--light-color);
	font-style: initial;
	padding-left: 1em;
}

input::placeholder, textarea::placeholder {
	color: var(--main-text-color);

}

.form-section .for-grid-button {
	width: 50%;
    margin: 0 auto;
}

/*=== Buttons ===*/

.button {
	display: inline-block;
	border: none;
	color: var(--light-color);
	text-decoration: none;
	background-color: var(--associated-color);
	padding: 15px 60px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 2px;
	text-align: center;
	position: relative;
	outline: none;
	transition: background-color .1s ease;
	cursor: pointer;
}
	
.button::after {
	transition: background-color .2s ease;
	position: absolute;
	content: '';
	height: 4px;
	bottom: 0;
	width: 100%;
	background-color: var(--light-color);
	opacity: .18;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	left: 0;
}

.button:hover {
	background-color: var(--main-accent-color);

}


/*=== Footer ===*/


footer {
	padding: 2%;
	background-color: #210B11;
	color: var(--light-color);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

footer address {
	padding: 0.3em;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 2em;
}

footer p {
	padding: 0.3em;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 2em;
}

.copyright {
	/*padding-top: 2em;*/
}

.plan {
	padding-left: 10em;
}

.plan iframe {
	width: 90%;
}

.copyright-text {
	padding-top: 1em;
	font-size: 1.3em;
	text-align: center;	
	word-spacing: 0.5em;

}



/*=== Media ===*/

@media screen and (min-width: 1100px) and (max-width: 1400px) {

.top-container {
	padding: 2%;
}

.logo {
	font-size: 1.6em;
}

.logo img {
	width: 1.6em;
	height: 2em;
}

.menu li {
	font-size: 1.6em;
	padding-left: 1.2em;
}


}


@media screen and (min-width: 960px) and (max-width: 1100px) {

.top-container {
	padding: 2%;
}

.logo {
	font-size: 1.4em;
}

.logo img {
	width: 1.4em;
	height: 1.6em;
}

.menu li {
	font-size: 1.4em;
	padding-left: 1.2em;
}

.menu li img {
	font-size: 1em;
}

}


@media screen and (min-width: 760px) and (max-width: 960px) {

.cards img {
	width: 80%;
}

.logo {
	font-size: 1.4em;
}

.logo img {
	width: 1.4em;
	height: 1.6em;
}

/*=== Cards ===*/

.cards-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}


.cards  {
	font-size: 1.4em;
	padding: 2%;
}

.cards img {
	height: auto;
}

.cards a h2 {
	font-size: 1.6em;
	padding: 2%;
}


}



@media screen and (min-width: 400px) and (max-width: 760px) {


/*=== Header Showcase ===*/

#showcase {
	height: 50vh;
}

.bg-image {
	height: 50vh;
}


.logo {
	font-size: 1.4em;
}

.logo img {
	width: 1.4em;
	height: 1.6em;
}


/*=== Cards ===*/

.cards-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}


.cards  {
	font-size: 1.2em;
	padding: 2%;
}

.cards img {
	height: auto;
}

.cards a h2 {
	font-size: 1.6em;
	padding: 2%;
}


/*=== Footer ===*/

footer {
	text-align: center;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);

}

.plan {
	padding-left: 0;
}



/*=== Contact Form ===*/

.form-grid {
	display: grid;
	grid-template-columns: 100%;
  	grid-template-rows: auto;
}

.form-section-text {
	text-align: center;
	font-size: 1.3em;
	padding-right: 2em;
}

.form-section .for-grid-button {
	width: 100%;
}


}

@media screen and (min-width: 200px) and  (max-width: 400px){

.logo {
	display: none;
}

/*=== Header Showcase ===*/

#showcase {
	height: 40vh;
}

.bg-image {
	height: 40vh;
}


/*=== Cards ===*/

.cards-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}


.cards  {
	font-size: 1.2em;
	padding: 2%;
}

.cards img {
	height: auto;
}


.cards a h2 {
	font-size: 1.6em;
	padding: 2%;
}


/*=== Footer ===*/

footer {
	text-align: center;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);

}

.plan {
	padding-left: 0;
}



/*=== Contact Form ===*/

.form-grid {
	display: grid;
	grid-template-columns: 100%;
  	grid-template-rows: auto;
}

.form-section-text {
	text-align: center;
	font-size: 1.3em;
	padding-right: 2em;
}

.form-section .for-grid-button {
	width: 100%;
}

}
</pre></body></html>