/* 
================================
---------- SUMMARY -------------
================================

1 - Imports
2 - Variables
3 - Mixins
4 - Components
5 - Base
6 - Sections
    A - Nav
    B - Header
    C - Product
    D - Features
    E - Pricings
    F - Comments
    G - Team
    H - Contact
7 - Footer
*/
/* 
================================
--- 1. IMPORTS -----------------
================================
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
/* 
================================
--- 2. VARIABLES ---------------
================================
*/
:root {
  --color-primary: #1f063e;
  --color-secondary: #e7959d;
  --color-secondary-10: #e7959d19;
  --color-secondary-30: #e7959d55;
  --color-white: #ffffff;
  --color-none: transparent;
}

/* 
================================
--- 3. MIXINS ------------------
================================
*/
/* 
================================
--- 4. COMPONENTS --------------
================================
*/
.btn, .btn-secondary-outline:hover, .btn-white-outline, .btn-white-outline:hover, .btn-secondary, .btn-secondary-outline, .btn:hover, .btn-secondary:hover {
  display: inline-block;
  padding: 5px 20px;
  width: fit-content;
  border: 2px solid var(--color-none);
  background-color: var(--color-none);
  color: var(--color-white);
  border-radius: 9999px;
  cursor: pointer;
}
.btn-secondary, .btn-secondary-outline, .btn:hover, .btn-secondary-outline:hover, .btn-white-outline:hover, .btn-secondary:hover {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.btn-secondary-outline, .btn:hover, .btn-secondary-outline:hover, .btn-white-outline:hover, .btn-secondary:hover {
  background-color: var(--color-none);
  color: var(--color-secondary);
}
.btn-white-outline {
  border-color: var(--color-white);
  background-color: var(--color-none);
  color: var(--color-white);
}

/* 
================================
--- 5. BASE --------------------
================================
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-white);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--color-primary);
  overflow-x: hidden;
}

section .content {
  padding: 100px 20px;
}
@media screen and (min-width: 800px) {
  section .content {
    padding: 100px 50px;
  }
}

.container {
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 1440px;
}

h1 {
  margin: 10px 0;
  font-size: 64px;
  font-weight: bold;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-white);
  line-height: 80px;
}

h2 {
  text-transform: uppercase;
  width: fit-content;
  font-size: 48px;
  font-weight: 600;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-white);
  margin-bottom: 3rem;
}
h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 99px;
  background-color: var(--color-secondary);
  transform: translateX(50px);
}

h3 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

h4 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

p.description {
  max-width: 45rem;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: 0;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 99px;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
textarea {
  width: 100%;
  appearance: none;
  border: none;
  outline: none;
}

/* 
================================
--- 6.A. SECTIONS / NAV --------
================================
*/
nav {
  height: 5rem;
  backdrop-filter: blur(16px);
  position: fixed;
  width: 100%;
  z-index: 999;
  align-items: center;
}
nav .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  height: 5rem;
}
nav .content img {
  margin-left: 10px;
}
nav .content ul {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  top: 5rem;
  left: 0;
  right: 0;
  padding-right: 1rem;
}
@media screen and (min-width: 1000px) {
  nav .content ul {
    display: flex;
    position: relative;
    flex-direction: row;
    gap: 0;
    top: auto;
  }
}
nav .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  margin: 10px;
  margin-right: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  nav .button {
    display: none;
  }
}
nav .button:hover span {
  background-color: var(--color-secondary);
}
nav .button span {
  display: block;
  background-color: var(--color-white);
  width: 30px;
  height: 4px;
  border-radius: 5px;
  transform-origin: center;
  transition: all 500ms;
}
nav.opened {
  height: 100vh;
  align-items: flex-start;
}
nav.opened ul {
  display: flex;
}
nav.opened .button span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
nav.opened .button span:nth-of-type(2) {
  width: 0;
}
nav.opened .button span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

/* 
================================
--- 6.B. SECTIONS / HEADER -----
================================
*/
header {
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 15rem;
  background-image: url("../img/saved/wave.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  margin-bottom: -1px;
}
@media screen and (min-width: 1000px) {
  header {
    padding-top: 0;
    padding-bottom: 0;
  }
}
header .content {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-height: 50rem;
}
@media screen and (min-width: 800px) {
  header .content {
    padding: 50px;
  }
}
@media screen and (min-width: 1000px) {
  header .content {
    flex-direction: row;
    display: flex;
  }
}
header .content div {
  flex: 1;
}
header .content div p {
  margin: 40px 0;
  width: 80%;
}
header .content div a {
  margin: 10px 0;
}
header .content .img {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  header .content .img {
    max-width: max-content;
    width: 50%;
  }
}
header .content .img img {
  max-width: 600px;
  width: 100%;
}

/* 
================================
--- 6.C. SECTIONS / PRODUCT ----
================================
*/
section#product {
  background-color: var(--color-secondary-30);
}
section#product .content .flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  section#product .content .flex {
    flex-direction: row;
  }
}
section#product .content .flex img {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 1000px) {
  section#product .content .flex img {
    width: 50%;
  }
}
section#product .informations {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1000px) {
  section#product .informations {
    width: 50%;
  }
}
section#product .button {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  section#product .button {
    justify-content: start;
  }
}

