/* @import url("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap"); */

.profile p .eu-flag {
  font-family: "Noto Color Emoji", sans-serif;
}

/* = = = = = CSS  = = = = = */

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: #121212;
  color: #e0e0e0;
}
.pron {
  margin-top: -20px;
}

.socials {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.socialsBox {
  display: flex;
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.socialsBox ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: relative;
}

.socialsBox li {
  margin: 0 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.socialsBox li:hover {
  transform: scale(1.2);
}

.socialsBox img {
  width: 50px;
  height: 50px;
  filter: brightness(0.9);
}

.socialsBox a {
  position: relative;
  text-decoration: none;
}

.socialsBox a::after {
  content: attr(data-name);
  position: absolute;
  bottom: 250%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.socialsBox a:hover::after {
  opacity: 1;
  visibility: visible;
}
.containerTop {
  text-align: center;
  margin-bottom: 20px;
}

.profile img.pfp {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  border: 4px solid #1e1e1e;
}
.langs {
  display: flex;
  justify-content: center;
  width: 100%;
}

.langsBox {
  display: flex;
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.langsBox ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: relative;
}

.langsBox li {
  margin: 0 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.langsBox li:hover {
  transform: scale(1.2);
}

.langsBox img {
  width: 50px;
  height: 50px;
  filter: brightness(0.9);
}

.langsBox a {
  position: relative;
  text-decoration: none;
}

.langsBox a::after {
  content: attr(data-name);
  position: absolute;
  bottom: 250%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.langsBox a:hover::after {
  opacity: 1;
  visibility: visible;
}

.grid-container {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.project-block {
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px;
  transition: transform 0.2s ease;
}
.project-block:hover {
  transform: translateY(-5px);
}

.project-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.project-description {
  margin-top: 15px;
  font-size: 1rem;
  color: #b0b0b0;
}

.visit-button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.visit-button-disabled {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #323232;
  color: rgb(146, 146, 146);
  border: none;
  border-radius: 5px;
  cursor: not-allowed;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.visit-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .project-description {
    font-size: 0.9rem;
  }
  .visit-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .project-description {
    font-size: 0.8rem;
  }
  .visit-button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .project-block {
    padding: 15px;
  }
}

footer {
  margin-top: 25px;
  background-color: #49008a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #fd01d7;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.announcements {
  text-align: center;
}

h1,
h2,
p {
  color: #ffffff;
}
