@import "cssreset.css";

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,600&family=Roboto&display=swap");

@import "landing-page/top-section.css";

@import "landing-page/services.css";

@import "landing-page/portfolio-section.css";

@import "landing-page/experience-section.css";

@import "portfolio/portfolio-projects.css";

@import "footer-section.css";

body {
  /* background: #eeeeee; */
}

.container {
  max-width: 1150px;
  margin: 0 auto;
}

header {
  display: flex;
  padding: 20px;
  justify-content: space-between;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  display: flex;
}

header .logo .name {
  background: black;
  padding: 15px 20px;
  text-decoration: none;
  color: white;
}

header .header-menu {
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .header-menu a {
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}

header .header-menu a:hover {
  font-weight: 700;
  text-decoration: none;
  color: black;
  color: rgba(255, 53, 53, 1);
}

header .menu-btn {
  font-weight: 700;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 2rem;
  display: none;
  cursor: pointer;
}

.mobile-menu {
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 40px 0;
  position: absolute;
  height: 100vh;
  top: 0;
  height: 100vh;
  width: 50%;
  z-index: 10;
  transform: translate3d(-100%, 0, 0);
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 2px 0px 78px -15px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 0px 78px -15px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 0px 78px -15px rgba(0, 0, 0, 0.75);
}

.mobile-menu.active {
  transform: translate3d(0, 0, 0);
}

.mobile-menu a {
  padding: 15px;
  text-decoration: none;
  color: black;
}

.mobile-menu a:hover {
  text-decoration: none;
  color: white;
  background: rgba(255, 53, 53, 1);
}

/* MEDIA QUERIES --- Tablet Views */

@media only screen and (max-width: 960px) {
  .container {
    width: 100%;
  }
}

/*  Phones  */

@media only screen and (max-width: 767px) {
  header .header-menu {
    display: none;
  }
  header .menu-btn {
    display: flex;
  }
  header .logo {
    font-size: 1.5rem;
  }
  .mobile-menu {
    display: flex;
  }
}
