@charset "utf-8";
/* CSS Document */
:root {
  /* Light Theme */
  --bg-color: #fcfcfc;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --accent: #2563eb;
  --nav-bg: rgba(252, 252, 252, 0.85);
  --nav-border: rgba(0, 0, 0, 0.08);
  --card-bg: #fff;
  --btn-bg: #1a1a1a;
  --btn-text: #ffffff;
  --btn-hover: #333333;
  --btn-sec-bg: transparent;
  --btn-sec-text: #1a1a1a;
  --btn-sec-border: #e5e5e5;
  --btn-sec-hover: #f5f5f5;
}
[data-theme="dark"] {
  /* Dark Theme */
  --bg-color: #0d0d0d;
  --text-main: #f2f2f2;
  --text-muted: #a1a1aa;
  --accent: #60a5fa;
  --nav-bg: rgba(13, 13, 13, 0.85);
  --nav-border: rgba(255, 255, 255, 0.08);
  --card-bg: #161616;
  --btn-bg: #f2f2f2;
  --btn-text: #0d0d0d;
  --btn-hover: #d4d4d4;
  --btn-sec-bg: transparent;
  --btn-sec-text: #f2f2f2;
  --btn-sec-border: #333333;
  --btn-sec-hover: #1a1a1a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
::selection {
  background: var(--accent);
  color: #fff;
}
/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 998;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    padding 0.3s ease;
}
.nav-container {
  width: 100%;
  max-width: 1214px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: white;
	border: 2px solid white;
	border-radius: 30px;
	padding: 2px 16px 5px 17px;
  background: #db25b1;
  background: linear-gradient(90deg,rgba(219, 37, 177, 1) 0%, rgba(0, 7, 133, 1) 100%);
	transition: all 0.3s ease;
}
.nav-brand:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}
/* Premier Lien EXPLORE */
.slide-line{
	font-family: sans-serif;
	color: var(--text-muted);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s ease;
	position: relative;
	text-decoration: none;
}
.slide-line::before{
	content: "";
	position: absolute;
	background: var(--text-main);
	width: 100%;
	height: 4px;
	bottom: 0;
	transform-origin: 100% 0;
	transform: scaleX(0);
	transition: transform 0.4s;
}
.slide-line:hover::before{
	transform-origin: 0 0;
	transform: scaleX(1);
	color: var(--text-main);
}
.slide-line.active{
	color: var(--text-main);
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.theme-toggle:hover {
  background-color: var(--nav-border);
  transform: scale(1.05);
}
.theme-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

.flex {
  display: flex;
  align-items: center;
}

.container {
  justify-content: center;
	max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.contact-page {
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  height: 100vh;
}

.contact-page .text {
  margin-bottom: 90px;
}

.page-title {
  color: var(--text-main);
	font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Formulaire Contact */
.form{
	align-items: center;
	justify-content: center;
	text-align: center;
	display: flex;
}
form {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1);
 
  width: 500px;
	 transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
	z-index: 997;
}
form:hover {
transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}
form label {
	font-size: 1.1rem;
	margin: 16px;
	text-align: left;
}
form input {
  height: 55px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  padding: 0 14px;
	background-color: var(--bg-color);
	color: var(--text-muted);
}

form input:focus {
  outline: none;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

::placeholder {
  color: #777;
  font-size: 1.063rem;
}

form textarea{
	height: 300px;
	resize: none;
 	width: 100%;
  	border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
	padding: 12px 14px;
	color: var(--text-muted);
	background-color: var(--bg-color);
}

form textarea:focus {
	outline: none;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}
.link {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}

.link .submit {
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--btn-bg);
  padding: 15px 0;
  border-radius: 50px;
  color: var(--btn-text);
  font-size: 1.25rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.link .submit:hover {
  background: var(--accent);
	transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.success{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .7s;
	z-index: 999;
}

.success .box-success{
	background: white;
	padding: 1.5em 2em;
	width: 500px;
	max-width: 90%;
	border-radius: 4px;
	position: relative;
	z-index: 1000;
}

.success .box-success a{
	color: black;
}
.success .box-success a:hover{
	cursor: pointer;
}

.success .box-success .modal_close{
	position: absolute;
	right: 15px;
	top: 15px;
	color: grey;
}
/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer */
footer {
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--nav-border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-center {
	text-align: center;
	display: grid;
}
.mentions{
	display: flex;
}
.mentions a{
	text-decoration: none;
	padding-right: 5px;
	color: var(--text-muted);
}
.mentions a:hover{
	cursor: pointer;
	 color: var(--text-main);
}
.mentions p{
	padding-right: 5px;
}
.domain{
	padding-top: 6px;
	font-size: 1rem;
	font-weight: 600;
}
.socials {
  display: flex;
  gap: 1.25rem;
	visibility: hidden;
}
.socials a {
  color: var(--text-muted);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: flex;
}
.socials a:hover {
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Banner Cookies */
#popup{
	position: fixed;
	border-radius: 20px;
	bottom: -100%;
	background-color: var(--card-bg);
  	color: var(--text-main);
	padding: 20px;
	margin: 20px 0 70px 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1);
	z-index: 8;
	transition: 400ms;
	font-weight: 500;
	width: 350px;
	display: grid;
	align-items: center;
	border: 1px solid var(--nav-border);
}
#popup:hover{
	transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}
#popup .contenu-cookie-box{
	display: grid;
}
#popup.active{
	bottom: 0;
}
.conteneur-fermer{
	right: 0;
	text-align: right;
	padding: 0;
	margin: 3px 23px 0 0;
}
.fermer-popup{
	color: lightgrey;
	cursor: pointer;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.fermer-popup:hover{
	color: black;
}

.paragraphe-cookie{
	margin-bottom: 18px;
}
.contenu-cookie-box{
	display: grid;
}

.cookie-container .contenu-cookie-box .paragraphe-cookie a{
	color: var(--text-main);
	text-decoration: underline;
}
.contenu-btn{
	display: grid;
	padding-right: 0;
}
 .contenu-btn .conteneur-cookie-btn .cookie-btn{
	font-size: 18px;
	margin: 0;
	cursor: pointer;
	font-weight: 600;
	padding-right: 0;
	width: 150px;
	height: 50px;
	padding: 10px;
	 border-radius: 50px;
	 background-color: var(--btn-bg);
  color: var(--btn-text);
  border: 1px solid var(--btn-bg);
	 transition: all 0.3s ease;
}
.cookie-btn:hover{
	cursor: pointer;
	background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cookies{
	color: var(--text-main);
}
.modal_close{
	font-size: 18px;
	margin: 0;
	cursor: pointer;
	font-weight: 600;
	padding-right: 0;
	width: 150px;
	height: 50px;
	padding: 13px 25px 13px 25px;
	 border-radius: 50px;
	 transition: all 0.3s ease;
	text-decoration: none;
	background-color: var(--btn-sec-bg);
  color: var(--btn-sec-text);
  border: 1px solid var(--btn-sec-border);
}
.modal_close:hover{
	background-color: var(--btn-sec-hover);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}
.fade-in {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
/* Responsive */
@media (max-width: 1500px) {
	/* Banner Cookies */
#popup{
	position: fixed;
	border-radius: 20px 20px 0 0;
	bottom: -100%;
	background-color: var(--bg-color);
  	color: var(--text-main);
	padding: 10px 20px;
	margin: 0;
	box-shadow: 0 -2px 10px rgba(47, 54, 64, 0.39);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	z-index: 8;
	transition: 400ms;
	font-weight: 500;
	width: 100%;
	display: grid;
	align-items: center;
	
}
	#popup:hover{
		transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}
}
@media (max-width: 992px) {
	.navbar .nav-container {
    padding: 1rem 5%;
  }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(252, 252, 252, 1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 900;
  }
  [data-theme="dark"] .nav-links {
    background: rgba(13, 13, 13, 1);
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 2rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--text-muted);
    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text-main);
    transform: translateX(10px);
  }
  .mobile-toggle {
    display: block;
    z-index: 999;
  }
	.flex {
  		display: grid;
	}
	form{
		max-width: 500px;
		width: 100%;
	}
	footer {
    flex-direction: column-reverse;
    gap: 1.5rem;
    text-align: center;
		display: flex;
  }
	.footer-center {
	display: grid;
		text-align: center;
  }
  .footer-center p{
	display: none;
  }
	.mentions{
	display: grid;
  }
  .domain{
	padding-top: 20px;
  }
}























