/* Reset & base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body layout */
body {
  background: url('../images/visual_mockup_bottom_left.png') no-repeat left bottom;
  background-size: contain;
  background-color: #000000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* Image style */

.hackMeImg {
max-width: 400px;
max-height: 200px;
height: auto;
width: auto;
border-radius: 12px;
}

img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display:block;
  margin: 0 auto;
}
/* Heading style */
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Paragraph style */
p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/*paragrath fade in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 1.0s; /* optional delay */
}

.fade-in-1{
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2s ease-out forwards;
  animation-delay: 1.5s; /* optional delay */
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer style */
footer {
  
  bottom: 1rem;
  font-size: 0.875rem;
  color: #888;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.indexFooter{
  position:absolute;
  bottom: 1rem;
  font-size: 0.875rem;
  color: #888;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* nav style */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  padding: 1rem 2rem;
  z-index: 1000;
  
}

.menu-container {
  display: inline-block;
  border-bottom: 1px solid #888; /* This is your underline */
  padding-bottom: 0.5rem;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #aaa;
}

