@charset "UTF-8";
:root {
  --bckgrnd: #f3ede1;
  --color: #0C4534;
  --color2: #77A664;
}

.darkmode {
  --bckgrnd: #0C4534;
  --color: #f3ede1;
  --color2: #77A664;
}

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

html {
  scrollbar-width: thin;
}

body {
  background-color: var(--bckgrnd);
  color: var(--color);
  overflow-x: hidden;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 425px) {
  body {
    font-size: 0.5rem;
  }
}

/*
.circle{
    z-index: 100;
    position: fixed;
    border-radius: 50%;
    border-style: solid;
    border-width: 5px;
    height: 10px;
    width: 10px;
    pointer-events: none;
    transform: translate(-50%, -50%);
}*/
.dropdown {
  display: none;
}
.dropdown button {
  background: none;
  border: solid 3px var(--color);
  border-radius: 7px;
  height: 50px;
  width: 50px;
  font-size: 30px;
  color: var(--color);
  cursor: pointer;
}
.dropdown button::before {
  content: "☰";
}
.dropdown button:hover {
  transition: all 0.4s ease;
  background-color: green;
}

.content {
  z-index: 100;
  top: calc(80px + 0.5rem);
  display: none;
  position: fixed;
  border: solid;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.3rem 10%;
  margin: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100vh - 80px - 1rem);
}
.content h2 {
  font-size: clamp(30px, 6vw, 55px);
  text-align: center;
  margin-bottom: 5rem;
}
.content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
.content ul li a {
  color: var(--color);
  font-size: clamp(25px, 6vw, 40px);
  font-family: "Playfair Display", serif;
  text-decoration: none;
  margin: 0.5rem;
}
.content ul li a:hover {
  transition: all 0.4s ease;
  color: var(--color2);
}

.show {
  display: block;
}

@media screen and (max-width: 768px) {
  .navigation {
    display: none;
  }
  .dropdown {
    display: block;
  }
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 13px;
  border: solid var(--color);
  top: 0;
  left: 0;
  height: 80px;
  width: calc(100% - 1rem);
  padding: 1.3rem 10%;
  margin: 0.5rem;
  z-index: 100;
}
nav h1 {
  color: var(--color);
  font-size: clamp(25px, 7vw, 50px);
  font-family: "Playfair Display", serif;
}
nav h1::first-letter {
  color: var(--color2);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 5vw;
  color: var(--color1);
  font-size: 30px;
}
nav ul li {
  position: relative;
}
nav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 0;
  height: 2px;
  background-color: var(--color);
}
nav ul li:hover::after {
  animation: hoveranim1 0.3s ease forwards;
  background-color: var(--color2);
}
nav ul li:not(:hover)::after {
  animation: hoveranim1rev 0.3s ease forwards;
}
nav ul a {
  text-decoration: none;
  color: var(--color);
}

#theme-switch {
  z-index: 100;
  transition: all 0.4s ease;
  position: fixed;
  bottom: 0;
  right: 0;
  cursor: pointer;
  width: clamp(40px, 10vw, 70px);
  height: clamp(40px, 10vw, 70px);
  padding: 0;
  margin: 1rem;
  border-radius: 50%;
  border: dotted 5px var(--color);
  background: none;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}
@media screen and (max-width: 425px) {
  #theme-switch {
    border-width: 3px;
  }
  #theme-switch svg {
    width: 20px;
    height: 20px;
  }
}
#theme-switch:hover svg {
  transition: all 0.7s ease-in-out;
  scale: 1.2;
  rotate: 180deg;
}
#theme-switch:not(hover) svg {
  transition: all 0.7s ease-in-out;
  scale: 1;
  rotate: -180deg;
}
#theme-switch svg {
  fill: var(--color);
}
#theme-switch svg:first-child {
  display: none;
}
#theme-switch svg:last-child {
  display: block;
}
.darkmode #theme-switch svg:last-child {
  display: none;
}
.darkmode #theme-switch svg:first-child {
  display: block;
}

