body {
  margin: 0;
  font-family: 'Krona One', sans-serif;
  font-size: 25px;
  background-color: #000;
  color: #fff;
  overflow-x: hidden; /* 👈 Prevents sideways scrolling */
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  margin-left: 20px;    
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 12px;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: white;
    color:black;
}

.nav-link.active {
  border: 2px solid white;
}

.logo img {
  width: 160px;
  height: auto;
}

.hero-text {
  text-align: center;
  margin-top: 100px;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 16px;
}


.portfolio-section {
  padding: 100px 20px;
  background-color: #000; /* Optional: for contrast */
  display: flex;
  justify-content: center;
}

.portfolio-images {
  display: flex;
  align-items: center;
  gap: 25px;
}

.portfolio-images img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;ß
}

.arrow {
  color: white;
  font-size: 64px;
  margin-left: 20px;
  cursor: default;
}

.links-section {
  background-color: #000; /* Optional: for contrast */
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  position: fixed; /* Fix to screen */
  bottom: 30px; /* Move it up from the bottom (increase this number to move it higher) */
  right: 30px;  /* Move it in from the right (increase to move it further left) */
  padding: 10px;
  border-radius: 10px; /* Optional: rounded corners */
  z-index: 1000;
}

.links-images {
  display: flex;
  align-items: center;
  gap: 10px;
}

.links-images img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}



.home-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.home-button:hover {
  background-color: white;
  color: black;
}


/* Targeting the favicon size through CSS */
link[rel="icon"] {
  width: 64px; /* Set the size you want */
  height: 64px; /* Set the size you want */
}

@@media (max-width: 768px) {
  body {
    font-size: 14px;
    padding: 0 10px;
  }

  .navbar {
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}


  .nav-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }

  .logo img {
    width: 100px;
  }

  .hero-text {
    margin-top: 40px;
    text-align: center;
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text h2 {
    font-size: 16px;
  }

  .hero-text p {
    font-size: 12px;
  }

  .portfolio-section {
    padding: 30px 10px;
  }

  .portfolio-images {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}


  .portfolio-images img {
  width: 90vw; /* Use viewport width instead of percentage */
  max-width: 350px;
  height: auto;
  object-fit: cover;
}


  .arrow {
    display: none;
  }

  .links-section {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 10px 0;
  }

  .links-images {
    gap: 15px;
  }

  .links-images img {
    width: 32px;
    height: 32px;
  }

  .home-button {
    font-size: 12px;
    padding: 8px 16px;
    margin-top: 20px;
  }
}



