* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*Header Start*/

.nav_links li a {
    font-family: "Inter", sans-serif;
    font-size: 25px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

#myHeader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 2px solid black;
  background-color: #f7f5ed;
}

.left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  width: 1100px;
  margin: 0;
}

.right {
  border-left: 2px solid black;
  margin-left: auto;
  padding: 0;
}

.right img {
  margin: 40px;
  height: 50px;
}

.logo {
  cursor: pointer;
  margin-right: 30px;
  margin-left: 30px;
}

.nav_links {
  list-style: none;
}

.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav_links li a {
  transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
  color: #e03345;
}

.nav_links li a img {
  margin-bottom: -10px;
}

.hamburger, #ham-nav {
  display: none;
}

.bar {
  display: block;
  width: 30px;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
  margin: 10px 0;
}

#link-menu-container {
  background-image: url(../assets/SVG/bgMenu.svg);
  width: 100%;
  top: -100%;
  transition: 0.3s;
  position: fixed;
  background-color: #f7f5ed;
  z-index: 100;
}

/*Sticky Header Styles*/

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.main-sticky {
  padding-top: 151px;
}

/*Header End*/

/*Main Start*/

#main-grid {
  display: grid;
  grid-template-columns: 223px auto;
}

.decorative-side {
  border-right: 2px solid black;
  background-image: url(../assets/SVG/dsgnr-bg.svg);
}

.main-content {
  display: grid;
  grid-template-rows: auto auto auto;
}

#welcome-heading, #show-info-heading {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 96px;
    color: #3D6BAB;
}

.welcometext p {
    color: #e03345;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 600;
    padding-top: 5px;
}

.showinfotext p {
    color: #e03345;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 600;
}

.hero {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/*Show Links Styles*/

div.show-links {
  font-family: "Inter", sans-serif;
  background-color: #BFCF5C;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 1.4em;
  border-bottom: 2px solid black;
}

span.passcode {
  background-color: white;
  padding: 0 5px;
  line-height: 2em;
}

.welcome {
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}

#welcome-heading {
  margin-left: 10px;
}

.welcometext {
    position: relative;
    width: 750px;
    height: 500px;
    padding: 15px;
    box-shadow: -50px 50px black;
    background-color: rgb(247, 245, 237);
    border: 1px solid black;
    border-radius: 0px 50px 0px 50px;
    position: relative;
}
.welcometext::before {
  position: absolute;
  top: -1px;
  left: -51px;
  z-index: -1;
  content: '';
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-bottom: 50px solid black;
}
.welcometext::after {
  position: absolute;
  transform: rotate(180deg);
  top: calc(100% + 1px);
  left: calc(100% - 49px);
  z-index: -1;
  content: '';
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-bottom: 50px solid black;
}

.showinfotext {
    position: relative;
    width: 800px;
    height: auto;
    padding: 10px;
    box-shadow: -50px 50px;
    border: 1px solid black;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
.showinfotext::before {
  position: absolute;
  top: -1px;
  left: -51px;
  z-index: -1;
  content: '';
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-bottom: 50px solid black;
}
.showinfotext::after {
  position: absolute;
  transform: rotate(180deg);
  top: calc(100% + 1px);
  left: calc(100% - 49px);
  z-index: -1;
  content: '';
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-bottom: 50px solid black;
}

#showinfo {
  display: flex;
  flex-direction: column;
  margin-left: 350px;
}

#show-info-heading {
  margin-left: 250px;
}

/* Designer Gallery Starts */

#designer-layout {
    border-top: solid 2px black;
    padding: 20px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../assets/SVG/dsgnr-bg.svg");
    background-repeat: repeat;
    background-clip: padding-box;
}

#designers-heading {
    background-color: transparent;
    text-align: center;
    font-family: "Inter", semibold;
    font-style: italic;
    font-size: 64px;
    color: #D51C34;
}

#designer-gallery {
    background-color: transparent;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.designer-card {
    background-color: transparent;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.designer-card h1 {
    background-color: transparent;
    margin-top: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 23px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .3s;
    text-align: center;
}
.designer-card h1:hover {
  color: #d51c34;
}
.designer-card h2 {
   background-color: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  text-transform: lowercase;
}
.designer-thumbnail {
  background-color: #3d6bab;
  position: relative;
  border-radius: 0px 50px 0px 50px;
  width: 205px;
  height: 205px;
  box-shadow: -15px 15px #3d6bab;
}
.designer-thumbnail img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: filter 0.3s;
  border-radius: 0px 50px 0px 50px;
}
.designer-thumbnail img:hover {
  filter: grayscale(0);
}
.designer-thumbnail::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -15px;
  width: 21px;
  height: 290px;
  background-color: #3d6bab;
  transform: rotate(-45deg);
  transform-origin: top left;
}
/* Designer Gallery Ends */

.transitionIcons {
  margin: 88px auto;
}

#hero-image {
  height: 550px;
  margin-top: 97px;
}

/*Main End*/

/* Footer Start*/

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}

.portfolio_show p {
  font-family: "Inter", sans-serif;
  text-align: center;
  margin-bottom: 10px;
  word-spacing: 10px;
  font-size: 26px;
  font-weight: 600;
}

.portfolioShows_links li {
  list-style: none;
  display: inline-block;
  padding: 0px 25px;
}

.portfolioShows_links li a {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  color: #e03345;
  text-decoration: none;
}

/*Footer End*/

/* Mobile Layout */

@media only screen and (max-width: 430px) {
  #main-grid, .main-content, #welcome-heading, #showinfo, #show-info-heading, #designer-layout, #designer-gallery, .transitionIcons, #hero-image, footer, .welcometext, .showinfotext, .welcome {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .right, .decorative-side, .nav_links, .left {
    display: none;
  }
  #ham-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    align-items: center;
    z-index: 100;
  }
  #ham-nav .logo{
    margin: 0;
  }
  #hero-image {
    width: 370px;
    height: 251px;
    margin-top: 75px;
  }
  .transitionIcons {
    width: 95px;
    height: 95px;
    margin: 80px 0;
  }
  #welcome-heading, #show-info-heading {
    font-size: 55px;
  }
  .welcometext {
    width: 377px;
    height: auto;
    padding: 10px;
    box-shadow: -25px 25px;
    border: 1px solid black;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .showinfotext {
    width: 377px;
    height: auto;
    padding: 10px;
    box-shadow: -25px 25px;
    border: 1px solid black;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .welcometext p {
    font-size: 20px;
  }
  .showinfotext p {
    font-size: 20px;
  }
  #designer-layout {
    border-top: 0;
    background-image: none;
  }

  #link-menu-container.active {
    top: 106px;
  }
  #linx {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 85px;
  }
  #linx a {
    font-family: "Inter", sans-serif;
    font-size: 60px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    margin: 15px 0;
  }

  .hamburger {
    margin-right: 10px;
    display: block;
    cursor: pointer;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 18px;
  }
  
  footer .logo {
    height: 30px;
  }
  .portfolio_show p {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    word-spacing: normal;
  }

  .portfolioShows_links {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 20px;
  }
  
  .portfolioShows_links li {
    padding: 0;
    text-align: center;
  }
  
  .portfolioShows_links li a {
    font-size: 13px;
    font-style: italic;
  }

}