section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12rem;
  background-color: var(--bckgrnd);
  padding: 10rem;
  border-top: solid var(--color) 5px;
  width: 100vw;
  height: 100vh;
}
section .text {
  display: flex;
  flex: 1.3;
  flex-direction: column;
  justify-content: center;
}
section .text h2 {
  font-family: "Anton", sans-serif;
  font-size: 8rem;
  margin-bottom: 1rem;
  color: var(--color);
}
section .text p {
  font-family: "Quicksand", sans-serif;
  text-align: justify;
  font-size: 2rem;
  color: var(--color);
}
@media screen and (max-width: 950px) {
  section {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2rem;
  }
  section .text {
    padding: 0;
    align-items: center;
  }
  section .text p {
    font-size: 1rem;
    max-width: 100%;
    text-align: justify;
    padding: 0;
  }
  section .text h2 {
    font-size: 2rem;
  }
  section .contBtns {
    margin: 0;
    padding: 0;
  }
  section .contBtns svg {
    margin: 1rem;
    width: 2rem;
    height: 2rem;
  }
}

.home {
  padding-top: 5rem;
  position: relative;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: -100;
  border-top: none;
  /*
  img{
      max-height: 100vh;
      position: absolute;
      width: 50%;
      height: 50%;
  }*/
}
.home .mainText {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.home .mainText h1 {
  font-size: 27rem;
  font-family: "Anton", sans-serif;
}
.home .mainText p {
  font-size: 2rem;
}
.home .subtitle {
  font-family: "Quicksand", sans-serif;
}
@media screen and (max-width: 425px) {
  .home .mainText h1 {
    font-size: 5rem;
  }
  .home .mainText p {
    font-size: 1rem;
  }
}

#about * {
  z-index: -80;
}

#work * {
  z-index: -60;
}
#work .photos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#work .photos img {
  filter: sepia(1);
  width: 30rem;
  height: auto;
  border-radius: 8px;
  transition: all 0.4s ease;
}
#work .photos img:hover {
  filter: none;
  scale: 1.05;
}
@media screen and (max-width: 425px) {
  #work {
    flex-direction: column-reverse;
  }
  #work .photos img {
    width: 15rem;
  }
}

#contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: -40;
}
#contact .links {
  display: flex;
  flex-direction: row;
  gap: 20rem;
  margin-top: 2rem;
}
#contact .links a {
  text-decoration: none;
  color: var(--color);
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 425px) {
  #contact .links {
    gap: 2rem;
    flex-direction: column;
    margin-top: 0;
  }
  #contact .links a {
    font-size: 1rem;
  }
}

.animation img {
  width: 25rem;
  height: auto;
}
.animation .light {
  display: block;
}
.animation .dark {
  display: none;
}
@media screen and (max-width: 425px) {
  .animation img {
    width: 15rem;
  }
}

.darkmode img {
  width: 25rem;
  height: auto;
}
.darkmode .light {
  display: none;
}
.darkmode .dark {
  display: block;
}
@media screen and (max-width: 425px) {
  .darkmode img {
    width: 15rem;
  }
}

.details {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  bottom: 0;
  left: 0;
  padding: 1rem;
  width: 100vw;
  height: 3rem;
  border-top: var(--color2) solid 5px;
  text-align: center;
  justify-content: space-evenly;
  background-color: #0C4534;
}
.details p {
  color: #f3ede1;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 425px) {
  .details {
    height: 0.5rem;
    border-top: var(--color2) solid 2px;
  }
  .details p {
    font-size: 0.5rem;
  }
}

/* ANIMATIONS */
@keyframes hoveranim1 {
  from {
    translate: 0 0;
    bottom: 0;
    left: 0;
    width: 0;
  }
  to {
    translate: 0 0;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@keyframes hoveranim1rev {
  from {
    translate: 0 0;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  to {
    translate: 0 0;
    bottom: 0;
    left: 100%;
    width: 0;
  }
}/*# sourceMappingURL=style.css.map */