/* 
Version : 1.0.0
Last Update: 7-Nov-2025 15:34 (UTC +6.00)
*/

:root {
  /* --font-title: "Questrial", sans-serif; */
  --font-title: "Space Grotesk", sans-serif;
  /* --font-text: "Outfit", sans-serif; */
  font-family: "Funnel Sans", sans-serif;
  --black-dark: #08090c;
  --black-transparent-50: rgba(8, 9, 12, 0.5);
  --black-mid: #171a21;
  --black-light: #2a2f3c;
  --black-light-transparent: rgba(42, 47, 60, 0.5);
  --grey: #6b6e75;
  --grey-transparent: rgba(107, 110, 117, 0.5);
  --grey-light: #8a8d93;
  --grey-lighter: #aaacb1;
  --grey-lighter-transparent-50: rgb(170, 172, 177, 0.5);
  --white: #fbf5f3; /* or go with full white */
  --white-transparent-50: rgba(255, 255, 255, 0.5);
  --blue: #0d6efd;
  --border-radius: 3px;
}

* {
  transition: 0.1s;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: var(--black-dark);
  color: var(--white);
  font-family: var(--font-text);
  font-weight: 200;
}

body.white {
  background-color: var(--white) !important;
  color: var(--black-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  /* text-transform: uppercase; */
  font-weight: 400;
  text-align: center;
}

a {
  color: var(--blue);
}

a.black {
  color: var(--black-dark);
}

a.black:hover {
  color: var(--grey);
}

.home-big-name {
  /* font-family: "Switzer", sans-serif; */
  /* font-family: "Archivo", sans-serif; */
  /* font-family: "Questrial", sans-serif; */
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 700;
}

p {
  font-weight: 200;
}

.grey {
  color: var(--grey);
}

.section {
  width: 100%;
  padding: 50px 0px;
}

.section.white {
  background-color: var(--white);
  color: var(--black-dark);
}

.section.black {
  background-color: var(--black-dark);
  color: var(--white);
}

/* nav */
.nav-container {
  position: fixed;
  top: 20px;
  width: 100%;
  text-align: center;
  z-index: 999;
}

.nav-container nav {
  background-color: var(--grey-transparent);
  padding: 7px;
  border-radius: 50px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 25px rgba(160, 160, 160, 0.25) inset;
}

.nav-links {
  list-style: none;
  display: flex;
  height: 100%;
  padding: 0px;
  margin-bottom: 0px !important;
}

.nav-item {
  background-color: transparent;
  height: 100%;
  padding: 10px 24px 10px 20px;
  border-radius: 100px;
  margin-left: 5px;
  margin-right: 5px;
}

.nav-item.active {
  background-color: var(--white);
  color: var(--black-dark);
}

.nav-item:not(.active):hover {
  background-color: var(--black-dark);
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: var(--white);
}

nav .bi {
  padding-right: 7px;
}
/* nav end */

/* hero section */
.hero-section {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.video-foreground {
  background: var(--black-dark);
  opacity: 0.6;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  pointer-events: none;
}

#video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  margin: -5px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  pointer-events: auto;
}

.hero-content h1 {
  font-size: 4.5rem;
  text-shadow: 0px 0px 15px var(--black-dark);
}

.hero-content p {
  font-size: 1.5rem;
  text-shadow: 0px 0px 7px var(--black-dark);
}

.hero-content .social {
  box-shadow: 0px 0px 15px var(--black-dark);
}

.down-signifier {
  z-index: 2;
  display: block;
  position: absolute;
  top: 80%;
  font-size: 1.5rem;
  animation: moveUpDown 1.5s ease-in-out infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* social icons */
.social {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  margin: 5px;
  background-color: var(--white);
  color: var(--black-dark);
  transition: 0.3s;
}

.social.sm {
  width: 35px;
  height: 35px;
  font-size: 18px;
}

.social:hover,
.social.black:hover {
  background-color: var(--grey);
  color: var(--white);
  /* box-shadow: 0px 0px 15px var(--grey); */
}

.social.black {
  background-color: var(--black-dark);
  color: var(--white);
  transition: 0.075s;
}

/* blank spaces */
.blank {
  height: 100px;
}

.blank-sm {
  height: 50px;
}

.blank-lg {
  height: 200px;
}

/* portfolio item test */

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-item img {
  width: 100%;
  margin-bottom: 5px;
  /* padding: 5px; */
  border: 1px solid var(--black-light);
}

.portfolio-item a {
  text-decoration: none;
  color: var(--white);
}

a.black-text {
  color: var(--black-dark);
}

a.black-text:hover {
  text-decoration: none;
}

.portfolio-item a:hover {
  color: var(--white);
}

.portfolio-item:hover img {
  transform: translateY(-15px);
  /* padding: 0px; */
  border: 1px solid var(--grey);
}

.portfolio-item:hover b {
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio-cine {
  margin-bottom: 25px;
  position: relative;
}

.portfolio-cine img {
  border: 1px solid var(--grey);
}

.portfolio-cine:hover img {
  border: 1px solid var(--grey-lighter);
}

.portfolio-cine a {
  text-decoration: none;
}

.portfolio-cine i {
  text-decoration: none;
  color: transparent;
  position: absolute;
  top: calc(50% - 32px);
  font-size: 64px;
  left: calc(50% - 32px);
  z-index: 9;
  /* text-shadow: 0px 0px 20px transparent; */
}

.portfolio-cine:hover i {
  color: var(--white);
  text-shadow: 0px 0px 100px var(--black-light);
}

.other-works {
  background: var(--grey-light);
  color: var(--white);
  padding: 10px;
  border-radius: var(--border-radius);
  margin: 5px 10px;
  text-decoration: none;
  font-size: 1.15rem;
  display: inline-block;
}

.other-works:hover {
  background: var(--white);
  color: var(--black-dark);
  text-decoration: none;
}

/* about */
.xp {
  width: 100%;
  color: black;
}

.xp * {
  font-weight: 200;
}

.xp b {
  font-weight: 400;
  font-size: 1.12rem;
}

.xp td {
  vertical-align: top;
  padding: 10px;
}

.xp-logo {
  width: 100px;
  padding-top: 15px !important;
}

.xp-logo img {
  width: 100%;
}

.xp-desc {
  padding-left: 10px;
  padding-bottom: 0px !important;
  /* text-align: justify; */
}

.about-me-img {
  border-radius: 50%;
  width: 200px;
  max-width: 100%;
  object-fit: cover;
}

.xp .work-timeline {
  color: var(--grey-light);
}

.work-details {
  border-left: 2px solid var(--grey-lighter);
  padding-left: 15px;
  padding-bottom: 7px;
  margin-left: 25px;
}

.copyright-text {
  color: var(--grey);
  text-align: center !important;
}

.contact-form input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--grey-light);
  border-radius: var(--border-radius);
  background-color: var(--white);
  color: var(--black-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  /* background-color: #fff; */
  border: 1px solid var(--black-dark);
}

.contact-form input[type="submit"] {
  background-color: var(--black-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
}
.contact-form input[type="submit"]:hover {
  background-color: var(--black-light);
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--grey-lighter-transparent-50);
}

.accordion-button:not(.collapsed) {
  color: var(--black-dark);
  background-color: var(--grey-lighter-transparent-50);
  box-shadow: none !important;
}

button {
  background-color: var(--black-dark);
  color: var(--white);
  border: 0px transparent;
  outline: 0;
  padding: 10px 15px;
  border-radius: var(--border-radius);
}

button:hover {
  background: var(--black-mid);
}

button:active {
  background-color: var(--black-light);
}

/*
*
* Extra small devices (phones, less than 576px) 
*
*
*/
@media (max-width: 575.98px) {
  p.justify,
  p.long-tetx {
    text-align: justify;
  }

  .nav-container {
    top: auto;
    bottom: 10px;
  }

  .nav-container nav {
    background-color: var(--black-light-transparent);
  }

  .nav-item {
    height: 50px;
    width: 50px;
    padding: 9px 15px;
    border-radius: 150px;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 20;
  }

  .nav-item:not(.active):hover {
    background-color: transparent;
  }

  .other-works {
    font-size: 1rem;
  }
}
