/* General Reset */

@font-face {
  font-family: "Quanta Grotesk Pro";
  src: url("./fonts/QuantaGroteskPro-Bold-BF6459a54ca7daf.woff") format("woff"),
    url("./fonts/QuantaGroteskPro-Bold-BF6459a54d79343.ttf") format("tff"),
    url("./fonts/QuantaGroteskPro-Bold-BF6459a54be213c.otf") format("otf");
  font-weight: bold;
  font-style: normal;
}

:root {
  --dark: #02092d;
  --water: #97d4ee;
  --green: #a4e92a;
  --light: #4658e8;
}

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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.2;
  color: var(--water);
  background-color: var(--dark);
}

/* Navigation Section */

.logo {
  position: absolute;
  left: 18rem;
  top: 2rem;
  width: 6rem;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 2.5rem;
  margin-left: 20rem;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  list-style-type: none;
  background-color: #162165;
  border: 1px solid var(--dark);
  border-radius: 80px;
}

nav ul li {
  display: inline-block;
  margin: 1rem 0rem;
  border: 1px solid #162165;
}
nav ul li a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 2rem;
  padding: 18px;
}

nav ul li a:hover {
  background-color: var(--green);
  color: var(--dark);
  border-radius: 80px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 40px;
  height: 4px;
  background-color: white;
  margin: 8px 0;
  transition: 0.4s;
}

/* Header Section */
header {
  margin: 6rem 0rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  justify-items: space-evenly;
}

header h1 {
  font-family: "Quanta Grotesk Pro", sans-serif;
  font-size: 10rem;
  margin-bottom: 2px;
  padding: 0%;
}

header h1 span {
  color: var(--light);
}

header p {
  font-size: 2rem;
}

.sub-header {
  display: flex;
  flex-direction: row;
  justify-items: center;
  justify-content: space-evenly;
  margin-top: 2rem;
}

header button {
  background-color: var(--green);
  border: var(--dark);
  box-shadow: inset;
  color: var(--dark);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  font-family: "Courier New", Courier, monospace;
  border-radius: 50px;
  cursor: pointer;
  padding: 1.75rem 8rem;
  width: auto;
}

/* Brand Story Section */

.brand-story {
  margin-top: 2rem;
  padding: 50px;
  text-align: center;
}

.brand-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
  justify-items: center;
}

.p1 {
  grid-column: 1/3;
  grid-row: 1/2;
}

.p2 {
  grid-column: 1/3;
  grid-row: 2/3;
}

.p3 {
  grid-column: 3/3;
  grid-row: 1/3;
  justify-content: center;
  justify-items: center;
}

.brand-story h2 {
  font-family: sans-serif;
  font-size: 5rem;
  margin-bottom: 20px;
}

.brand-story h2 span {
  color: var(--light);
}

.brand-story-content p {
  font-size: 2.5rem;
  margin: 2rem 0rem;
  line-height: 1.5;
  text-align: left;
}

.brand-story img {
  width: 70%;
  height: auto;
  margin: 5rem 5rem;
}

/* Brand Services */

.services {
  font-family: "Quanta Grotesk Pro", sans-serif;
  background-color: var(--dark);
  color: #fff;
  padding: 20px;
  margin-bottom: 950px;
  position: relative;
}

.services h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 20px;
}

.services h2 span {
  color: var(--light);
}

.services-container {
  position: relative;
  width: 1wh;
  height: auto;
}

.service {
  background-color: var(--dark);
  font-size: 1.5rem;
  width: 40%;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid var(--water);
}

.service:nth-child(1) {
  transform: translate(50px);
}

.service:nth-child(2) {
  transform: translate(6em, 5em);
}

.service:nth-child(3) {
  transform: translate(7em, 10em);
}

.service:nth-child(4) {
  transform: translate(6em, 15em);
}

.service:nth-child(5) {
  transform: translate(5em, 20em);
}

.service:nth-child(6) {
  transform: translate(4em, 25em);
}

.service:nth-child(7) {
  transform: translate(2em, 30em);
}

.service:nth-child(8) {
  transform: translate(-1em, 35em);
}

.service img {
  width: 60px;
}

.flower {
  position: absolute;
  top: 190px;
  left: 190px;
  width: 400px;
}

.service h3 {
  width: 90%;
}

h3 {
  font-size: 1.5em;
  margin-top: 0.5em;
  margin-left: 1.5em;
}

/* Portfolio */

.portfolio-section {
  font-family: "Quanta Grotesk Pro", sans-serif;
}

.portfolio-section h2 {
  text-align: center;
  font-size: 5rem;
}

.portfolio-section h2 span {
  color: var(--light);
}

.portfolio-section p {
  display: block;
  margin: 20px auto 40px;
  text-align: center;
  width: 40%;
  font-size: 1.5rem;
}

.portfolio-container {
  margin-top: 20px;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  row-gap: 10px;
  position: relative;
}

.portfolio {
  border: 1px solid var(--water);
  border-radius: 35px;
  padding: 0;
}

