/* Base Styles */
/* :root {
  --primary-color: #7F8386;
  --secondary-color: #7F8386;
  --accent-color: #0dfd19;
} */

html,
body {
  height: 100%;
}

body {
  font-family: "IBM Plex Mono", monospace;
  color: #00ff5e;
  font-weight: 100;
  line-height: 1.6;
  background-color: #0e0e0e;
  font-size: small;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
  letter-spacing: 0px;
}

p2 {
  font-size: 0.7rem;
  margin-bottom: 0rem;
}

.rights {
  font-size: 0.6rem;
  margin-top: 0rem;
}

a {
  font-weight: 200;
  color: #0dfd19;
  text-decoration: none;
}

/* Custom arrow styles */
.nav-arrow {
  width: 25px; /* Thinner width */
  height: 25px;
  stroke: currentColor;
  stroke-width: 0.001px;
  paint-order: stroke;
  opacity: 0.5;

  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Smooth elastic animation */
  transform-origin: center;
}

/* Rotation when menu is open */
.navbar-toggler[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

/* Remove default Bootstrap toggler styling */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Hover effect */
.navbar-toggler:hover .nav-arrow {
  opacity: 1;
}

.biocont {
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.discont {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 0rem;
  margin-top: 0rem;
}

/* Navigation */
#main-nav {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

/* Link aplastado */
.nav {
  --bs-nav-link-hover-color: #0dfd19;
}

.navbar {
  background-color: black;
  opacity: 95%;
}

.navbar-brand h1 {
  font-size: 13px;
  margin-left: 0.5rem;
}

.nav-link {
  font-weight: 200;
  color: #0dfd19;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  background-color: #0dfd19;
  color: #000000;
}

.square-img {
  width: 100px; /* Adjust size as needed */
  height: 100px; /* Make it square */
  object-fit: cover; /* Ensures image fills the square */
  border-radius: 0px; /* Optional: slight rounding */
}

/* Footer */
footer {
  background-color: black;
  color: white;
  margin-top: auto;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Makes footer stick to bottom */

main {
  flex: 1;
  padding-bottom: 60px; /* Adjust if footer height changes */
}

/* Utility Classes */
.text-uppercase {
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-brand h1 {
  }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .biocont {
    margin-left: 15rem;
    margin-right: 15rem;
    margin-bottom: 2rem;
    margin-top: 5rem;
  }

  .discont {
    margin-left: 15rem;
    margin-right: 15rem;
    margin-bottom: 0rem;
    margin-top: 2rem;
  }
  .navbar-brand h1 {
    font-size: 13px;
    margin-left: 0rem;
  }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
