@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --color-body-bg: #b6cbce;
  --color-heading: #eef3db;
  --color-base: #352e57;
  --color-base2: #1f193d;
  --color-brand: #ce58aa;
  --color-brand2: #b64499;

  /* --color-body-bg: #b6cbce;
  --color-heading: #eef3db;
  --color-base: #033f47;
  --color-base2: #022a30;
  --color-brand: #e0f780;
  --color-brand2: #deff58; */

  --sidebar-width: 240px;
  --font-base: "Bai Jamjuree", sans-serif;
}

/* --------------- GLOBALS --------------- */

body {
  background-color: var(--color-base2);
  color: var(--color-body-bg);
  font-family: var(--font-base), sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--color-body-bg);
  transition: all 0.4s ease;
}

a:hover {
  color: var(--color-brand);
}

img {
  width: 100%;
}

.text-brand {
  color: var(--color-brand);
}

.bg-base {
  background-color: var(--color-base);
}

.full-height {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.shadow-effect {
  transition: all 0.5s;
}

.shadow-effect:hover {
  box-shadow: -6px 6px 0 0 var(--color-brand);
}

.iconbox {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-color: var(--color-brand);
  color: var(--color-base);
}

/* --------------- CARD --------------- */
.custom-card .custom-card-img {
  overflow: hidden;
}

.custom-card .custom-card-img img {
  transition: all 0.4s ease;
}

.custom-card:hover .custom-card-img img {
  transform: scale(1.1);
}

/* --------------- HEADING --------------- */
.navbar {
  background-color: var(--color-base);
}

.navbar .nav-link {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.navbar .nav-link:hover {
  color: var(--color-brand);
}

.navbar .nav-link.active {
  color: var(--color-brand);
}

.navbar-brand img {
  border: 7px solid var(--color-brand);
}

@media (min-width: 992px) {
  .navbar {
    min-height: 100vh;
    width: var(--sidebar-width);
    background: linear-gradient(
        rgb(53, 46, 87),
        rgba(53, 46, 87, 0.8),
        rgba(53, 46, 87, 0.2)
      )
      no-repeat center center/cover;
  }

  #content-wrapper {
    padding-left: var(--sidebar-width);
  }
}

/* --------------- BTN --------------- */

.btn {
  padding: 12px 28px;
  font-weight: 700;
}

.btn-brand {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--);
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--color-brand2);
  border-color: var(--color-brand2);
  color: var(--color-base);
}

.custom-link {
  font-weight: 700;
  position: relative;
}

.custom-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--color-brand);
  position: absolute;
  left: 0;
  top: 110%;
  transition: all 0.4s;
}

.custom-link:hover::after {
  width: 100%;
}

/* --------------- PROGRESS BAR --------------- */
.progress-bar {
  background-color: #b64499;
}

/* --------------- CONTACT --------------- */
#contact .form-control {
  background-color: var(--color-base);
  border-color: var(--color-base);
  color: var(--color-body-bg);
}

#contact .form-control:focus {
  border-color: var(--color-brand);
  box-shadow: none;
}

#contact .form-control::placeholder {
  color: var(--color-body-bg);
  opacity: 0.5;
}

#contact input.form-control {
  height: 44px;
}

/* --------------- SOCIAL ICONS --------------- */
.social-icons a {
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-base);
  border-radius: 100px;
  font-size: 1.5rem;
}

/* --------------- RECURSOS --------------- */
.resources-item {
  font-size: 10px;
  background-color: var(--color-body-bg);
  color: var(--color-base2);
}


/* --------------- PROJETO EM DESENVOLVIMENTO --------------- */
.project-overlay-container {
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
}

.project-overlay h3 {

    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.project-overlay-container:hover .project-overlay {
    opacity: 0.8;
}