* {
    margin: 0;
    padding: 0;
}
  
  html, body {
    height: 100%;
    max-width: 100%;
    scroll-behavior: smooth ease-in-out;
}
  
a {
    text-decoration: none;
    cursor: var(--cursor-pointer), auto;
}
  
body {
    overflow-x: hidden;
    font-family: 'Urbanist';
    cursor: var(--cursor-default);
    background-color: var(--main-bg-color);
}
  
body a:hover {
    text-decoration: none;
}
  
::-webkit-scrollbar {
    overflow-x: hidden;
    display: none;
    visibility: hidden;
}

.animate {
  opacity: 0;
}


/* animation css */
@keyframes fade-down {
  from {
      transform: translateY(-75px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
      animation-fill-mode: forwards;
  }
}

@keyframes fade-up {
  from {
      transform: translateY(35px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes fade-right {
  from {
      transform: translateX(-75px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes fade-left {
  from {
      transform: translateX(75px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }

}

@keyframes zoom-in {
  from {
      transform: scale(0.5);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes fade-up-right {
  from {
      transform: translate(-60px, 60px);
      opacity: 0;
  }
  to {
      transform: translate(0, 0);
      opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}


/*----------------------------------------------------------*/
/* PRE-SETS */
/*----------------------------------------------------------*/
:root {
  /* colors */
  --main-bg-color: #061326;
  --main-accent-color: #717FFD;
  --alt-accent-color: #1C243F;
  --main-text-color: #FAFAFA;

  /* fonts */
  --main-theme-font: 'Bagel Fat One';
  --main-text-font: 'Urbanist';

  /* cursor */
  --cursor-default: default;
  --cursor-pointer: pointer;

  /* Swiper theme */
  --swiper-theme-color: #717FFD;
  --swiper-pagination-bullet-inactive-color: #FAFAFA;
}


/* BOOTSTRAP PRESETS */
body .col-sm {
  padding: 0;
  margin: 0;
}

body .col {
  padding: 0;
  margin: 0;
}

body .row {
  padding: 0;
  margin: 0;
}

.loading {
  height: 100vh;
  width: 100vw;
  background-color: var(--alt-accent-color);
  z-index: 99;
  position: fixed;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loading.hidden {
  -webkit-animation: fadeOut 1s;
  animation: fadeOut 1s;
  animation-delay: 2s;
  transition-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  0% {
    margin-left: 0;
  }
  100% {
    margin-top: 1%;
    opacity: 0;
    z-index: 1;
  }
}

.logo-container {
  position: absolute;
  transform: scale(0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-container img {
  position: absolute;
  margin: 0;
  padding: 0;
}


/*--- LOADING ANIMATION ---*/
.logo-container #loading_img {
  -webkit-animation: beat 2s infinite ease-in-out;
  animation: beat 2s infinite ease-in-out;
}

@keyframes beat {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}


/*------------------------------------------------*/
/* MOUSE-FOLLOW DOT */
/*------------------------------------------------*/
.dot {
  width: 20px;
  height: 20px;
  border: solid 1px var(--alt-accent-color);
  background-color: var(--main-accent-color);
  border-radius: 50%;
  position: fixed;
  top: var(--y, 0px);
  left: var(--x, 0px);
  pointer-events: none; /* This ensures the dot doesn't interfere with other mouse events */
  transform: translate(-50%, -50%); /* Centers the dot on the mouse position */
  z-index: 99;
  transition: top 0.2s ease, left 0.2s ease;
}


/*------------------------------------------------*/
/* NAVIGATION STYLE */
/*------------------------------------------------*/
nav {
  position: fixed;
  width: 100%;
  z-index: 98;
  height: 0vh;
  /*background-color: var(--main-bg-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);*/
  border-radius: 0 0 8px 8px;
  transition: .2s;
}

#nav.active {
  height: 10.9vh;
}

nav .nav-logo {
  position: fixed;
  top: 3%;
  left: 3%;
}

nav .nav-logo img {
  height: 32px;
  margin-top: 5px;
  cursor: var(--cursor-pointer);
}

nav #nav_logo_main {
  position: fixed;
  z-index: 98;
  transition: .3s;
}

nav #nav_logo_white {
  position: fixed;
  z-index: 99;
  left: 3%;
}

nav #nav_logo_menu {
  opacity: 0;
  z-index: 99;
  position: fixed;
  transition: .3s;
  transition-delay: 0.4s;
}

nav #nav_logo_menu #nav_logo_white {
  transition: 0.3s;
}

nav .menu-trigger {
  position: fixed;
  right: 3%;
  top: 3.5%;
  cursor: var(--cursor-pointer);
  transition: 0.24s;
  padding: 5px;
}

nav .menu-trigger:hover {
  scale: 1.07;
  opacity: .6;
}

nav .menu-trigger #ham {
  opacity: 1;
  transition: .3s;
}

nav .menu-trigger span {
  display: block;
  height: 4px;
  margin-bottom: 5px;
  background-color: var(--main-text-color);
  cursor: var(--cursor-pointer);
}

nav .menu-trigger #top-bun {
  width: 25px;
  border-radius: 4px 4px 0 0;
}

nav .menu-trigger #meat-patty {
  width: 35px;
  margin-left: -5.25px;
  border-radius: 2px;
}

nav .menu-trigger #bottom-bun {
  width: 25px;
  border-radius: 0 0 4px 4px;
}

/* OVERLAY */
nav .nav-overlay {
  position: relative;
  width: 100%;
  z-index: 99;
  background-color: var(--alt-accent-color);
  opacity: 1;
  height: 0;
  transition: all .8s;
  transition-timing-function: cubic-bezier(.36,.24,.6,.98) ease-in-out;
  overflow-x: none;
}

nav .nav-overlay #closer {
  position: absolute;
  right: 3.4%;
  top: 3.4%;
  z-index: 99;
  opacity: 0;
  cursor: var(--cursor-pointer);
  transition: .8s ease-out;
  transition-timing-function: cubic-bezier(.15,.12,.07,.92);
  transition-delay: 0.2s;
}

nav .nav-overlay #closer img {
  cursor: var(--cursor-pointer);
  transition: 0.3s ease-out;
}

nav .nav-overlay #closer img:hover {
  transform: scale(1.1);
  opacity: 0.6;
}

nav .nav-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -10vh;
  opacity: 0;
  overflow: hidden;
  transition: all 1.2s;
  transition-timing-function: cubic-bezier(.36,.24,.6,.98) ease-in-out;
  transition-delay: opacity 0.8s;
}

