@font-face {
  font-family: "playfair-display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
}
@font-face {
  font-family: "kanit";
  src: url(../fonts/Kanit-Bold.ttf);
}
@font-face {
  font-family: "kanit medium";
  src: url(../fonts/Kanit-Medium.ttf);
}
* {
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #F1E9D7;
  overflow-x: hidden;
  width: 100%;
}

.hidden {
  display: none;
}

/* Header */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #5B7D57;
  box-shadow: 0 0 5px black;
  padding: 10px 25px;
  z-index: 1000;
  overflow: hidden;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
}

.header-logo img {
  padding: 5px 0;
  width: 75px;
  transition: all 0.2s ease-in-out;
}

.header-logo img:hover {
  transform: scale(1.1);
}

.hamburger, .close-hamburger {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.close-hamburger {
  align-self: self-end;
  margin-top: 12px;
  margin-right: 10px;
}

.hamburger-icon {
  width: 45px;
  transition: transform 0.5s ease;
  margin-right: 10px;
}

.hamburger-icon:hover {
  transform: rotate(-90deg);
}

.sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 45%;
  background-color: #5B7D57;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
  z-index: 999;
}

.sidebar.active {
  transform: translateX(0);
  visibility: visible;
}

.sidebar a {
  font-size: 1.5rem;
  color: #F1E9D7;
  padding: 10px 10px 10px 25px;
  font-family: "Kanit";
  font-weight: 600;
  display: block;
}

.sidebar .nav-item a:hover, .sidebar .nav-item a:active {
  color: #5B7D57;
  background-color: #F1E9D7;
  transform: scale(1.1);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}

#hero-gutter {
    margin-top: -25px;
}

@media screen and (min-width: 768px) {
  .header-section {
    padding: 10px 50px;
  }
  .hamburger, .sidebar .close-hamburger {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar, .sidebar.active {
    display: block;
    position: static;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    width: auto;
    transform: none;
    transition: none;
  }
  .sidebar ul {
    display: flex;
    flex-direction: row;
  }
  .sidebar a {
    font-size: 22px;
    padding: 5px 15px;
  }
  .sidebar ul .nav-item a:hover, .sidebar ul .nav-item a:active {
    border-radius: 5px;
    transform: none;
  }
}
@media screen and (min-width: 1200px) {
  .header-section {
    padding: 10px 100px;
  }
  .header-logo img {
    width: 75px;
  }
  .sidebar a {
    font-size: 24px;
    padding: 5px 15px;
  }
}
#footer {
  background-color: #F1E9D7;
  height: auto;
  width: 100%;
  padding: 25px 10vw 10px 10vw;
}

#footer-content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#footer-text-logo {
  display: flex;
  flex-direction: column;
}

#footer-logo img {
  width: 75px;
  cursor: pointer;
}

#footer-text-logo p {
  color: #5B7D57;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  justify-self: self-start;
}

.social img {
  width: 40px;
}

.social img:hover {
  transform: scale(1.1);
}

.social img:active {
  transform: scale(1.1);
}

.social {
  margin: 5px;
}

#social-media {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  #footer-text-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  #footer-text-logo p {
    margin: 0px 50px;
    font-size: 20px;
  }
  .social {
    margin: 0px 10px;
  }
  #social-media {
    align-self: center;
  }
}
.top-section {
  width: 100%;
  height: auto;
  padding-bottom: 15vw;
}

.top-img, .top-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-img-container {
  height: 100vw;
  width: 100%;
  background-color: red;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-content {
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 40% opacity */
  z-index: 1;
}

.top-text {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12vw;
  color: #F1E9D7;
  font-family: kanit;
  line-height: 100%;
  z-index: 2;
}

.problem-heading, .res-heading {
  font-size: 10vw;
  color: #5B7D57;
  text-align: center;
  font-family: kanit medium;
  margin-bottom: 5vw;
}

.problem-icon, .res-icon {
  width: 100%;
  height: auto;
}

.bkground-1, .bkground-3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #5B7D57;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  height: auto;
  padding: 15vw;
  z-index: 2;
  margin: 0vw 5vw;
}

.bkground-2, .bkground-4 {
  position: relative;
  background-color: #5B7D57;
  color: #F1E9D7;
  text-align: left;
  margin: 0px 5vw;
  z-index: 1;
  padding: 0vw 5vw 5vw 5vw;
  margin-bottom: 50px;
}