.portfolio h3 {
  margin-left: -2px;
  font-size: 2rem;
  text-align: center;
  padding: 12px 12px 12px 10px;
  color: var(--light);
}

.portfolio-container i {
  background-color: var(--dark);
  border-radius: 50px 50px;
  font-size: 120px;
  color: var(--green);
  --fa-rotate-angle: 45deg;
  position: absolute;
  bottom: 0.2em;
  right: 0.25em;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--dark);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 60%;
  height: auto;
  margin: 20px auto 60px;
}

.swiper-pagination {
  background-color: var(--dark);
  color: var(--green);
  font-size: 1.5rem;
}

/* Performance Section */

.performance-section {
  font-family: "Quanta Grotesk Pro", sans-serif;
  text-align: center;
}

.performance-section h2 {
  font-size: 5rem;
}

.performance-section h2 span {
  color: var(--light);
}

.performance-container {
  margin-top: 20px;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  row-gap: 10px;
}

.performance img {
  border: 1px solid --dark;
  border-radius: 32px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Band Section */

.band-container {
  border: var(--light);
  padding: 1.5rem 0px;
  background-color: var(--light);

  transform: rotate(-1deg);
}

.band-line {
  background-color: var(--green);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  color: var(--dark);
  width: 100%;
  padding: 1rem 0px;
  font-size: 2.5rem;
  overflow: hidden;
  white-space: nowrap;
}

/* Contact Section */

.contact {
  padding: 50px;
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-family: "Quanta Grotesk Pro", sans-serif;
  font-size: 10rem;
  margin-bottom: 20px;
}

.contact a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--dark);
}

.contact p {
  font-size: 1.1rem;
}

.mail-wrapper {
  display: inline-block;
  padding: 10px 15px 10px 15px;
  background-color: #a4e92a;
  font-size: 1.5rem;
  border-radius: 10px;
}

/* Footer Section */
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  text-align: center;
  color: #fff;
}

footer p {
  font-size: 1rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

/* Small Screen desktop */

@media (max-width: 1500px) {
  .logo {
    position: absolute;
    left: 6rem;
    top: 2rem;
    width: 6rem;
  }
  /* Small screen desktop Services */
  .services {
    margin-bottom: 1050px;
  }

  .services h2 {
    font-size: 5rem;
  }

  .service {
    width: 40%;
    font-size: 1.6rem;
    object-fit: contain;
  }
  .service h2 {
    padding: 8px;
    width: 80%;
    font-size: 2rem;
  }

  .services-container {
    margin-right: -16rem;
  }

  .service:nth-child(1) {
    transform: translate(-10em, 0em);
  }

  .service:nth-child(2) {
    transform: translate(-13em, 5em);
  }

  .service:nth-child(3) {
    transform: translate(-14em, 10em);
  }

  .service:nth-child(4) {
    transform: translate(-15em, 15em);
  }

  .service:nth-child(5) {
    transform: translate(-15em, 20em);
  }

  .service:nth-child(6) {
    transform: translate(-14em, 25em);
  }

  .service:nth-child(7) {
    transform: translate(-13em, 30em);
  }

  .service:nth-child(8) {
    transform: translate(-10em, 35em);
  }

  .flower {
    position: absolute;
    top: 210px;
    left: 80px;
    width: 350px;
  }
}

@media (max-width: 768px) {
  /* Mobile Nav */

  .logo {
    position: absolute;
    left: 6rem;
    top: 2rem;
    width: 6rem;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 6rem;
    top: 4rem;
  }

  .nav-links {
    position: absolute;
    top: 20%;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    display: none;
    border: 2px solid var(--green);
  }

  .nav-links li {
    display: block;
    width: 100%;
    margin: -20px 50px 0px 50px;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.5rem;
    padding: 4px;
    background-color: var(--dark);
  }

  .nav-links li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .nav-links.active {
    display: flex;
  }

  /* mobile header */

  header {
    margin-top: 8rem;
  }

  .header-content.nav-active {
    margin-top: 26rem;
  }

  header h1 {
    font-size: 5rem;
  }

  /* Brand story */

  .brand-story {
    font-size: 1rem;
    margin-top: 1rem;
    padding: 20px;
  }

  .brand-story-content {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr 1.25fr 1fr;
  }

  .p1 {
    grid-column: 1/1;
    grid-row: 1/2;
  }

  .p2 {
    grid-column: 1/1;
    grid-row: 3/3;
    margin-top: 2rem;
  }

  .p3 {
    grid-column: 1/1;
    grid-row: 2/3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30rem;
    border: 1px solid var(--green);
    border-radius: 2rem;
  }

  .brand-story img {
    width: 25em;
    height: auto;
  }

  .brand-story h2 {
    font-size: 3rem;
  }

  .brand-story p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
  }

  /* Mobile Services */
  .services-container {
    margin-right: 0rem;
  }
  .services {
    margin-bottom: 650px;
  }

  .services h2 {
    font-size: 5rem;
  }

  .service {
    font-size: 1rem;
    padding: 8px;
    width: 70%;
  }

  .service:nth-child(1) {
    transform: translate(-10em, 0em);
  }

  .service:nth-child(2) {
    transform: translate(-13em, 5em);
  }

  .service:nth-child(3) {
    transform: translate(-14em, 10em);
  }

  .service:nth-child(4) {
    transform: translate(-15em, 15em);
  }

  .service:nth-child(5) {
    transform: translate(-15em, 20em);
  }

  .service:nth-child(6) {
    transform: translate(-14em, 25em);
  }

  .service:nth-child(7) {
    transform: translate(-13em, 30em);
  }

  .service:nth-child(8) {
    transform: translate(-10em, 35em);
  }

  .flower {
    position: absolute;
    top: 166px;
    left: 80px;
    width: 80px;
  }
}

