/* styles.css */
body {
  margin: 0;
  padding: 0;
  background-color: #111827;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/bg.jpg') no-repeat center center/cover;
  z-index: -10;
  filter: brightness(0.4);
}
.container {
  max-width: 72rem;
  margin: 0rem auto;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.5rem 1.5rem 1.5rem;
  background-color: rgba(31, 41, 55, 0.8);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 1rem;
}
.logo-img {
  border-radius: 9999px;
  border: 2px solid #14b8a6;
}
#logo-text {
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.125rem;
}
@media (max-width: 560px) {
  #logo-text {
    display: none;
  }
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.lang-buttons {
  display: flex;
  gap: 0.0rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.lang-btn:hover {
  color: #14b8a6;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.intro-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: rgba(17, 24, 39, 0.8);
}
.intro-role {
  color: #14b8a6;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.intro-name {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .intro-name {
    font-size: 3rem;
  }
}
.intro-description {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: #d1d5db;
}
.btn-primary {
  background-color: #14b8a6;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #0d9488;
}
.section {
  padding: 4rem 1.5rem;
  background-color: rgba(31, 41, 55, 0.8);
}
.section-alternative {
  padding: 4rem 1.5rem;
  background-color: rgba(17, 24, 39, 0.8);
}
.about-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: center;
  position: relative;
}
.about-grid > div {
  min-width: 0;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#lang-info-long {
  text-align: center;
}
@media (min-width: 768px) {
  #lang-info-long {
    text-align: start;
  }
}
.about-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.profile-img {
  border-radius: 9999px;
  border: 4px solid #14b8a6;
  width: 10rem;
  height: 10rem;
  padding: 0.375rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0rem 2.5rem 2.5rem;
  gap: 0.75rem;
  width: 11rem;
}
.social-link-group {
  display: grid;
  grid-template-columns: 2rem auto;
  align-items: center;
  column-gap: 0.8rem;
}
.social-icon {
  color: #14b8a6;
  font-size: 1.5rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.social-icon svg {
  width: 80%;
  height: 80%;
  fill: currentColor;
}
.social-link-group:hover .social-icon {
  transform: scale(1.25);
}
.social-label {
  color: #14b8a6;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.social-link-group:hover .social-label {
  opacity: 1;
}
.section-title {
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-text {
  color: #d1d5db;
  margin-bottom: 1rem;
}
.skills-grid {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  color: #d1d5db;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.skill-item {
  background-color: rgba(31, 41, 55, 0.8);
  padding: 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  cursor: default;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.project-card {
  background-color: rgba(17, 24, 39, 0.8);
  padding: 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.project-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}
.project-description {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}
.project-link {
  color: #14b8a6;
  text-decoration: none;
}
.project-link:hover {
  color: #14b8a6;
}
.form-container {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-input {
  border: none;
  padding: 0.75rem;
  border-radius: 0.375rem;
  background-color: rgba(31, 41, 55, 0.8);
  color: white;
  min-height: fit-content;
  resize: vertical;
  font-family: 'Space Grotesk', sans-serif;
}
.form-input::placeholder {
  color: #9ca3af;
}
.hidden {
  display: none;
}
.submit-button:hover {
  background-color: #0d9488;
}
.privacy-note {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.footer {
  background-color: rgba(31, 41, 55, 0.8);
  font-size: 0.875rem;
  color: #9ca3af;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  padding-top: 1rem;
}
.footer-top {
  display: flex;
  justify-content: flex-end;
  padding: 0 1.5rem;
}
.footer-links {
  text-align: right;
}
.footer-bottom {
  display: flex;
  justify-content: flex-start;
  padding: 0 1.5rem 1rem 1.5rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
  align-items: center;
  justify-content: flex-start
}
.footer-badges img {
  height: 26px;
  width: auto;
  display: block;
}
.footer-copy {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}
a {
  text-decoration: none;
  color: inherit;
}
.section-title {
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
#skills,
#contact {
  background-color: rgba(17, 24, 39, 0.8);
}
#skills .section-title,
#projects .section-title,
#contact .section-title {
  text-align: center;
}
.site-header,
.section,
#skills,
#contact,
.footer {
  margin: 0;
}
.skills-grid {
  padding: 1rem 0;
}
.footer-top {
  flex-wrap: wrap;
  gap: 1rem;
}
body
.active-language {
  color: white;
  font-weight: bold;
}
.chip-container {
  padding: 10px 0px 5px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background-color: rgba(31, 41, 55, 1);
  border-radius: 16px;
  border: 0px solid #ccc;
  cursor: default;
}
.privacy-text {
  max-width: 100%;
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 2rem;
  display: block;
  white-space: pre-line;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.privacy-text a {
  color: #14b8a6;
  text-decoration: underline;
}
.circle-img {
  border-radius: 9999px;
  border: 2px solid #14b8a6;
}
a:hover {
  color: #14b8a6;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
  box-shadow: 0 0 0px 1000px rgba(31, 41, 55, 0.8) inset !important;
  -webkit-text-fill-color: white !important;
  caret-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}
input:autofill,
textarea:autofill {
  background-color: rgba(31, 41, 55, 0.8) !important;
  color: white !important;
  caret-color: white !important;
}