.problem-text, .res-text {
  font-size: 4vw;
  color: black;
  background-color: #F1E9D7;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  padding: 4vw;
  font-family: playfair display;
}

.dp-heading {
  font-size: 10vw;
  color: #5B7D57;
  text-align: center;
  font-family: kanit medium;
  margin-top: 5vw;
}

.process-section {
  padding-top: 10vw;
}

.design-section, .motion-section {
  padding-top: 5vw;
}

.design-img img, .process-img img {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
  background-repeat: no-repeat;
}

.design-content, .process-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #5B7D57;
  text-align: left;
  margin: 0px 5vw;
  z-index: 1;
  padding: 5vw 5vw;
  height: auto;
}

.software-icons img {
  width: 12%;
  height: auto;
  margin: 2vw;
}

.software-icons {
  width: 100%;
  height: auto;
  background-color: #F1E9D7;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  padding: 1vw;
}

.dp-text {
  margin-top: 4vw;
  font-size: 4vw;
  color: black;
  background-color: #F1E9D7;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  padding: 4vw;
  font-family: playfair display;
}

.final-result {
  padding-top: 10vw;
}

.fr-heading {
  font-size: 8vw;
  color: #5B7D57;
  text-align: center;
  font-family: kanit medium;
  margin-bottom: 5vw;
}

.showcase-img {
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
}

.showcase-video {
  width: 100%;
  display: block;
}

.showcase-img img {
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.fr-brief, .fr-summery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #5B7D57;
  text-align: left;
  margin: 0vw 5vw;
  z-index: 1;
  padding: 0vw 5vw;
  height: auto;
}

.fr-brief {
  padding: 5vw;
}

.fr-summery {
  padding-bottom: 5vw;
}

.fr-text {
  font-size: 4vw;
  background-color: #F1E9D7;
  color: black;
  padding: 4vw;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  font-family: playfair display;
}

#mixer-xray {
  aspect-ratio: 16/10.36;
  background-image: url(../images/Music-Mixer/Desktop-Mixer-Design.webp);
}

#mixer-divisor {
  aspect-ratio: 16/9.3;
  background-image: url(../images/Music-Mixer/Desktop-Mixer-Thumbnail.webp);
}

#pokemon-xray {
  aspect-ratio: 16/9.3;
  background-image: url(../images/Pokemon/Pokemon-Slider-Wireframe.webp);
}

#pokemon-divisor {
  aspect-ratio: 16/9.3;
  background-image: url(../images/Pokemon/Desktop-Pokemon-Final.webp);
}

#nova-xray {
  aspect-ratio: 16/9.3;
  background-image: url(../images/Nova/Nova-Xray.webp);
}

#nova-divisor {
  aspect-ratio: 16/9.3;
  background-image: url(../images/Nova/Nova-Textured.webp);
}

.xray {
  position: relative;
  background-size: contain;
  height: auto;
  margin: 0 auto;
}

.divisor {
  position: absolute;
  top: 0;
  left: 0px;
  background-size: cover;
  width: 50%;
  height: 100%;
}

.fr-content input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  left: -10px;
  top: 48%;
  transform: translateY(-50%);
  width: calc(100% + 20px);
  height: 20px;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 0;
  background: transparent;
  border: none;
}

