/*
Theme Name: W3portfolio
Theme URI:
Author: Aayush Khanal
Author URI:
Description: portfolio website espesically designed for artist
Version: 1.0.0
License: GNU General Public License v2 or later
License URI:
Text Domain: w3-portfolio-theme
Tags: portfolio website
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  overflow-x: hidden !important;
}

.wrapper {
  width: 1180px;
  margin: 0px auto;
}

header {
  width: 100%;
}

nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;

  #menu {
    display: none;
  }

  ul {
    display: flex;
    flex-direction: row;

    li {
      list-style: none;
      margin-left: 45px;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 12px;

      a {
        text-decoration: none;
        color: #1f1f1f;
      }
    }
  }

  button {
    background-color: #9a0500;
    border: none;
    border-radius: 67px;
    padding: 7px 40px;
    height: 40px;
    color: white;
  }
}

/* Existing styles remain unchanged */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.modal-content {
  background-color: white;
  width: 80%;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.modal-content ul li {
  margin: 15px 0;
}

.modal-content ul li a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 600;
  text-transform: uppercase;
}

#close {
  position: absolute;
  top: 120px;
  right: 120px;
  font-size: 30px;
  cursor: pointer;
}

@media screen and (max-width: 980px) {
  nav ul,
  nav button {
    display: none;
  }

  #menu {
    display: block;
    font-size: 50px;
    margin-right: 20px;
    float: right;
    color: #1f1f1f;
  }
}

/* .hero {
  display: flex;
  flex-direction: row;
  width: 80%;
  align-items: center;
  margin-left: auto;
  justify-content: center;
  margin-right: auto;

  .left_hero {
    h1 {
      font-size: 60px;
      margin-left: 10px;
      position: absolute;
      left: 5%;
      top: 30%;
      color: #9a0500;
    }

    h1::before {
      content: "I am";
      color: #1f1f1f;
      font-size: 34px;
      position: absolute;
      top: -38%;
    }
  }

  .main_hero {
    margin-left: 23%;
    #fig {
      height: 500px;
      width: 500px;
    }
  }

  .main_hero::before {
    content: "";
    background-color: #9a05001a;
    width: 622px;
    height: 622px;
    position: absolute;
    top: -40%;
    left: -20%;
    border-radius: 50%;
  }

  .main_hero::after {
    content: "";
    background-color: #9a05001a;
    width: 300px;
    height: 300px;
    position: absolute;
    top: -15%;
    left: -5%;
    border-radius: 50%;
  }

  .right_hero {
    position: relative;
    height: 67%;
    margin-bottom: 23%;

    .fig1_wrapper {
      width: 464px;
      width: 320px;
      position: relative;

      #fig1 {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
      }
    }

    .fig2_wrapper {
      position: absolute;
      width: 184px;
      height: 300px;
      background-color: white;
      top: 70%;
      right: 3%;
      padding-top: 5px;
      padding-left: 5px;
      padding-bottom: 5px;
      border-radius: 16px;

      #fig2 {
        width: 98%;
        height: -webkit-fill-available;
        border-radius: 16px;
        object-fit: cover;
      }
    }
  }
} */

.hero {
  background: url("./images/hero.png") no-repeat center;
  background-size: contain;
  height: 500px;
  width: full;
  .hero_background {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    .hero_left {
      width: 50%;
      span {
        font-size: 20px;
        font-weight: 700;
      }
      h2 {
        font-size: 60px;
        font-weight: 700;
        color: #9a0500;
      }
    }
    .hero_right {
      display: flex;
      flex-direction: column;
      align-items: end;
      justify-content: flex-start;
      width: 50%;
      margin-top: 5%;
      .fig1 {
        width: 60%;
        border-radius: 16px;
        object-fit: cover;
      }
      .fig2 {
        width: 25%;
        border-radius: 16px;
        object-fit: cover;
        margin-top: -40px;
        margin-right: 20px;
      }
    }
  }
}
.hero::before {
  content: "";
  background-color: #9a05001a;
  width: 622px;
  height: 622px;
  position: absolute;
  top: -40%;
  left: -20%;
  border-radius: 50%;
}
.hero::after {
  content: "";
  background-color: #9a05001a;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -15%;
  left: -5%;
  border-radius: 50%;
}

