@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  background: linear-gradient(var(--clr-sky), var(--clr-sky2));
  font-family: var(--ff-poppins);
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 900;
}
@media screen and (min-width: 950px) {
  .header {
    padding: 30px 100px;
  }
}
.header__logo {
  color: var(--clr-text);
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  text-decoration: none;
  font-size: 1.2em;
  letter-spacing: 2px;
}
@media screen and (min-width: 800px) {
  .header__logo {
    font-size: 2em;
  }
}
.header .header__navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header__navbar li {
  margin-left: 20px;
}
.header .header__navbar li a {
  text-decoration: none;
  padding: 6px 15px;
  color: var(--clr-text);
  border-radius: 20px;
  transition: 0.2s;
}
.header .header__navbar li a:hover {
  background: white;
  color: var(--clr-button);
}
.header .header__navbar li #toggle {
  position: relative;
  display: block;
  width: 60px;
  height: 30px;
  border-radius: 30px;
  background: #222;
  transition: 0.5s;
  cursor: pointer;
  box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1), inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.1);
}
.header .header__navbar li #toggle .indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom, #444, #222);
  border-radius: 50%;
  transform: scale(0.9);
  transition: 0.5s;
}
.header .header__navbar li #toggle.active {
  background: #fff;
  box-shadow: inset 0 2px 60px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 8px rgba(0, 0, 0, 0.05);
}
.header .header__navbar li #toggle.active .indicator {
  left: 30px;
  background: linear-gradient(to bottom, #eaeaea, #f9f9f9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 4px 4px rgb(255, 255, 255), inset 0 -4px 4px rgb(255, 255, 255);
}

.parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.parallax #mountains_front {
  z-index: 10;
}
.parallax #text {
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  text-transform: uppercase;
  position: absolute;
  color: var(--clr-text);
  white-space: nowrap;
  font-size: var(--fs-900);
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .parallax #text {
    font-size: 7.5vw;
  }
}
.parallax__btn {
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 40px;
  background: #fff;
  color: #2b1055;
  font-size: 1.5em;
  z-index: 9;
  transform: translateY(100px);
}
.parallax__btn:hover {
  color: var(--clr-button);
}

.parallax::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--clr-bg), transparent);
  z-index: 1000;
}

.profil {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--clr-bg);
  color: var(--clr-text);
  gap: 2rem;
  padding: 5rem;
}
@media screen and (min-width: 768px) {
  .profil {
    padding: 10rem;
    justify-content: space-between;
  }
}
.profil__content h2 {
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  letter-spacing: 3px;
  font-size: var(--fs-1000);
}
.profil__content a {
  margin-top: 2rem;
}
.profil__image {
  width: 350px;
}
.profil__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  border: solid 6px var(--clr-border);
}
@media screen and (max-width: 800px) {
  .profil__image {
    display: none;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 10px 30px;
  background: #363636;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--clr-button);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.projets {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--clr-bg);
  padding: 5rem 1rem;
}
@media screen and (min-width: 500px) {
  .projets {
    padding: 5rem;
  }
}
.projets__title {
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  color: var(--clr-text);
  font-size: var(--fs-900);
}
.projets__cards {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.card {
  position: relative;
  width: 280px;
  height: 400px;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}
.card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 2rem;
  text-align: center;
}
.card__content h3 {
  font-size: 1.8em;
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  color: var(--clr-text);
  z-index: 1;
}
.card__content p {
  font-size: 1.2em;
  color: var(--clr-text);
  font-weight: 300;
}
.card__content a {
  position: relative;
  display: inline-block;
  margin: 15px 2rem 0 2rem;
  padding: 8px 20px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.card__content a:hover {
  color: var(--clr-button);
}

.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--clr-bg);
  color: var(--clr-text);
  padding: 5rem;
}
.contact__title {
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  color: var(--clr-text);
  font-size: var(--fs-900);
}
.contact__container {
  width: 20rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact__container {
    width: 100%;
  }
}
.contact__container-item {
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  margin: 30px;
  box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.1725490196);
}
.contact-icon {
  margin: 0 auto;
  margin-bottom: 10px;
}
.contact-info h3 {
  font-family: var(--ff-lilita);
  font-weight: var(--fw-400);
  font-size: var(--fs-400);
  margin-bottom: 5px;
}
.contact-info a {
  text-decoration: none;
  color: var(--clr-text);
}

.sidenav {
  position: fixed;
  top: 0;
  right: -250px;
  height: 100%;
  width: 250px;
  z-index: 999;
  background-color: var(--clr-sidenav);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: right 0.5s ease;
}
.sidenav .sidenav__item {
  width: 100%;
  padding: 20px 40px;
}
.sidenav a {
  width: 100%;
  text-decoration: none;
  padding: 6px 15px;
  color: var(--clr-text);
  font-size: var(--fs-500);
  border-radius: 50px;
  transition: 0.2s;
}
.sidenav a:hover {
  background: white;
  color: var(--clr-button);
}

.sidenav.active {
  right: 0;
}

.menu-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .menu-button {
    display: none;
  }
}

.close-button {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  padding: 2rem;
}

.sidenav__open {
  width: 3rem;
}

.sidenav__close {
  width: 3rem;
}

@media screen and (max-width: 768px) {
  .hideOnMobile {
    display: none;
  }
}

.light-theme {
  --clr-bg: var(--clr-primary-lightGrey);
  --clr-text: var(--clr-neutral-black);
  --clr-sky: var(--clr-primary-skyBlue);
  --clr-sky2: var(--clr-primary-beige);
  --clr-border: var(--clr-primary-veryDarkGrey);
  --clr-button: var(--clr-primary-skyBlue);
  --clr-sidenav: var(--clr-neutral-whiteOp) ;
}

:root {
  --clr-neutral-white: #fff;
  --clr-neutral-black: #000000;
  --clr-neutral-whiteOp: rgba(255, 255, 255, 0.2);
  --clr-neutral-blackOp: rgba(0, 0, 0, 0.2);
  --clr-primary-veryDarkGrey: #363636;
  --clr-primary-veryDarkBlue: #2b1055;
  --clr-primary-darkBlue: #13082f;
  --clr-primary-lightBlue: #7597de;
  --clr-primary-skyBlue: #66bcf2;
  --clr-primary-beige: #FFE5AA;
  --clr-primary-lightGrey: #c7d9e5;
  --fs-1000: 60px;
  --fs-900: 54px;
  --fs-800: 48px;
  --fs-700: 40px;
  --fs-600: 32px;
  --fs-500: 24px;
  --fs-400: 20px;
  --fs-300: 16px;
  --fs-200: 12px;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --ff-courier: "Courier New", Courier, monospace;
  --ff-inter: 'Inter', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;
  --ff-lilita: 'Lilita One', sans-serif;
  --clr-bg: var(--clr-primary-darkBlue);
  --clr-text: var(--clr-neutral-white);
  --clr-sky: var(--clr-primary-veryDarkBlue);
  --clr-sky2: var(--clr-primary-lightBlue);
  --clr-border: var(--clr-primary-veryDarkGrey);
  --clr-button: var(--clr-primary-lightBlue);
  --clr-sidenav: var(--clr-neutral-blackOp);
}

/*# sourceMappingURL=style.css.map */