nav .nav-content .col-left ul {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

nav .nav-content .col-left li {
  display: block;
  transition: .3s;
}

nav .nav-content .col-left li:hover {
  padding-left: 2%;
}

nav .nav-content .col-left a {
  font-family: var(--main-theme-font), sans-serif;
  font-weight: 500;
  color: var(--main-text-color);
  font-size: 5em;
  -webkit-text-stroke: 2px var(--main-text-color);
  cursor: var(--cursor-pointer);
}

nav .nav-content .col-left .mobile-contact {
  margin-top: 10%;
  display: none;
}

nav .nav-content .col-left .mobile-contact a {
  font-size: 2.4em;
  font-weight: 900;
  background-color: white;
  color: #2C2C2C;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #2C2C2C;
  padding: 5% 7%;
  border-radius: 5px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
}


/* HEADER STYLE */
header {
    background-color: var(--alt-accent-color);
    height: 90%;
    width: 100vw;
    position: relative;
    z-index: 1;
}

header .header-text {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
}

header .header-text p  {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.8em;
    font-weight: 400;
    color: white;
    width: 65%;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: justify;
}

header .header-text-2 {
    position: absolute;
    bottom: 6%;
    right: 2.5%;
    width: 200px;
    text-align: right;
}

header .header-text-2 a {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: white;
    padding: 8% 12%;
    width: 100%;
    border-radius: 8px;
    transition: .2s ease-out;
}

header .header-text-2 a:hover {
    background-color: white;
    color: var(--main-accent-color);
}



/* INTRO STYLE */
.intro {
    background-color: var(--main-bg-color);
    padding: 12% 0;
    position: relative;
    z-index: 10;
}

.intro .intro-text {
    width: 60%;
    margin-left: 20%;
}

.intro .intro-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: var(--main-text-color);
    font-weight: 900;
}

