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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #111;
  overflow-x: hidden;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5em;
  cursor: pointer;
}

/* Toggle Menu Icon */
.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url('https://i.ibb.co/HrfVRcx/menu.png') no-repeat center;
  background-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

.toggle.active {
  background: url('https://i.ibb.co/rt3HybH/close.png') no-repeat center;
  background-size: 25px;
}

/* Showcase Section */
.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}

.showcase.active {
  right: 300px;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03a9f4;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Text Content */
.text {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.text h3 {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text p {
  font-size: 1.1em;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}

.text a {
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin: 5px 10px 0 0;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}

.text a:hover {
  letter-spacing: 6px;
  background-color: #03a9f4;
  color: #fff;
  transform: scale(1.05);
}

/* Social Icons */
.social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  margin: 0 10px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}

.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}

/* Menu Sidebar */
.menu {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: right 0.5s ease;
}

.menu.active {
  right: 0;
}

.menu ul {
  position: relative;
}

.menu ul li {
  list-style: none;
  margin: 20px 0;
}

.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
  transition: 0.3s;
}

.menu ul li a:hover {
  color: #03a9f4;
}

/* Responsive */
@media (max-width: 991px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }

  .text h3 {
    font-size: 2.5em;
  }

  .text p {
    font-size: 1em;
  }

  .text a {
    font-size: 0.9em;
    padding: 8px 20px;
  }

  .toggle {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }

  .menu {
    width: 100%;
  }
}
