@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&family=Jost:wght@100;200;300;400;500&display=swap');
@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800);

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'poppins';
}

body {
  overflow-x: hidden;
  /* background-color: #f7efef; */
  /* background-color: #f3f3f3; */
  background: linear-gradient(to right, #ffffff, #eae7ec, #e7dfeb);
}
header {
  background: linear-gradient(to right, #ffffff, #eae7ec, #e7dfeb);
  /* backdrop-filter: blur(50px); */
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000; /*always front of the page no overlay*/
  display: flex; /* each div next to eachother*/
  align-items: center;
  justify-content: space-between; /*even space between each div*/
  padding: 20px 10%; /* padding up and left */
}

.logo img {
  max-width: 120px;
  height: 40px;
}
.nav-menu {
  display: flex;
}

.nav-menu a {
  color: #070707;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 400;
  transition: all 0.42s ease; /*self */
}
.nav-menu a:hover {
  color: #ee1c47;
}

#logoname {
  font-size: 16px;
  font-weight: bold;
}

.icons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) {
  header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 768px) {
  .icons {
    display: block;
  }
  .icons #close-icon {
    display: none;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 17.7rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(50%);
  }
  .socials__header {
    position: absolute;
    left: 40%;
  }

  #logoname {
    display: none;
  }
  .nav-menu,
  .nav-menu a {
    display: block;
    font-size: 1.1rem;
    /* margin-top: 1.5rem; */
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
  }
  .nav-menu {
    display: none;
  }
  .nav-menu.open {
    display: block;
  }
}
.section__gallery__header {
  transition: transform 1s, opacity 1s;
}
.gallery__header {
  width: 100%;
  margin: 80px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1px;
}
.gallery__header img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  cursor: pointer;
  -webkit-filter: grayscale(100%);
  transition: transform 0.5s, border-radius 0.5s, -webkit-filter 1s;
}
.gallery__header img:hover {
  -webkit-filter: grayscale(0%);
}

.section {
  padding: 2rem 0rem;
  border-bottom: 1px solid #f0c2c2;

  transition: transform 1s, opacity 1s;
}
.section__header {
  margin-bottom: 20px;
  text-align: center;
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 300;
}

/* socials */
.socials__header {
  font-size: 30px;

  border-radius: 20px;
}
.socials__header a i {
  color: black;
  opacity: 0.9;
  padding: 0 10px;
}
.text {
  font-family: 'Montserrat', sans-serif;
  padding-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
  color: #111;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 50px;
}
/* footer */
footer {
  background-color: #111;
}

.footer__container {
  width: 100%;
  padding: 30px 30px 20px;
}
.footer__row {
  color: white;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__col {
  margin-left: 10px;
  margin-top: 20px;
  align-items: center;
  flex-basis: 20%;
}
.footer__header {
  font-size: 1.5rem;
  text-decoration: underline;
  margin-bottom: 4px;
}
.footer__row ul li a {
  color: #ecd6d6;
}

@media (max-width: 870px) {
  .footer__col {
    margin-left: 10px;
    margin-top: 20px;
    align-items: center;
    flex-basis: 100%;
    text-align: center;
  }
}
.section__gallery__header {
  transition: transform 1s, opacity 1s;
}
.gallery__header {
  width: 100%;
  margin: 80px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1px;
}
.gallery__header img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  cursor: pointer;
  -webkit-filter: grayscale(100%);
  transition: transform 0.5s, border-radius 0.5s, -webkit-filter 1s;
}
.gallery__header img:hover {
  -webkit-filter: grayscale(0%);
}

.section {
  padding: 2rem 0rem;
  border-bottom: 1px solid #f0c2c2;

  transition: transform 1s, opacity 1s;
}
.section__header {
  margin-bottom: 20px;
  text-align: center;
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 300;
}

/* gallery */
.img-gallery {
  width: 90%;
  margin: 160px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 15px;
}

.img-gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  cursor: pointer;
  /* -webkit-filter: grayscale(100%); */
  transition: transform 0.5s, border-radius 0.5s;
}
.img-gallery img:hover {
  border-radius: 50px;
  /* border: solid 1px black; */
  /* -webkit-filter: grayscale(0%); */
}

/* socials */
.socials__header {
  font-size: 30px;

  border-radius: 20px;
}
.socials__header a i {
  color: black;
  opacity: 0.9;
  padding: 0 10px;
}

.instagram_reels {
  padding: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1124px) {
  .instagram_reels {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .img-gallery {
    width: 90%;
    margin: 160px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
  }
  .gallery__header img {
    -webkit-filter: grayscale(0%);
  }
}
@media (max-width: 768px) {
  .text {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.footerB {
  background-color: #dac4c477;
  text-align: center;
}
.footerB p {
  color: white;
}
.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