/* 
================================
--- 6.D. SECTIONS / FEATURES ---
================================
*/
section#features .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}
section#features .card {
  width: 100%;
  max-width: 32rem;
  padding: 30px;
  border-radius: 16px;
  background-color: var(--color-secondary-10);
}
section#features .card .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 500px) {
  section#features .card .flex {
    flex-direction: row;
  }
}
section#features .card .flex img {
  width: 50%;
}
@media screen and (min-width: 500px) {
  section#features .card .flex img {
    width: 150px;
  }
}
section#features .card h4 {
  margin-bottom: 20px;
}
section#features .card div {
  gap: 30px;
}

/* 
================================
--- 6.E. SECTIONS / PRICING ----
================================
*/
.btn, .btn-secondary-outline:hover, .btn-secondary, .btn-secondary-outline, .btn:hover, .btn-secondary:hover, .btn-white-outline, .btn-white-outline:hover {
  display: inline-block;
  padding: 5px 20px;
  width: fit-content;
  border: 2px solid var(--color-none);
  background-color: var(--color-none);
  color: var(--color-white);
  border-radius: 9999px;
  cursor: pointer;
}
.btn-secondary, .btn-secondary-outline, .btn:hover, .btn-secondary-outline:hover, .btn-secondary:hover, .btn-white-outline:hover {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.btn-secondary-outline, .btn:hover, .btn-secondary:hover, .btn-secondary-outline:hover, .btn-white-outline:hover {
  background-color: var(--color-none);
  color: var(--color-secondary);
}
.btn-white-outline {
  border-color: var(--color-white);
  background-color: var(--color-none);
  color: var(--color-white);
}

section#pricing {
  background-color: var(--color-secondary-30);
}
section#pricing .cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 1000px) {
  section#pricing .cards {
    flex-direction: row;
    gap: 30px;
  }
}
section#pricing .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 20rem;
  padding: 50px 30px;
  border-radius: 16px;
  background-color: var(--color-primary);
  text-align: center;
}
section#pricing .card p {
  margin: 10px 0;
}
section#pricing .card span {
  font-size: 36px;
  font-weight: 600;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-secondary);
}
section#pricing .card ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  width: 100%;
  margin: 30px auto;
}
section#pricing .big-card {
  transform: scale(1.1);
  background-color: var(--color-secondary-30);
}

/* 
================================
--- 6.F. SECTIONS / COMMENTS ---
================================
*/
section#comments .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
section#comments .card {
  width: 100%;
  max-width: 32rem;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--color-secondary-10);
}
section#comments .card img {
  border-radius: 8px;
}
section#comments .card .flex {
  display: flex;
  gap: 20px;
}
section#comments .card span {
  color: var(--color-secondary-30);
}
section#comments .card p {
  margin-top: 20px;
}

/* 
================================
--- 6.G. SECTIONS / TEAM -------
================================
*/
section#team {
  background-color: var(--color-secondary-30);
}
section#team .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
section#team .cards-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
section#team .card {
  width: 100%;
  max-width: 16rem;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--color-primary);
  text-align: center;
}
section#team .card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
section#team .card p {
  color: var(--color-secondary);
}
section#team .card ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

/* 
================================
--- 6.H. SECTIONS / CONTACT ----
================================
*/
section#contact form {
  background-color: var(--color-secondary-10);
  max-width: 50rem;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px auto;
}
section#contact .row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 800px) {
  section#contact .row {
    flex-direction: row;
  }
}
section#contact .button {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  section#contact .button {
    justify-content: end;
  }
}
section#contact .field {
  width: 100%;
}
section#contact label {
  font-size: 30px;
  font-weight: 500;
  font-family: "Poppins", "Avenir", "Helvetica", "Arial", "sans-serif";
  color: var(--color-white);
}
section#contact label::after {
  content: "*";
  margin-left: 5px;
  color: var(--color-secondary);
}
section#contact input,
section#contact textarea {
  border-radius: 8px;
  background-color: var(--color-secondary-10);
  padding: 10px;
  resize: vertical;
  min-height: 2.5rem;
}

/* 
================================
--- 7. FOOTER ------------------
================================
*/
footer {
  background-color: var(--color-secondary-30);
}
footer .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  gap: 50px;
}
@media screen and (min-width: 800px) {
  footer .content {
    flex-direction: row;
    padding: 50px;
  }
}
footer .content .menu-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (min-width: 1200px) {
  footer .content .menu-group {
    flex-direction: row;
  }
}
footer .content .menu-logo {
  width: 100%;
  max-width: 20rem;
}
footer .content ul {
  width: 100%;
  max-width: 15rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .content .get-in-touch li {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .copyright {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
}
footer .copyright a {
  font-weight: bold;
}
/*# sourceMappingURL=main.css.map */
