@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Red+Rose&display=swap');

:root {
  --primaryColor: #fff;
  --navColor1: #21292c;
  --navColor2: #aa3e39;
  --navColor3: #aa6e39;
  --navColor4: #236267;
  --navColor5: #2c8437;
  --navColor6: #3961aa;
  --navColor7: #a3a875;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  font-family: Montserrat, sans-serif ;

}

h1 {
  text-align: center ;
}

/* --- Navigation Menu ------------------------------ */
.overlay {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(1, 10, 6, .51);
  transform: translateX(-100vw);
}
.overlay-slide-right {
  transition: all 0.4s ease-in-out;
  transform: translateX(0);
}
.overlay-slide-left {
  transition: all 0.8s ease-in-out;
  transform: translateX(-100vw);
}

/* Nav Elements */

nav,
nav ul {
height: 100vh;
margin: 0;
padding: 0;
}
nav ul {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  list-style: none;
}

nav ul li {
  height: 14.28%;
  overflow: hidden;
}
nav li a {
  position: relative;
  top: 45%;
   color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
}

nav li a:hover {
  transform: scaleX(1.2);
}

nav li a::before {
  content: "";
  width: 25vw;
  height: 3px;
  background-color: white;
  position: absolute;
  top: 47.5%;
  left: 0;
  opacity: 0;
}

nav li a:hover::before {
  opacity: 1;
}

nav li:nth-of-type(1) {
  background-color: var(--navColor1);
}
nav li:nth-of-type(2) {
  background-color: var(--navColor2);
}
nav li:nth-of-type(3) {
  background-color: var(--navColor3);
}
nav li:nth-of-type(4) {
  background-color: var(--navColor4);
}
nav li:nth-of-type(5) {
  background-color: var(--navColor5);
}
nav li:nth-of-type(6) {
  background-color: var(--navColor6);
}
nav li:nth-of-type(7) {
  background-color: var(--navColor7);
}

/* slide in animation with delay for each nav item */
.slide-in-1 {
    animation: slide-in 0.4s linear 0.2s both;
}
.slide-in-2 {
    animation: slide-in 0.4s linear 0.4s both;
}
.slide-in-3 {
    animation: slide-in 0.4s linear 0.6s both;
}
.slide-in-4 {
    animation: slide-in 0.4s linear 0.8s both;
}
.slide-in-5 {
    animation: slide-in 0.4s linear 1s both;
}  

.slide-in-6 {
  animation: slide-in 0.4s linear 1.2s both;
} 
.slide-in-7 {
  animation: slide-in 0.4s linear 1.4s both;
} 

.footer {
  display: inline-flex;
  margin: 10px;
}
@keyframes slide-in {
  from {
    transform: translateX(-100%) ;
  }
  to {
    transform: translateX(0);
  }
}

/* slide out animation with delay for each nav item */
.slide-out-1 {
  animation: slide-out 0.3s linear 0.7s both;
}
.slide-out-2 {
  animation: slide-out 0.3s linear 0.6s both;
}
.slide-out-3 {
  animation: slide-out 0.3s linear 0.5s both;
}
.slide-out-4 {
  animation: slide-out 0.3s linear 0.4s both;
}
.slide-out-5 {
  animation: slide-out 0.3s linear .3s both;
}  
.slide-out-6 {
  animation: slide-out 0.3s linear  .2s both;
}
.slide-out-7 {
  animation: slide-out 0.3s linear  .1s both;
}


@keyframes slide-out {
from {
  transform: translateX(0) ;
}
to {
  transform: translateX(-100%);
}
}
/* --- Menu Bars ------------------------------------ */

.menu-bars {
  position: fixed;
  top: 1rem;
  right: 2rem;
  z-index: 10;
  display: inline;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 2px;
  background-color: #fff;
  margin: 8px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  transform: rotate(-45deg) translate(-7px, 8px);
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  transform: rotate(45deg) translate(-6px, -8px);
}

/* image Container */
.image-container {
  height: 90vh;
 

}
/* Images */

img {
  height: 250px;
  width: 250px;

}

/* --- Sections ------------------------------------ */

section {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primaryColor);
}

section#home {
  background-image: url("https://images.unsplash.com/photo-1581453904507-626ddb717f14?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2089&q=80");

  /* background-image: url("https://images.unsplash.com/photo-1558593508-af2f49cf47c6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60"); */
  background-size: cover;
  background-position: center center;

}

section#home a {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  left: 1.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  padding-bottom: 5px;
  color: var(--primaryColor);
  border-bottom: 1px solid var(--primaryColor);
}

section#dress {
  background-color: var(--navColor2);
}

section#skills {
  background-color: var(--navColor3);
}

section#cake {
  background-color: var(--navColor4);
}

section#gele {
  background-color: var(--navColor5);
}
section#baskets {
  background-color: var(--navColor6);
}

section#contact {
  background-color: var(--navColor7);
}

/* Media Query: Large Smartphone (Vertical) */
@media (max-width: 600px) {
  section#home a {
    top: 1rem;
    left: 1rem;
  }

  .menu-bars {
    top: 0.5rem;
    right: 1rem;
  }
  img {
    height: 150px;
    width: 150px;
  
  }
  .footer {
    display: flex;
    margin: 10px;
    font-size: small;
  }
}