input[type=range]::-moz-range-track {
  height: 0;
  background: transparent;
  border: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5vw;
  height: 5vw;
  background: #5B7D57;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: #F1E9D7;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #F1E9D7;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .top-section {
    padding: 5vw 10vw;
    padding-top: 125px;
  }
  .top-img-container {
    height: 50vw;
    width: 100%;
    background-color: red;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-text {
    top: 0;
    left: 0;
    font-size: 8vw;
  }
  .problem-res {
    padding: 0vw 9vw;
  }
  .problem-icon {
    width: 100%;
    height: auto;
  }
  .res-icon {
    width: 87%;
    height: auto;
  }
  .bkground-1, .bkground-3 {
    padding: 5vw;
    margin: 0vw 1vw;
    order: 1;
  }
  .bkground-2, .bkground-4 {
    margin: 0px 1vw;
    padding: 0vw 2vw 2vw 2vw;
    order: 2;
  }
  .problem-heading, .res-heading {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
  .problem-text, .res-text {
    font-size: 2vw;
    padding: 2vw;
  }
  .design-process {
    padding-top: 10vw;
  }
  .dp-heading {
    font-size: 6vw;
    margin-bottom: 0vw;
  }
  .process-section {
    margin: 0vw 5vw 0vw 5vw;
    padding-top: 5vw;
  }
  .design-section, .motion-section {
    margin: 0vw 5vw 0vw 5vw;
  }
  .design-content, .process-content {
    margin: 0vw;
    padding: 2vw 2vw;
  }
  .software-icons img {
    width: 5%;
    height: auto;
    margin: 0.5vw;
  }
  .software-icons {
    padding: 1vw;
  }
  .dp-text {
    margin-top: 4vw;
    font-size: 2vw;
    padding: 4vw;
  }
  .final-result {
    padding-top: 10vw;
  }
  .fr-heading {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
  .showcase-img {
    width: 88.5vw;
    margin: 0 auto;
  }
  .showcase-img img {
    display: flex;
  }
  .showcase-video {
    display: flex;
    width: 88.5vw;
    margin: 0 auto;
  }
  .fr-brief, .fr-summery {
    margin: 0vw 5.1vw;
    z-index: unset;
    padding: 2vw 2vw;
  }
  .fr-text {
    font-size: 2vw;
    padding: 3vw;
  }
  input[type=range]::-webkit-slider-thumb {
    width: 3vw;
    height: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .top-section {
    padding: 5vw 10vw;
    padding-top: 150px;
  }
  .top-img-container {
    height: 35vw;
    width: 100%;
    background-color: red;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-text {
    font-size: 6vw;
  }
  .problem-heading {
    text-align: left;
    font-size: 3.5vw;
    padding: 0vw 0vw 0vw 6.5vw;
    margin-bottom: 1vw;
  }
  .res-section {
    margin-top: 1vw;
  }
  .res-heading {
    text-align: right;
    font-size: 3.5vw;
    padding: 0vw 2vw 0vw 0vw;
    margin-bottom: 1vw;
  }
  .content-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
  }
  .res-icon {
    width: 100%;
    height: auto;
  }
  .bkground-1, .bkground-3 {
    margin: 0;
    width: 35vw;
    min-height: 25vw;
  }
  .bkground-2, .bkground-4 {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 1vw 1vw 1vw 0vw;
  }
  .bkground-4 {
    order: 1;
    padding: 1vw 0vw 1vw 1vw;
  }
  .bkground-3 {
    order: 2;
  }
  .problem-text {
    font-size: 1.2vw;
    padding: 1vw;
  }
  .res-text {
    font-size: 1.2vw;
    padding: 1vw;
  }
  .res-text, .problem-text {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
  }
  .design-process {
    padding-top: 1vw;
  }
  .dp-heading {
    font-size: 3vw;
    margin-bottom: 2.5vw;
  }
  #nova-dev {
    padding-top: 4vw;
    margin: 0vw 4vw 0vw 4vw;
  }
  .process-section {
    margin: 0vw 9vw 0vw 1vw;
    padding: 0px;
  }
  .motion-section {
    margin: 0vw 9vw 0vw 1vw;
    padding: 0px;
  }
  .design-section {
    margin: 0vw 1vw 0vw 9vw;
    padding: 0px;
  }
  .design-content, .process-content {
    padding: 1vw 1vw;
  }
  .software-icons img {
    width: 9%;
    margin: 0.5vw;
  }
  .software-icons {
    padding: 1vw;
  }
  .dp-text {
    margin-top: 2vw;
    font-size: 1.2vw;
    padding: 2vw;
  }
  .final-result {
    padding-top: 5vw;
  }
  .fr-heading {
    font-size: 3vw;
    margin-bottom: 2vw;
  }
  .showcase-img {
    width: 100%;
    max-width: 70vw;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
  }
  .showcase-video {
    max-width: 70vw;
    margin: 0 auto;
  }
  .fr-brief .software-icons img {
    width: 5%;
    margin: 0.5vw;
  }
  .fr-brief, .fr-summery {
    margin: 0vw 14.6vw;
    padding: 2vw 2vw;
  }
  .software-icons {
    padding: 1vw;
  }
  .fr-text {
    font-size: 1.2vw;
    padding: 2vw;
  }
  .xray {
    max-width: 1920px;
  }
  input[type=range]::-webkit-slider-thumb {
    width: 2vw;
    height: 2vw;
  }
}
#login-container {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1E9D7;
}

.login-form {
  justify-self: center;
  align-self: center;
  background-color: #5B7D57;
  backdrop-filter: blur(15px);
  padding: 50px 50px;
  border-radius: 15px;
  text-align: center;
  color: black;
  max-width: 500px;
}

.login-form h2 {
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 2rem;
  color: white;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #F1E9D7;
  color: black;
  font-size: 14px;
  transition: 0.3s ease;
}

.input-group input::-moz-placeholder {
  color: gray;
}

.input-group input::placeholder {
  color: gray;
}

.input-group input:focus {
  transform: scale(1.1);
}

.input-group input:focus::-moz-placeholder {
  color: black;
}

.input-group input:focus::placeholder {
  color: black;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background-color: #F1E9D7;
  color: #5B7D57;
  transition: 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.1);
}