@media (max-width: 670px) {
  /* Mobile Nav */

  .logo {
    position: absolute;
    left: 2rem;
    top: 3.5rem;
    width: 4rem;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 3.5rem;
    top: 5rem;
  }

  .nav-links {
    position: absolute;
    top: 20%;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    display: none;
    border: 2px solid var(--green);
  }

  .nav-links li {
    display: block;
    width: 100%;
    margin: -20px 50px 0px 50px;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.5rem;
    padding: 4px;
    background-color: var(--dark);
  }

  .nav-links li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .nav-links.active {
    display: flex;
  }

  /* mobile header */

  header {
    margin-top: 8rem;
  }

  .header-content.nav-active {
    margin-top: 26rem;
  }

  header h1 {
    font-size: 5rem;
  }

  header p {
    font-size: 1.2rem;
  }

  header button {
    font-size: 2rem;
    padding: 1rem 1rem;
  }

  /* Brand story */

  .brand-story {
    font-size: 0.7rem;
    margin-top: 1rem;
    padding: 20px;
    margin-bottom: 12px;
  }

  .brand-story-content {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr 1.25fr 1fr;
  }

  .p1 {
    grid-column: 1/1;
    grid-row: 1/2;
  }

  .p2 {
    grid-column: 1/1;
    grid-row: 3/3;
    margin-top: 2rem;
  }

  .p3 {
    grid-column: 1/1;
    grid-row: 2/3;
    border: none;
  }

  .brand-story img {
    width: 25em;
    height: auto;
  }

  .brand-story h2 {
    font-size: 3rem;
  }

  .brand-story p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
  }

  /* Mobile Services */
  .services {
    margin-bottom: 680px;
  }

  .services h2 {
    font-size: 3rem;
  }

  .service {
    font-size: 1rem;
    padding: 8px;
    width: 80%;
    height: 5em;
  }

  .services-container {
    margin-left: 2em;
  }

  .service img {
    width: 2rem;
  }

  .service h3 {
    width: 70%;
  }

  .service:nth-child(1) {
    transform: translate(-10em, 0em);
  }

  .service:nth-child(2) {
    transform: translate(-11em, 5em);
  }

  .service:nth-child(3) {
    transform: translate(-12em, 10em);
  }

  .service:nth-child(4) {
    transform: translate(-13em, 15em);
  }

  .service:nth-child(5) {
    transform: translate(-13em, 20em);
  }

  .service:nth-child(6) {
    transform: translate(-12em, 25em);
  }

  .service:nth-child(7) {
    transform: translate(-11em, 30em);
  }

  .service:nth-child(8) {
    transform: translate(-10em, 35em);
  }

  .flower {
    position: absolute;
    top: 400px;
    left: 300px;
    width: 90px;
  }
  /* Mobile Portfolio */
  .swiper {
    width: 100%;
    height: 100%;
    margin: 20px auto 60px;
  }

  .portfolio-section h2 {
    font-size: 3rem;
  }

  /* Mobile Performance */

  .performance-wrapper {
    width: 100%;
  }

  .performance {
    width: 40rem;
  }

  .performance-section h2 {
    font-size: 3rem;
  }

  .performance-section h3 {
    font-size: 0.7rem;
  }

  .performance img {
    border-radius: 8px;
  }

  .band-container {
    border: var(--light);
    padding: 0.5rem 0;
    background-color: var(--light);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    transform: rotate(-1deg);
  }

  .band-line {
    width: 100%;
    color: var(--dark);
    padding: 0.5rem 0;
    font-size: 1rem;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 900;
    border-radius: 0%;
  }

  /* Contact */

  .contact h2 {
    font-family: "Quanta Grotesk Pro", sans-serif;
    font-size: 4rem;
  }

  .contact a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--dark);
  }

  .contact {
    width: 100%;
  }

  .mail-wrapper {
    display: inline-block;
    padding: 10px 5px 10px 5px;
    background-color: #a4e92a;
    font-size: 1.5rem;
  }

  /* Footer Section */

  .made {
    display: none;
  }
  footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #fff;
  }

  footer p {
    font-size: 1rem;
  }

  footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
}
