@charset "UTF-8";
*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  min-height: 399vh;
  font-family: "Lora", serif;
  line-height: 36px;
  font-size: 16px;
}

h1 {
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 700px) {
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  h2 {
    font-size: 16px;
    line-height: 24px;
  }
}

h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  h3 {
    font-size: 12px;
    line-height: 16px;
  }
}

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

button {
  border: none;
}

:root {
  --zero-text-color: black;
  --main-background-color: #a3927b;
  --secondary-background-color: #b3c890;
  --first-color: #aae93e;
  --second-color: #aae;
  --first-img: url("../assets/inshot.png");
}

.cat-theme {
  --zero-text-color: black;
  --main-background-color: #f4f2de;
  --secondary-background-color: #a1ccd1;
  --first-color: #f4d160;
  --second-color: #e9b384;
  --first-img: url("../assets/InShot_۲۰۲۳۰۷۱۸_۱۹۳۷۰۹۳۳۳.png");
}

body {
  background-color: var(--main-background-color);
}

.header-section {
  overflow: hidden;
  transition: 0.7s;
  background-color: var(--secondary-background-color);
  padding: 16px 40px;
  font-family: "Dancing Script", cursive;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: none;
  z-index: 999;
  width: 80vw;
  margin-left: 14vw;
  margin-right: 5vw;
}
@media screen and (max-width: 550px) {
  .header-section {
    max-width: 76vw;
    margin-left: 19vw;
  }
}
.header-section .header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-section .header-logo img {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 50%;
}
.header-section .hamburger {
  display: none;
}
.header-section .icons {
  display: flex;
  gap: 24px;
  font-size: 32px;
}
.header-section .icons .icon-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 50%;
  color: var(--zero-text-color);
  cursor: pointer;
  outline: 2px solid var(--zero-text-color);
  transition-property: outline-color, outline-offset, background-color;
  transition-duration: 0.2s;
  cursor: pointer;
}
.header-section .icons .icon-item:hover {
  outline-color: var(--second-color);
  background-color: var(--second-color);
  outline-offset: 5.6px;
  animation: shake 0.3s;
}
@keyframes shake {
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
}
@media screen and (max-width: 1100px) {
  .header-section .icons {
    gap: 8px;
    font-size: 16px;
  }
  .header-section .icons .icon-item {
    padding: 8px;
  }
  .header-section .header-logo h1 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 750px) {
  .header-section {
    padding: 8px;
  }
  .header-section .hamburger {
    display: block;
    cursor: pointer;
  }
  .header-section .hamburger .line {
    width: 24px;
    height: 2.4px;
    background: var(--zero-text-color);
    margin: 6.4px 0;
  }
  .header-section .icons {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    background: white;
    transition: 0.5s;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
  }
  .header-section .icons .icon-item {
    opacity: 1;
  }
}
.header-section .active {
  display: flex;
}

.navbarOverFlow {
  overflow: visible;
}

.menu-section {
  font-family: "Dancing Script", cursive;
  position: fixed;
  right: none;
  left: 2vw;
  top: 8vh;
  bottom: none;
  z-index: 999;
  min-width: 5vw;
  height: 100vh;
  display: flex;
  align-items: none;
  flex-direction: column;
  justify-content: none;
  gap: 8px;
  flex-wrap: nowrap;
}
.menu-section h1 {
  margin-bottom: 40px;
}
.menu-section .menu-ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin-left: -1vw;
}
.menu-section .menu-ul > .menu-item {
  display: flex;
}
.menu-section .menu-ul > .menu-item span {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  opacity: 0;
  display: flex;
  align-items: center;
  background-color: var(--main-background-color);
  color: var(--zero-text-color);
  transition: width 1s linear 0.6, background-color 1s linear 0.6s;
}
.menu-section .menu-a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 28px;
  padding: 16px;
}
@media screen and (max-width: 800px) {
  .menu-section .menu-a {
    font-size: 20px;
  }
}
.menu-section .menu-item > .menu-a:hover + span {
  opacity: 1;
  padding: 0 8px;
}