.error-message {
  font-size: 2rem;
  background-color: red;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 13px;
  color: #ffb3b3;
}

#add-project {
  margin-top: 25px;
  border: 3px solid #5B7D57;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vw;
  width: 95%;
  transition: all 0.3s ease;
}

#add-project-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #5B7D57;
}

#plus-icon {
  font-size: 3.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
  margin-top: -10px;
}

#add-project-content {
  font-family: "Kanit";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#add-project-content:hover {
  transform: scale(1.2);
}

#add-text {
  font-size: 1.5rem;
  font-weight: 600;
}

#form-box {
  background: #5B7D57;
  padding: 20px;
  color: white;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
}

#fb-btn {
  background: #F1E9D7;
  color: #5B7D57;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
}

#fb-bk {
  color: white;
  display: block;
  text-align: center;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #add-project {
    margin-top: 0px;
    border: 3px solid #5B7D57;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 375px;
    width: 375px;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  #add-project {
    border: 3px solid #5B7D57;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
    transition: all 0.3s ease;
  }
  #add-project-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #5B7D57;
  }
  #plus-icon {
    font-size: 3.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    margin-top: -10px;
  }
  #add-project-link:hover .plus-icon {
    transform: scale(1.2);
  }
  #add-project-content {
    font-family: "Kanit";
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #add-text {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
@keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  20% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  50% {
    transform: translateX(-50%) translateY(0);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
  80% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
#hero-section {
  position: relative;
  height: auto;
  gap: 0px;
  padding-top: 125px;
  background-color: #5B7D57;
}

#profile-picture {
  margin: 0vw 10vw;
  border-top-right-radius: 5vw;
  border-top-left-radius: 5vw;
}

#profile-picture img {
  display: block;
  width: 100%;
  max-width: 400px;
  box-shadow: -5px 0px 50px 0px #F1E9D7, 5px 0px 50px 0px #F1E9D7;
  border-top-right-radius: 2vw;
  border-top-left-radius: 2vw;
  margin: 0 auto;
}

#intro-text {
  background-color: #F1E9D7;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#intro-text p {
  color: #5B7D57;
  font-family: kanit;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 15px 10vw;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#intro-text #intro-btn {
  margin: 0px 0px 50px 0px;
  align-self: center;
  border: none;
  background-color: black;
  color: #F1E9D7;
  font-size: 1rem;
  font-weight: 600;
  font-family: kanit;
  border-radius: 10px;
  cursor: pointer;
}

#intro-btn {
  padding: 10px 20px;
  margin-top: 5px;
}

#intro-text #intro-btn:hover, #intro-btn:active {
  background-color: #5B7D57;
  color: #F1E9D7;
  transform: scale(1.03);
}

.scroll-down-arrow {
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: #5B7D57;
  cursor: pointer;
  animation: bounce 1.5s infinite;
}