.intro .intro-text p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2em;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--main-text-color);
    font-weight: 500;
    text-align: justify;
}



/* THE TEAM STYLE */
.team {
    background-color: white;
    padding: 10% 2% 10% 2%;
}

.team .team-intro {
    padding: 1% 2%;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -15%;
}

.team .team-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 15em;
    opacity: .15;
}

.team .profile {
    background-color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin-left: 5%;
    border-radius: 7px;
    position: relative;
    z-index: 5;
}

.team .profile-img {
    height: 45vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 7px 7px 0 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    filter: grayscale(1);
}

.team .profile-img-1 {
    background-image: url("../../imgs/jason.jpg");
}
.team .profile-img-2 {
    background-image: url("../../imgs/sissi.jpg");
}
.team .profile-img-3 {
    background-image: url("../../imgs/abdi.png");
}

.team .profile-text {
    padding: 9%;
    font-family: 'Urbanist', sans-serif;
    text-align: left;
}

.team .profile-text h5 {
    font-family: var(--main-theme-font);
    font-size: 1.9em;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.team .profile-text img {
  height: 30px;
  margin-top: -4px;
  color: var(--main-accent-color);
  cursor: pointer;
  transition: .2s;
}

.team .profile-text img:hover {
  opacity: .6;
}

.team .profile-text b {
    font-size: 1.1em;
    font-weight: 900;
    color: var(--main-accent-color);
    text-align: center;
    letter-spacing: 0.02em;
}

.team .profile-text p {
    padding-top: 5%;
    font-size: 1.02em;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: justify;
    padding-bottom: 3%;
}

.team .profile-text .profile-contact {
  font-size: 1em;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  color: var(--main-accent-color);
  border: solid 3px var(--main-accent-color);
  border-radius: 6px;
  padding: 3% 4%;
  cursor: pointer;
  transition: all .3s;
}

.team .profile-text .profile-contact:hover {
  background-color: var(--main-accent-color);
  color: white;
}


/* CONTACT SECTION */
.contact {
    position: relative;
    background-color: var(--alt-accent-color);
    padding: 15% 10% 5% 10%;
    text-align: center;
    z-index: 5;
  }
  
  .contact .contact-container {
    margin-top: 5%;
  }
  
  .contact .contact-title h2 {
    font-family: var(--main-theme-font);
    font-size: 8em;
    color: var(--main-text-color);
    line-height: 1em;
    transition: .5s ease-out;
  }
  
  .contact .contact-title span {
    color: var(--main-accent-color);
  }
  
  .contact .contact-buttons {
    margin-top: 12%;
    transition: .4s ease-out;
  }
  
  .contact .contact-buttons a {
    font-size: 1em;
    font-family: 'Urbanist', sans-serif;
    font-weight: 900;
    color: var(--main-text-color);
    background-color: var(--main-accent-color);
    border-radius: 6px;
    padding: 23px 45px;
    cursor: pointer;
    transition: .3s;
  }
  
  .contact .contact-buttons a:hover {
    background-color: var(--main-text-color);
    color: var(--main-bg-color);
  } 
  
  
  
  /* FOOTER */
  footer {
    position: relative;
    z-index: 10;
    background-color: var(--alt-accent-color);
    padding: 2% 0 1% 0;
    text-align: center;
  }
  
  footer p {
    color: var(--main-text-color);
    font-weight: 600;
    font-size: 0.95em;
  }
  
  footer span  {
    color: var(--main-accent-color);
    font-weight: 600;
    font-size: 0.95em;
  }