.about-section {
  background-image: var(--first-img);
  background-attachment: fixed;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  filter: drop-shadow(2px 2px 16px black);
  min-height: 120vh;
  display: flex;
  align-items: center;
  width: 80vw;
  margin-left: 14vw;
  margin-right: 5vw;
  gap: 24px;
}
@media screen and (max-width: 550px) {
  .about-section {
    max-width: 76vw;
    margin-left: 19vw;
  }
}
.about-section .about-text {
  width: 55%;
  background: rgba(245, 245, 220, 0.2117647059);
  padding: 5vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-section .about-text .column-text {
  -moz-columns: 19vw 2;
       columns: 19vw 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
  animation: text 1s ease-in-out;
  animation-delay: 0.7s;
}
@keyframes text {
  0% {
    transform: translateY(24px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.about-section .about-text .column-title {
  -moz-column-span: all;
       column-span: all;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .about-section {
    background-size: 680px;
  }
  .about-section .about-text {
    width: 62%;
  }
}
@media screen and (max-width: 800px) {
  .about-section {
    opacity: 1;
  }
  .about-section .about-text {
    width: 100%;
    background: rgba(245, 245, 220, 0.47);
  }
}
@media screen and (max-width: 680px) {
  .about-section {
    background-size: 573px;
  }
}
@media screen and (max-width: 550px) {
  .about-section {
    background-size: 400px;
  }
}
@media screen and (max-width: 450px) {
  .about-section {
    background-size: 360px;
  }
}

.gallery-section {
  width: 80vw;
  margin-left: 14vw;
  margin-right: 5vw;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 80vh;
  padding: 25vh 5vw 5vh 5vw;
}
@media screen and (max-width: 550px) {
  .gallery-section {
    max-width: 76vw;
    margin-left: 19vw;
  }
}
.gallery-section .wrapper {
  max-width: 70vw;
  position: relative;
}
.gallery-section .wrapper button {
  background-color: white;
  padding: 16px 16px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
}
.gallery-section .wrapper button:first-child {
  left: -28px;
  top: 43%;
}
.gallery-section .wrapper button:last-child {
  right: -28px;
  top: 44%;
}
.gallery-section .wrapper .carousel {
  font-size: 0px;
  white-space: nowrap;
  overflow: hidden;
}
.gallery-section .wrapper .carousel img {
  height: 50vh;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  margin-left: 16px;
}
.gallery-section .wrapper .carousel img:first-child {
  margin-left: 0px;
}
@media screen and (max-width: 900px) {
  .gallery-section .wrapper .carousel img {
    width: 100%;
  }
  .gallery-section .wrapper button {
    padding: 8px 8px;
    font-size: 16px;
  }
}

.introduce-section {
  min-height: 50vh;
  width: 80vw;
  margin-left: 14vw;
  margin-right: 5vw;
  padding-bottom: 20vh;
}
@media screen and (max-width: 550px) {
  .introduce-section {
    max-width: 76vw;
    margin-left: 19vw;
  }
}

.portfolio-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
  margin-left: 14vw;
  margin-right: 5vw;
  gap: 32px;
  padding: 25vh 0;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .portfolio-section {
    max-width: 76vw;
    margin-left: 19vw;
  }
}
.portfolio-section .portfolio-img-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.portfolio-section .portfolio-img-div .portfolio-img {
  overflow: hidden;
  width: 50%;
  height: 200px;
  display: flex;
  flex: 1 0 200px;
  border-radius: 24px;
  position: relative;
}
.portfolio-section .portfolio-img-div .portfolio-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 0.5s;
  cursor: pointer;
}
.portfolio-section .portfolio-img-div .portfolio-img span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  font-size: "Dancing Script", cursive;
  font-size: 24px;
  color: var(--zero-text-color);
  transition: opacity 0.5s;
}
.portfolio-section .portfolio-img-div .portfolio-img:hover img {
  filter: blur(20px);
}
.portfolio-section .portfolio-img-div .portfolio-img:hover span {
  opacity: 1;
}

.form-section {
  border: 2px solid var(--first-color);
  width: 80vw;
  margin-left: 14vw;
  margin-right: 5vw;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: nowrap;
  border-radius: 8px;
  padding: 10vh 2vw;
  background: var(--second-color);
}
@media screen and (max-width: 550px) {
  .form-section {
    max-width: 76vw;
    margin-left: 19vw;
  }
}
.form-section .submit-section {
  display: flex;
  align-items: none;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  height: 25vh;
}
.form-section .submit-section .submit-div {
  width: 65%;
  height: 5vh;
  display: flex;
  flex: 1 0 20%;
}
.form-section .submit-section .submit-div * {
  border-radius: 24px;
  border: 2px solid var(--second-color);
  transition: filter 0.5 linear 0.2;
  padding: 0 auto;
}
.form-section .submit-section .submit-div:hover input {
  filter: drop-shadow(0 0 8px var(--second-color));
}
.form-section .submit-section .button-div {
  display: flex;
  align-items: center;
}
.form-section .submit-section .button-div .button {
  display: block;
  outline: 2px solid var(--first-color);
  color: var(--zero-text-color);
  width: 100px;
  height: 48px;
  background-color: var(--first-color);
  transition: outline-offset 0.3s, outline-color 0.3s, background-color 0.3s;
}
.form-section .submit-section .button-div .button:is(:hover, :focus) {
  outline-offset: 16px;
  outline-color: var(--main-background-color);
  background-color: var(--main-background-color);
}

.scrolltop {
  visibility: visible;
  opacity: 1;
  position: fixed;
  right: 1vw;
  left: none;
  top: none;
  bottom: 4vh;
  z-index: 999;
  transition: visibility 0.5s ease-in, opacity 0.5s ease-in;
}
.scrolltop .go-top-button {
  display: flex;
  background-color: white;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--zero-text-color);
  cursor: pointer;
  padding: 16px;
}
.scrolltop .go-top-button .ti,
.scrolltop .go-top-button .ti-circle-arrow-up-filled {
  font-size: 32px;
  color: var(--zero-text-color);
}
@media screen and (max-width: 900px) {
  .scrolltop .go-top-button {
    padding: 12px;
  }
  .scrolltop .go-top-button .ti,
  .scrolltop .go-top-button .ti-circle-arrow-up-filled {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .scrolltop .go-top-button {
    padding: 8px;
  }
  .scrolltop .go-top-button .ti,
  .scrolltop .go-top-button .ti-circle-arrow-up-filled {
    font-size: 16px;
  }
}

footer {
  height: 20vh;
  background: var(--second-color);
  margin-top: 15vh;
  display: flex;
  justify-content: space-evenly;
}
footer div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .footer-icons-sec {
  display: flex;
  gap: 16px;
  padding-top: 5vh;
  padding-left: 7vw;
}
footer .footer-icons-sec .footer-div1 {
  display: flex;
  gap: 8px;
}
footer .footer-icons-sec .footer-div1 .footer-icons {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  font-size: 16px;
}
footer .footer-icons-sec .footer-div1 .footer-icons .footer-icon-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 50%;
  color: var(--zero-text-color);
  cursor: pointer;
  outline: 1px solid var(--zero-text-color);
  transition-property: outline-color, outline-offset, background-color;
  transition-duration: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  footer .footer-icons h5 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */