@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');



html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom right, #1c1d22, #343740);
  font-family: 'Inter', sans-serif;
}

h2 {
  color: #66d9c4;
}

h3 {
  color: #bf7973;
}

p {
  color: #d1d5db;
}

label {
  color: #d1d5db;
}

li {
  color: #d1d5db;
}

.button {
  background-color: #66d9c4;
  color: #343740;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  min-width: 160px;      /* Ensures consistent width */
  display: inline-block; /* Important for spacing */
}

.button a {
  color: #343740;
  text-decoration: none;
}

.button-container {
  display: flex;
}

.contact-card {
  border-top: 2px solid #d1d5db05;
  padding-left: 1rem;
  padding-bottom: 6rem;
}

.contact-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

footer {
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-module {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: linear-gradient(to bottom right, #1c1d22, #343740);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-module:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tags li {
  background-color: #343740;
  border: 2px solid #66d9c4;
  color: #d1d5db;
  padding: 0.3rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

#scrollToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: #66d9c4;
  color: #343740;
  border: none;
  border-radius: 50%;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 1);
  display: none;
  transition: opacity 0.3s ease;
}

#scrollToTop:hover {
  background-color: #5ccab8;
}















/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------This is for @media 768px (tablet and higher) styling-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
  h2 {
    font-size: 2rem; /* Adjusted for larger screens */
  }

  h3 {
    font-size: 1.5rem; /* Adjusted for larger screens */
  }

  p {
    font-size: 1.125rem; /* Adjusted for larger screens */
  }

  .project-module {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }

  .project-image, .project-content {
    flex: 1;
  }

  .project-content h3 {
    font-size: 2rem;
  }

  .project-content p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .card-content {
    flex-direction: row;
    gap: 2rem;
    align-items: stretch; /* Ensures both columns match in height */
  }

  .card-content img, .card-content .video-container {
    width: 50%;
    max-width: 50%;
    height: 500px;
    border-radius: 0.5rem;
    object-fit: cover;
    object-position: center;
  }
  
  .card-text {
    flex: 1;
  }

  .video-container {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }


}













/*--------------------------------------------------------------------Secret Level---------------------------------------------------------------------------------*/
.aaron-unleashed {
  filter: hue-rotate(90deg) saturate(1.5);
  transition: filter 0.3s ease-in-out;
}


body.unleashed-mode {
  background-color: #0f0f0f;
  color: #66d9c4;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.unleashed-mode .highlight {
  color: #bf7973;
  font-style: italic;
}

.unleashed-mode .main-hero h1 {
  animation: shake 0.5s infinite alternate;
}

@keyframes shake {
  0% { transform: rotate(-1deg); }
  100% { transform: rotate(1deg); }
}

#konami-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.konami-zone {
  position: absolute;
  width: 33%;
  height: 20%;
  pointer-events: auto; /* Allow tapping */
}

#zone-up { top: 0; left: 33%; }
#zone-down { bottom: 0; left: 33%; }
#zone-left { top: 33%; left: 0; }
#zone-right { top: 33%; right: 0; }

.konami-zone {
  background-color: transparent;
}