@media screen and (min-width: 768px) {
  .scroll-down-arrow {
    display: none;
  }
  #hero-section {
    padding: 150px 75px 75px 75px;
  }
  #hero-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  #profile-picture {
    width: auto; /* Change from 100% to auto */
    flex-shrink: 0; /* Prevents the image container from shrinking */
    margin: 0;
    order: 2;
    line-height: 0; /* Removes tiny descriptor gap at bottom of images */
  }
  #profile-picture img {
    width: 100%;
    max-width: 400px;
    padding: 0px 0vw 0px 0vw;
    border-radius: 0vw;
    box-shadow: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #intro-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    height: auto;
    flex: 1;
    padding: 4vw;
    order: 1;
    max-width: unset;
  }
  #intro-text p {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: start;
    padding: 0px 0vw;
    max-width: unset;
  }
  #intro-text #intro-btn {
    margin: 20px 0px 0px 0vw;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: kanit;
    padding: 5px 25px;
    border-radius: 10px;
    align-self: flex-start;
  }
  #hero-gutter {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .scroll-down-arrow {
    display: block;
  }
  #hero-section {
    position: relative;
    padding: 175px 10vw 100px 10vw;
  }
  #intro-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    height: auto;
    padding: 4vw;
    order: 1;
  }
  #profile-picture img {
    width: 100%;
    margin-bottom: -4px;
  }
  #intro-text p {
    font-size: 2vw;
    font-weight: 600;
    text-align: start;
    padding: 0px 0vw;
  }
  #intro-text #intro-btn {
    margin: 30px 0px 0px 0px;
    font-size: 1.5vw;
    font-weight: 600;
    font-family: kanit;
    padding: 7px 25px;
    border-radius: 10px;
    align-self: self-start;
  }
  .scroll-down-arrow {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4vw;
    color: #5B7D57;
    cursor: pointer;
    animation: bounce 1.5s infinite;
  }
}
#service-section {
  background-color: #F1E9D7;
  height: auto;
  padding: 0px 10vw 0px 10vw;
  margin: 10vw 0vw;
}

.service-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #5B7D57;
  font-family: playfair display;
  padding: 0px 10vw;
  height: auto;
  margin: 5vw 0vw;
  cursor: pointer;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-radius: 10px;
  width: 100%;
  max-width: 425px;
  margin: 25px auto;
}

.service-container:hover .service-header, .service-container:hover .service-text {
  color: #5B7D57;
}

.service-container:hover {
  background-color: #F1E9D7;
  border: 5px solid #5B7D57;
}

.service-container:hover svg path {
  fill: #5B7D57;
}

.service-container:hover #mg-image path {
  stroke: #5B7D57;
  fill: none;
}

.service-header {
  font-size: 1.7rem;
}

.service-text {
  font-size: 1.3rem;
  font-weight: 400;
}

.service-header, .service-text {
  margin: 25px 0px;
  color: #F1E9D7;
}

.service-img {
  width: 100%;
  height: auto;
}

.gutter {
  background-color: #5B7D57;
  height: 75px;
}

@media screen and (min-width: 768px) {
  #service-section {
    padding: 0px 50px 0px 50px;
    margin-top: 5vw;
    margin-bottom: 0px;
    gap: 25px;
  }
  #service-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
  }
  .service-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #5B7D57;
    height: 400px;
    width: 100%;
    max-width: 300px;
    padding: 1vw 2.5vw;
    margin: 0 auto;
  }
  .service-img, #mg-image {
    width: 50%;
    max-width: 300px;
    height: auto;
  }
  .service-header {
    font-size: 1.8rem;
  }
  .service-text {
    font-size: 1rem;
  }
  .service-header, .service-text {
    margin: 2vw 0px;
    color: #F1E9D7;
  }
  #service-gutter {
    margin-top: 5vw;
    height: 75px;
  }
}
@media screen and (min-width: 1200px) {
  #service-section {
    margin-bottom: 0px;
    gap: 25px;
  }
  #service-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    max-width: unset;
    margin: 0 auto;
    width: 100%;
  }
  .service-container {
    background-color: #5B7D57;
    height: 500px;
    margin: 0px 0vw 0px 0vw;
    max-width: 425px;
  }
  .service-img, #mg-image {
    width: 100%;
    height: auto;
  }
  .service-header {
    font-size: 2.5rem;
  }
  #mg-header {
    font-size: 2.5rem;
  }
  .service-text {
    font-size: 1.5vw;
  }
}
:root {
  --plyr-color-main: a.$primary-color;
  --plyr-control-icon-hover-color: a.$secondary-color;
  --plyr-control-background-hover: a.$secondary-color;
  --plyr-range-thumb-background: a.$secondary-color;
}

#portfolio-section {
  position: relative;
  background-color: #F1E9D7;
  height: auto;
  padding: 10vw 10vw 10vw 10vw;
}

#portfolio-filters {
  display: flex;
  gap: 2vw;
  padding-bottom: 25px;
}

#portfolio-filters .filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #5B7D57;
  color: #F1E9D7;
  border: none;
  font-size: 3vw;
  font-weight: 700;
  cursor: pointer;
  border-radius: 1vw;
  border: 2px solid transparent;
  padding: 4vw 3vw;
  height: 7vw;
}

