/* Icons */

.right-arrow-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.footer-icon {
  width: 20px;
  height: 20px;
}

a.icon-link {
  transition: transform 200ms ease-in-out;
}

a.icon-link:hover {
  cursor: pointer;
  stroke-width: 5;
  margin: 0;
  transform: rotate(15deg);
}


/* Navbar Styling */

.navbar {
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}

.nav-title-link {
  color: black;
  text-decoration: none;
}

.nav-title-link:hover {
  text-decoration: underline;
}

/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {
  .navbar {
    padding: 20px 20px;
    background-color: white
  }
}


/* Button Styling */

a.button {
  padding: 8px 16px;
  border: 3px solid #141414;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
}

a.button:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  cursor: pointer;
}


/* Footer Styling */

#footer {
  width: 100%;
  display: flex;
  padding: 30px 50px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* Link Styling */
a.no-underline {
  text-decoration: none;
  color: black
}

a.no-underline:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {
  #footer {
    padding: 20px 20px;
  }
}


/* Dark Mode Styles */
body {
  background: linear-gradient(-45deg, #151515, #2d2d2d, #1a1a1a, #2a251f);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite, fadeIn 0.8s ease-in;
  color: #ffffff;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.navbar {
  background-color: #2a2a2a;
}

.nav-title-link {
  color: #ffffff;
}

.nav-title {
  color: #ffffff;
}

a.button {
  border-color: #ffffff;
  color: #ffffff;
}

a.button:hover {
  color: #ffffff;
}

.button-text {
  color: #ffffff;
}

a.no-underline {
  color: #ffffff;
}

.project-card {
  background-color: rgba(42, 42, 42, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
}

a.icon-link {
  filter: invert(1);
}

/* Purdue Gold Styling */
.purdue-gold {
  color: #CFB991;
}

/* Typing Effect */
#typed-text {
  border-right: 3px solid #ffffff;
  padding-right: 5px;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #ffffff;
  }
}

/* Scroll Animation for Projects */
.project-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(207, 185, 145, 0.3);
  border-color: rgba(207, 185, 145, 0.5);
}

/* Add stagger delay for each card */
.project-card:nth-child(1) {
  transition-delay: 0.1s;
}

.project-card:nth-child(2) {
  transition-delay: 0.2s;
}

.project-card:nth-child(3) {
  transition-delay: 0.3s;
}

.project-card:nth-child(4) {
  transition-delay: 0.4s;
}

.project-card:nth-child(5) {
  transition-delay: 0.5s;
}

.project-card:nth-child(6) {
  transition-delay: 0.6s;
}
.button-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}