.upcoming-project {
  display: flex;
  flex-direction: column;
  margin-top: 80px;

  h2 {
    font: 24px;
    text-align: center;
  }
}

.project-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;

  justify-content: space-evenly;
  gap: 30px;
  margin-top: 30px;
}

.project-wrapper img {
  width: 236px;
  height: 383px;
  border-radius: 8px;
}

/* .aboutMe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
} */

/* .about-heading {
  background-color: #9a05001a;
  width: full;
  height: 99px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 200px;

  h2 {
    font-size: 24px;
    font-weight: 700;
    color: #9a0500;
    text-align: center;
    align-items: center;
  }
} */

/* .content {
  display: flex;
  flex-direction: row;
  gap: 24px;
} */

/* .content img {
  width: 429px;
  height: 563px;
  margin-top: -190px;
  border-radius: 24px;
  border: 6px solid white;
} */

/* .about-right p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 10px;
  text-align: justify;
} */

/* .about-right button {
  font-size: 18px;
  font-weight: 500;
  margin-top: 11px;
  border-radius: 67px;
  width: 183px;
  height: 40px;
  color: #ffffff;
  background: #9a0500;
  border: none;
} */

/* .about-right button:hover {
  cursor: pointer;
} */

/* about new */
.about-container {
  width: 100vw;
  background-color: #9a05001a;
  height: 99px;
  margin-top: 200px;
  display: flex;
}

.about-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.content-left {
  width: 50%;
  display: flex;
  justify-content: end;

  img {
    width: 429px;
    height: 563px;
    margin-top: -190px;
    border-radius: 24px;
    border: 6px solid white;
    object-fit: cover;
  }
}

.content-right {
  width: 50%;
}

.about-heading {
  font-size: 24px;
  font-weight: 700;
  color: #9a0500;
  padding: 25px 25px;
  margin-top: -84px;
}

.about-para {
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  line-height: 28px;
  padding: 18px 25px;
}

.about-button {
  padding: 18px 25px;
}

.about-button button {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #9a0500;
  border-radius: 67px;
  padding: 10px 25px;
  outline: none;
  border: none;
}

/* react js */
/* .instagram {
  margin-top: 60px;

  h2 {
    font-size: 24px;
    font-weight: 600;
  }
} */

/* .row-container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
  display: none;
}

.movie-card {
  width: 200px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
}

.movie-card img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.chevron {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.chevron:hover {
  opacity: 1;
}

.row-container:hover .chevron {
  display: block;
}

.chevron-left {
  left: 10px;
}

.chevron-right {
  right: 10px;
} */

.profile-container {
  display: flex;
  flex-direction: column;
}

.profile {
  width: full;
  height: 238px;
  background: #9a05001a;
  margin-top: 60px;
  position: relative;
}

.profile-div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  height: 180px;
  position: absolute;
  background: #9a0500;
  bottom: 0;
  right: 10%;
  z-index: 2;
  gap: 120px;

  h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    color: #fffdfd;
  }

  img {
    width: 192px;
    height: 218px;
    margin-top: -37px;
    margin-left: 35px;
  }
}

.profile-details {
  display: flex;
  flex-direction: column;
  margin-top: 60px;

  h2 {
    font-size: 24px;
    font-weight: 600;
  }

  p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    line-height: 28px;
    margin-top: 20px;
    color: #1f1f1f;
  }
}

.gallery-container {
  display: flex;
  flex-direction: column;
}

.gallery {
  width: full;
  height: 238px;
  background: #9a05001a;
  margin-top: 60px;
  position: relative;
}

.gallery-div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  height: 180px;
  position: absolute;
  background: #9a0500;
  bottom: 0;
  right: 10%;
  z-index: 2;
  gap: 120px;

  h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    color: #fffdfd;
  }

  img {
    width: 192px;
    height: 218px;
    margin-top: -37px;
    margin-left: 35px;
  }
}

.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
  margin-top: 100px;
}