#portfolio-filters .filter-btn:hover,
#portfolio-filters .filter-btn.active {
  background-color: #F1E9D7;
  color: #5B7D57;
  transform: scale(1.05);
  border: solid #5B7D57;
  transition: all 0.3s ease;
}

#projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.project {
  background-color: #5B7D57;
  height: auto;
  overflow: hidden;
  border-radius: 0vw;
  height: 350px;
}

.project picture, .project picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: bottom !important;
     object-position: bottom !important;
}

.info-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
  color: white;
  font-weight: 700;
  font-size: 2rem;
  padding: 1vw 3vw;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
  border-bottom-left-radius: 1vw;
}

.info-btn:hover {
  transform: scale(1.1);
}

.project-overlay {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 30px;
  gap: 10px;
  transition: bottom 0.4s ease;
  font-family: "play-fair display", sans-serif;
}

.project-overlay.show {
  bottom: 0;
}

.close-overlay {
  background: white;
  color: black;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  margin-top: 15px;
  cursor: pointer;
}

.project-overlay .info-header {
  font-size: 1.5rem;
}

.project-overlay .info-text {
  font-size: 1rem;
}

.learn-more {
  background-color: #5B7D57;
  color: #F1E9D7;
  padding: 10px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.learn-more:hover {
  background-color: #F1E9D7;
  color: #5B7D57;
}

#demo-reel {
  width: 100%;
  height: auto;
  background-color: #5B7D57;
  padding: 25px;
}

#player {
  width: 100%;
  height: 100%;
  max-width: 500px;
}

#video-section {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.plyr--full-ui .plyr__control--overlaid {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #5B7D57;
  border-radius: 5px;
}

.plyr__video-wrapper {
  position: relative !important;
}

.plyr--full-ui .plyr__controls button.plyr__control:hover {
  background-color: transparent !important;
  color: #5B7D57 !important;
  transform: scale(1.4);
  transition: 0.3s ease;
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb,
.plyr--full-ui input[type=range]::-moz-range-thumb,
.plyr--full-ui input[type=range]::-ms-thumb {
  background: #5B7D57 !important;
  transform: scale(1.1);
  border-radius: 5px;
  cursor: pointer;
}

.plyr--full-ui input[type=range]:hover::-webkit-slider-thumb {
  background: #F1E9D7 !important;
  transform: rotate(90deg) scale(1.5);
}

#player-container {
  border-radius: 0px;
  overflow: hidden;
  border: 5px solid #F1E9D7;
}

@media screen and (min-width: 768px) {
  #portfolio-section {
    height: auto;
    padding: 5vw 4vw;
    gap: 2vw;
  }
  #portfolio-filters {
    margin-bottom: 3vw;
  }
  #portfolio-filters .filter-btn {
    font-size: 2.5vw;
    border-radius: 5vw;
    padding: 3vw;
    height: 6vw;
  }
  #projects {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: unset;
  }
  .project {
    height: 300px;
    width: 300px;
  }
  .info-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: black;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1vw 2.5vw;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
    border-bottom-left-radius: 1vw;
  }
  .info-btn:hover {
    transform: scale(1.1);
  }
  .project-overlay {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 30px;
    gap: 10px;
    transition: bottom 0.4s ease;
    font-family: "play-fair display", sans-serif;
  }
  .project-overlay.show {
    bottom: 0;
  }
  .close-overlay {
    background: white;
    color: black;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
  }
  .project-overlay .info-header {
    font-size: 1.2rem;
  }
  .project-overlay .info-text {
    font-size: 1rem;
  }
  .learn-more {
    font-size: 1rem;
    padding: 1vw 2vw;
  }
  #demo-reel {
    width: 100%;
    height: auto;
    background-color: #5B7D57;
    padding: 50px;
  }
  #player {
    width: 100%;
    height: 100%;
    max-width: unset;
  }
  #video-section {
    width: 100%;
    margin: 0 auto;
    max-width: unset;
  }
  .plyr--full-ui .plyr__control--overlaid {
    transform: translate(-50%, -50%) scale(1.25) !important;
  }
  .plyr--full-ui .plyr__controls button.plyr__control {
    transform: scale(1.25);
  }
  .plyr--full-ui .plyr__controls button.plyr__control:hover {
    transform: scale(1.5);
  }
  .plyr--full-ui input[type=range]::-webkit-slider-thumb {
    transform: scale(1.25);
  }
}
@media screen and (min-width: 1200px) {
  .info-btn {
    display: none;
  }
  #portfolio-section {
    padding: 5vw 0vw;
    gap: 1vw;
  }
  #portfolio-filters {
    margin-bottom: 1vw;
    margin-left: 2vw;
    gap: 1vw;
  }
  #portfolio-filters .filter-btn {
    font-size: 1.5vw;
    border-radius: 2vw;
    padding: 0vw 2vw;
    height: 4vw;
  }
  #projects {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .project {
    height: 450px;
    width: 450px;
    cursor: pointer;
  }
  .project-overlay {
    justify-content: center;
    padding: 2vw 3vw;
  }
  .project-overlay.show {
    display: none;
  }
  .project:hover .project-overlay {
    bottom: 0;
  }
  .project-overlay .info-header {
    font-size: 1.5rem;
  }
  .project-overlay .info-text {
    font-size: 1rem;
  }
  .learn-more {
    font-size: 1rem;
    padding: 10px 15px;
  }
  #demo-reel {
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 50px;
  }
  #player {
    width: 100%;
    height: 100%;
    max-width: 1400px;
  }
  #video-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  #player-container {
    border: 10px solid #5B7D57;
  }
  .plyr--full-ui .plyr__control--overlaid {
    transform: translate(-50%, -50%) scale(1.5) !important;
  }
  .plyr--full-ui .plyr__controls button.plyr__control {
    transform: scale(1.5);
    margin: 5px;
  }
  .plyr--full-ui .plyr__controls button.plyr__control:hover {
    transform: scale(1.75);
  }
  .plyr--full-ui input[type=range]::-webkit-slider-thumb {
    transform: scale(1.5);
  }
  .plyr--full-ui input[type=range]:hover::-webkit-slider-thumb {
    transform: rotate(90deg) scale(1.75);
  }
}
#contact-section {
  background-color: #5B7D57;
  width: 100%;
  height: auto;
  padding: 0px 10vw 100px 10vw;
}

#contact-form, #form {
  display: flex;
  flex-direction: column;
}

.contact-header {
  font-size: 2rem;
  font-weight: 600;
  color: #F1E9D7;
  font-family: playfair display;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#contact-text {
  font-size: 1rem;
  margin: 10px 0px;
  color: #F1E9D7;
  font-family: playfair display;
  width: 100%;
  max-width: 400px;
  margin: 15px auto;
}

.field {
  height: 40px;
  background-color: white;
  border: none;
  padding: 0vw 10px;
  font-size: 2.5vw;
  font-family: playfair display;
  color: black;
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
}

#message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#message {
  height: 200px;
  padding-top: 2vw;
}

#submit-btn {
  align-self: center;
  color: #F1E9D7;
  background-color: black;
  border: none;
  border-radius: 2vw;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  width: 200px;
  margin: 0px auto;
  margin-top: 25px;
}

#submit-btn:hover, #submit-btn:active {
  color: #5B7D57;
  background-color: #F1E9D7;
}

.hidden {
  display: none;
}

#thanks-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(0.5vw);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#thanks-container #thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: playfair display;
  background: #F1E9D7;
  color: #5B7D57;
  padding: 10vw 10vw;
  border-radius: 2vw;
  text-align: center;
  width: 80%;
}

#thanks h3 {
  font-size: 7vw;
}

#explore-btn {
  background: #5B7D57;
  color: #F1E9D7;
  padding: 2vw 4vw;
  border-radius: 1vw;
  font-size: 4vw;
  font-weight: 600;
  margin: 7vw 0vw;
  border: 2px solid transparent;
}

#explore-btn:hover, #explore-btn:active {
  border: 2px solid #5B7D57;
  background-color: #F1E9D7;
  color: #5B7D57;
}

