@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap");

:root {
  --color-body: #000000;
  --color-heading: #000000;
  --color-base: #ffffff;
  --color-base2: #ffd09a;
  --color-brand: #ff6d40;
  --color-brand2: #ff3907;
  --sidbar-width: 240px;
  --font-base: "Bai Jamjuree";
}

body {
  background-color: var(--color-base2);
  color: var(--color-body);
  font-family: "Bai Jamjuree" sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--color-body);
  transition: all 0.3s 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.4s;
}
.shadow-effect:hover {
  box-shadow: 0 0 0 9px var(--color-brand);
  transform: scale(105%);
}
.iconbox {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background-color: var(--color-brand);
  color: var(--color-base);
}
.navbar {
  background-color: var(--color-brand);
}
.navbar a {
  color: #ffff;
}
.nav-item a,
img {
  transition: transform 0.3s;
}
.nav-item a:hover {
  transform: scale(110%);
}
.nav-item,
pfp:hover {
  transform: scale(103%);
}
.navbar .nav-link {
  font-weight: 700;
  text-transform: uppercase;
  color: #ffff;
}

.navbar .nav-link:hover {
  color: var(--color-brand2);
}
.navbar .nav-link.active {
  color: var(--color-brand2);
}
@media (min-width: 992px) {
  .navbar {
    min-height: 100vh;
    width: var(--sidbar-width);
    background: #ff6d40;
    background-size: cover;
    background-position: center;
  }
  #content-wrapper {
    padding-left: var(--sidbar-width);
  }
}
@media (max-width: 991px) {
  .cv {
    max-height: 400px;
  }
  .homepageInfo {
    flex-direction: column;
  }
  .btn-brand {
    width: 15rem;
    text-align: center;
  }
  .nav-item a, img{
    transition: none;
  }
  .nav-item a:hover, pfp:hover {
    transform: none;
}
}

.btn {
  padding: 12px 28px;
  font-weight: 700;
}

.btn-brand {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--color-brand2);
  color: var(--color-base);
  border-color: var(--color-brand2);
  transition: all 0.5s ease;
}

.btn-brand {
  transition: all 0.5s ease;
}
.link-custom {
  font-weight: 700;
  position: relative;
}
.link-custom:after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--color-brand);
  position: absolute;
  left: 0;
  top: 110%;
  transition: all 0.4s;
}
.link-custom:hover:after {
  width: 100%;
}
.card-custom .card-custom-image {
  overflow: hidden;
}
.card-custom .card-custom-image img {
  transition: all 0.3s ease;
}
.card-custom:hover .card-custom-image img {
  transform: scale(1.05);
}
#contact .form-control {
  background-color: var(--color-base);
  border-color: var(--color-base);
  color: var(--color-body);
}
#contact .form-control:focus {
  border-color: var(--color-brand);
  box-shadow: none;
}
#contact .form-control::placeholder {
  color: var(--color-body);
}
#contact input.form-control {
  height: 44px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-base);
  border-radius: 100px;
  font-size: 32px;
}
#copyright {
  font-weight: 500;
}
.error-txt {
  color: red;
  text-align: left;
  margin: 0px 0 10px;
}
.homepageInfo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}