.image-box {
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.contact {
  display: flex;
  flex-direction: row;
  margin-top: 60px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 546px;
  align-items: center;
  background: #9a0500;
  border-radius: 16px;

  h2 {
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-top: 120px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  color: white;
  margin-top: 20px;
}

.form input {
  width: 372px;
  height: 25px;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 15px;
}

.form input::placeholder {
  color: white;
}

.form-button {
  margin-top: 20px;
  background: transparent;
  outline: none;
  border: 1px solid white;
  border-radius: 20px;
  width: 213px;
  color: white;
  margin-top: 40px;
  height: 36px;
}

.form-button:hover {
  cursor: pointer;
}

.right {
  background: white;
  width: 50%;
  height: 546px;
  margin-left: 20px;
  border-radius: 16px;
}

.right-top {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contact-us {
  display: flex;
  flex-direction: row;
  background: #9a0500;
  align-items: center;
  gap: 20px;
  width: 353px;
  padding: 14px;
  border-radius: 14px;
}

.contact-icons {
  background: white;
  height: 30px;
  width: 30px;
  padding: 7px;
  border-radius: 50%;
  display: flex;
  align-items: center;
}

.contact-right {
  font-size: 20px;
  font-weight: 500;
  color: white;

  h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: start;
  }

  p {
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-align: start;
  }
  span {
    font-size: 12px;
  }
}

.mail {
  display: flex;
  flex-direction: row;
  background: #9a0500;
  align-items: center;
  gap: 20px;
  width: 353px;
  padding: 14px;
  border-radius: 14px;
}

.contact-bottom-left {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.office {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: #9a0500;
  width: 353px;
  padding: 18px;
  border-radius: 14px;
  margin-top: 25px;
}

.office-des {
  h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: start;
    color: white;
  }

  p {
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-align: start;
  }
  span {
    font-size: 12px;
    color: white;
  }
}

.website {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: #9a0500;
  width: 353px;
  padding: 18px;
  border-radius: 14px;
  margin-top: 25px;
}

.website-des {
  h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: start;
    color: white;
  }

  span {
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-align: start;
  }
}

/* .grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 10px;
  height: 290px;
  border-radius: 20px;
  margin-top: 20px;
}
.grid-item1{
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #E6CFCF;
  border-radius: 20px;
  height: 100%;
}

.grid-item {
  background-color: #E6CFCF;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 2px solid #9A0500;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  transition: transform 0.3s ease;
}
.grid-item img:hover {
  transform: scale(1.3);
} */

.flex-box {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.insta-text {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.instaIcon {
  font-size: 28px;
  font-weight: 400;
}

.insta-text p {
  margin-left: 6px;
  font-size: 24px;
  font-weight: 800;
}

/* .insta-post{
  width: 100%;
  height: 265px;
  margin-top: 6px;
  border: 2px solid #9a0500;
} */
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 10px;
  row-gap: 5px;
  height: 326px;
  /* border: 2px solid #9a0500; */
  border-radius: 20px;
  margin-top: 10px;
}

.grid-item {
  background-color: #e6cfcf;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  /* border: 2px solid #9a0500; */
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.grid-item img:hover {
  transform: scale(1.3);
}

footer {
  margin-top: 60px;
  background-color: #1f1f1f;
}

.footer_first {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 20px;
  margin-right: 15px;
}

.footer_logo img {
  filter: brightness(0) saturate(100%) invert(1);
}

.footerFirst_inside {
  display: flex;
  gap: 60px;

  a {
    all: unset;
    color: white;

    font-weight: 700;

    font-family: "Montserrat", serif;
  }
}

.footerLink:hover {
  cursor: pointer;
}

.line {
  border: 1px solid #fffdfd;
  width: 100%;
}

.footer_second {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.footer_secondInside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_icon {
  display: flex;
  gap: 35px;
}

.icons {
  font-size: 40px;
  color: #fefcfc;
}

.copyright {
  margin-top: 35px;
}

.footer_copyright {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.footer_secondOutside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Subscribe {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: end;
}

.footer_input {
  display: flex;
  align-items: center;
}

.footerInput {
  border-radius: 30px 0 0 30px;
  height: 50px;
  width: 300px;
  padding: 12px;
  padding-left: 40px;
  outline: none;
  border: none;
}

.circle_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9a0500;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-left: -40px;
}

.email_icons {
  color: #d9d9d9;
  font-size: 40px;
}