#thanks p {
  font-size: 3.5vw;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  #contact-section {
    background-color: #5B7D57;
    width: 100%;
    height: auto;
    padding: 0px 50px 75px 50px;
  }
  .contact-header {
    font-size: 2.5rem;
    font-weight: 600;
    color: #F1E9D7;
    font-family: playfair display;
    max-width: unset;
  }
  #contact-text {
    font-size: 1.3rem;
    margin: 15px 0px;
    max-width: unset;
  }
  .field {
    height: 50px;
    margin: 15px 0px;
    font-size: 1rem;
    max-width: unset;
  }
  #message {
    height: 200px;
    padding-top: 1vw;
  }
  #submit-btn {
    border-radius: 1vw;
    font-size: 1.7rem;
    padding: 10px 25px;
  }
  #thanks-container #thanks {
    padding: 10vw 5vw;
    width: 60%;
  }
  #thanks h3 {
    font-size: 5vw;
  }
  #explore-btn {
    padding: 1.5vw 4vw;
    font-size: 3vw;
    margin: 5vw 0vw;
  }
  #thanks p {
    font-size: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  #contact-section {
    width: 92%;
    max-width: 1400px;
    padding: 5vw 100px;
  }
  .contact-header {
    font-size: 2.5rem;
  }
  #contact-text {
    font-size: 1.5rem;
  }
  #contact-form {
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  .field {
    height: 50px;
    margin: 15px 0px;
    padding: 10px;
    width: 35vw;
    font-size: 14px;
    border: none;
    color: black;
    background-color: white;
  }
  #message-container {
    width: 100%;
  }
  #message {
    height: 250px;
  }
  #submit-btn {
    align-self: end;
    border-radius: 0px;
    font-size: 1.5rem;
    padding: 10px 10px;
  }
  #thanks-container #thanks {
    padding: 5vw 5vw;
    width: 60%;
  }
  #thanks h3 {
    font-size: 4vw;
  }
  #explore-btn {
    padding: 1vw 3vw;
    font-size: 2vw;
    margin: 3vw 0vw;
  }
  #thanks p {
    font-size: 2vw;
  }
}
#about-me {
  display: grid;
  align-items: center;
}

#profile-img {
  height: auto;
  margin: 200px 10vw -30vw 10vw;
  box-shadow: 0px 0px 10px 0px black;
  border-radius: 5vw;
  z-index: 1;
}

#profile-img img {
  display: block;
  width: 100%;
  border-radius: 5vw;
}

#about-header, #about-bio {
  font-family: playfair display;
  color: #F1E9D7;
}

#about-header {
  margin-top: 40vw;
  font-size: 8vw;
}

#about-bio {
  font-size: 4vw;
  margin: 5vw 0vw;
  line-height: 6vw;
  padding-bottom: 2.5vw;
}

#bkground {
  background-color: #5B7D57;
  padding: 0px 10vw 10vw 10vw;
}

#about-btn {
  align-self: center;
  border: none;
  background-color: black;
  color: #F1E9D7;
  font-size: 4vw;
  font-weight: 600;
  font-family: kanit;
  padding: 2vw 5vw;
  border-radius: 10px;
  cursor: pointer;
}

#about-btn:hover, #about-btn:active {
  background-color: #F1E9D7;
  color: #5B7D57;
}

@media screen and (min-width: 768px) {
  #profile-img {
    margin: 200px 10vw -20vw 10vw;
  }
  #about-header {
    margin-top: 25vw;
    font-size: 6vw;
    text-align: center;
  }
  #about-bio {
    font-size: 3vw;
    text-align: center;
    padding-bottom: 0vw;
    line-height: normal;
  }
  #bkground {
    display: flex;
    flex-direction: column;
    padding: 0px 10vw 1vw 10vw;
  }
  #about-btn {
    margin: 4vw;
    font-size: 3vw;
    padding: 1.5vw 4.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #about-me {
    gap: 1.5vw;
    padding: 250px 5vw 100px 10vw;
  }
  #profile-img {
    background-color: #5B7D57;
    margin: 0px;
  }
  #bkground {
    background-color: #F1E9D7;
    height: 35vw;
    padding: 0vw 5vw;
  }
  #about-header {
    color: #5B7D57;
    margin-top: 0vw;
    font-size: 3vw;
    text-align: start;
  }
  #about-bio {
    color: #5B7D57;
    font-size: 1.5vw;
    margin-top: 2vw;
    line-height: 2vw;
    text-align: start;
  }
  #about-btn {
    margin: 0vw 0px 10vw 0px;
    font-size: 1.5vw;
    padding: 0.5vw 2vw;
    align-self: flex-end;
  }
  #about-btn:hover, #about-btn:active {
    background-color: #5B7D57;
    color: #F1E9D7;
  }
}/*# sourceMappingURL=main.css.map */