:root {
  --color-primary: #eb5e28;
  --color-bg-dark: #403d39;
  --color-text-light: #fff;
  --color-text-dark: #333333;
  --color-gray-1: #514d48;
  --color-gray-2: #6c6760;
  --color-gray-3: #878178;
  --color-gray-4: #9f9a93;
  --color-gray-5: #b7b3ae;
  --color-gray-6: #cfccc9;
  --color-gray-7: #989898;

  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 1rem;
  --spacing-4: 1.5rem;
  --spacing-5: 3rem;
  --spacing-6: 4rem;
  --spacing-7: 5rem;
  --spacing-8: 6rem;
}

@font-face {
  font-family: LeagueGothic;
  src: url(../fonts/LeagueGothic-Regular.ttf);
}

@font-face {
  font-family: ArchivoNarrow;
  src: url(../fonts/ArchivoNarrow.ttf);
}

@font-face {
  font-family: NeueHaasDisplayBold;
  src: url(../fonts/NeueHaasGroteskDisplayPro/NeueHaasDisplayLight.ttf);
}

h1,
h2,
h3,
h4,
p {
  color: var(--color-text-light) !important;
}

p {
  font-family: "Roboto", sans-serif;
}

.mb-7 {
  margin-bottom: var(--spacing-7) !important;
}

.mb-8 {
  margin-bottom: var(--spacing-8) !important;
}

.font-size-lg {
  font-size: var(--spacing-7);
}

.clear {
  clear: both;
}

body {
  margin-right: var(--spacing-0);
  margin-left: var(--spacing-0);
  background-color: var(--color-bg-dark) !important;
  color: var(--color-text-light);
  font-family: ArchivoNarrow !important;
}

.banner {
  width: 58%;
  margin-top: -18px;
  padding-bottom: var(--spacing-3);
  padding-right: 8px;
  border-bottom: 1px solid var(--color-text-light);
  margin-bottom: var(--spacing-5);
}

/* navbar section */

.navbar-section {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-gray-1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: var(--color-text-light);
}

.nav-link {
  font-size: 18px !important;
  color: var(--color-text-light) !important;
}
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--color-text-light);
  transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* hero section */
.name-title {
  color: var(--color-text-light) !important;
}

.subtitle {
  font-size: var(--spacing-4) !important;
  color: var(--color-text-light) !important;
}

.subtitle-2 {
  font-size: var(--spacing-3) !important;
  color: var(--color-text-light) !important;
}

.primary-button {
  color: var(--color-text-light) !important;
  background-color: var(--color-primary) !important;
  border: none;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
}

.primary-button:hover {
  background-color: #d94f1c;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 8px var(--color-gray-2);
}

.primary-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 8px var(--color-gray-1);
}

/* skills section */
.skill-button {
  color: var(--color-text-light) !important;
  background-color: var(--color-gray-3) !important;
  margin-bottom: var(--spacing-2) !important;
  cursor: default !important;
  transition: width 0.4s ease;
}

.skill-button:hover {
  background-color: var(--color-primary) !important;
}

/* projects section */

/* footer section*/

footer {
  background: #403d39;
  background: linear-gradient(
    180deg,
    rgba(64, 61, 57, 1) 0%,
    rgba(81, 77, 72, 1) 20%,
    rgba(159, 154, 147, 1) 100%
  );
}
.footer-section {
  color: var(--color-text-light);
  padding: 75px 0 40px 0;
  text-align: center;
}

.footer-section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-section p {
  color: #dbdbdb;
}

.footer-section .footer-col {
  margin-bottom: 30px;
}

.footer-section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
  color: #ffffff;
}

.footer-section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-bg-dark);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--color-text-light);
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 25px;
}

.footer-section .footer_social a:hover {
  color: var(--color-primary);
}

.footer-section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer-section .footer-info p {
  color: #ffffff;
  margin: 0;
}

.footer-section .footer-info p i {
  color: #d90000;
  font-size: 20px;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .font-size-lg {
    font-size: var(--spacing-6);
  }
}


.content-section{
  
}

.nav-item a.active{
  color: var(--color-primary) !important;
}