/*------------------------------------------------------------------
Project:  WrkScope Coming Soon
Version:  1.1 (optimized for mobile + desktop scaling)
Based on:  Coming Soon by Pawel Zuchowski (CC BY 4.0)
Modified by: Wrkscope
-------------------------------------------------------------------*/

/* NOTE: layout breakpoint aligned to 768px to match Bootstrap's
   col-md-5 / col-md-7 stacking point. Using a different breakpoint
   here (e.g. 576px) causes a broken zone between 576-767px where
   columns are stacked but styled as side-by-side. */

body,
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #1E2A38;
  overflow-x: hidden;
}

.container,
.row {
  margin: 0;
  padding: 0;
  width: 100vw;
}

p:not(.slogan),
.left,
.icon,
.icon-list,
h1,
.right,
.mainInfo {
  width: auto;
}

.container .row .left-wrap {
  padding-right: 0;
  padding-left: 0;
}

.container .row .left-wrap .left {
  background: linear-gradient(98deg, #F2A93B 0%, #1E2A38 67%);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .container .row .left-wrap .left {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    height: 50vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}

.container .row .left-wrap .left p {
  font-family: "Muli", sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  margin-right: 2em;
  font-weight: bold;
  color: #FAF9F6;
}

@media screen and (max-width: 767px) {
  .container .row .left-wrap .left p {
    margin: 0.5em 0;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
  }
}

.container .row .left-wrap .left p .small {
  vertical-align: text-top;
  font-size: 0.5em;
}

/* ---------- Right panel ---------- */

.container .right {
  background-color: #1E2A38;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .container .right {
    height: 50vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.container .right .mainInfo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 700px;
}

@media screen and (max-width: 767px) {
  .container .right .mainInfo {
    text-align: center;
  }
}

.container .right .mainInfo .logo {
  width: clamp(160px, 22vw, 300px);
  height: auto;
  margin-left: 0.2em;
  margin-bottom: 1em;
    
}

@media screen and (max-width: 767px) {
  .container .right .mainInfo .logo {
    margin-left: 0;
    align-self: center;
  }
}

.container .right .mainInfo h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-left: 0.5em;
  color: #FAF9F6;
}

@media screen and (max-width: 767px) {
  .container .right .mainInfo h1 {
    margin-left: 0;
  }
}

.container .right .mainInfo h2 {
  margin-left: 0.7em;
  margin-top: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  text-align: left;
  color: #FAF9F6;
}

@media screen and (max-width: 767px) {
  .container .right .mainInfo h2 {
    margin-left: 0;
    text-align: center;
  }
}

.container .right .mainInfo .slogan {
  width: 50vw;
  max-width: 600px;
  margin-top: 1.5em;
  margin-left: 1em;
  color: #D9D4CC;
}

@media screen and (max-width: 767px) {
  .container .right .mainInfo .slogan {
    width: auto;
    max-width: 100%;
    margin-left: 0;
  }
}

.container .right .mainInfo .interest-link {
  display: inline-block;
  margin-top: 1em;
  margin-left: 1em;
  padding: 10px 26px;
  border: 1px solid #F2A93B;
  border-radius: 25px;
  color: #1E2A38;
  background-color: #F2A93B;
  font-size: 0.98em;
  text-align: center;
  text-decoration: none;
  font-family: "Lato", sans-serif;
}

.container .right .mainInfo .interest-link:hover {
  cursor: pointer;
  opacity: 0.85;
}

@media screen and (max-width: 767px) {
  .container .right .mainInfo .interest-link {
    margin-left: 0;
  }
}

.container .right .icon-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 1em 0 0;
  padding-left: 1em;
    align-self: center;
}

@media screen and (max-width: 767px) {
  .container .right .icon-list {
    justify-content: center;
    padding-left: 0;
  }
}

.container .right .icon-list .icon {
  margin-right: 1em;
  font-size: 1.5em;
}

.container .right .icon-list .icon a {
  color: #D9D4CC;
  text-decoration: none;
}

.container .right .icon-list .icon a:hover {
  color: #F2A93B;
}

/* ---------- Shared layout ---------- */

.right,
.mainInfo,
.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

h1,
.slogan {
  font-family: "Lato", sans-serif;
}

.instagram::before {
  font-family: "Font Awesome 6 Brands";
  content: "\f16d";
}

/* ---------- Footer ---------- */

footer {
  margin: 0;
  padding: 0;
}

.license-footer {
  text-align: center;
  padding: 0.75em 1em;
  font-size: 0.7rem;
  color: #D9D4CC;
  background-color: #1E2A38;
}

.license-footer p {
  margin: 0;
}

.license-footer a {
  color: #F2A93B;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .license-footer {
    text-align: center;
    font-size: 0.65rem;
    padding: 0.75em;
  }
}
