/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --font-semi: 600;
  /*===== Colores =====*/
  /*Purple 260 - Red 355 - Blue 224 - Pink 340*/
  /* HSL color mode */
  --hue-color: 224;
  --first-color: hsl(var(--hue-color), 89%, 60%);
  --second-color: hsl(var(--hue-color), 56%, 12%);
  /*===== Fuente y tipografia =====*/
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
  /*===== Margenes =====*/
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*===== z index =====*/
  --z-back: -10;
  --z-fixed: 100;
}
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .875rem;
  }
}

/*===== BASE =====*/
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  padding-left: 0px;
  padding-right: 0px;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
}

h1, h2, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*===== CLASS CSS ===== */
.section-title {
  position: relative;
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--first-color);
}

.section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/*===== LAYOUT =====*/
.bd-grid {
  max-width: 1024px;
  display: grid;
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
}

/*===== NAV =====*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semi);
}
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: var(--second-color);
    transition: 0.5s;
  }
}
.nav__item {
  margin-bottom: var(--mb-4);
}
.nav__link {
  position: relative;
  color: #fff;
}
.nav__link:hover {
  position: relative;
}
.nav__link:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}
.nav__logo {
  color: var(--second-color);
}
.nav__toggle {
  color: var(--second-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/*Active menu*/
.active-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

/*=== Show menu ===*/
.show {
  right: 0;
}

/*===== HOME =====*/
.home {
  position: relative;
  row-gap: 5rem;
  padding: 4rem 0 5rem;
}
.home__data {
  align-self: center;
}
.home__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-5);
}
.home__title-color {
  color: var(--first-color);
}
.home__social {
  display: flex;
  flex-direction: column;
}
.home__social-icon {
  width: max-content;
  margin-bottom: var(--mb-2);
  font-size: 1.5rem;
  color: var(--second-color);
}
.home__social-icon:hover {
  color: var(--first-color);
}
.home__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 270px;
  animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-2.4rem);
  }
  100%{transform: translateY(0);
}
}
.home__blob {
  fill: var(--first-color);
}
.home__blob-img {
  width: 360px;
}

/*BUTTONS*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-weight: var(--font-semi);
  border-radius: 0.5rem;
  transition: 0.3s;
}
.button:hover {
  box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.15);
}

/* ===== ABOUT =====*/
.about__container {
  row-gap: 2rem;
  text-align: center;
  
}
.about__subtitle {
  margin-bottom: var(--mb-2);
}
.about__img {
  justify-self: center;
}
.about__img img {
  width: 200px;
  border-radius: 0.5rem;
}
/* .about__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--mb-2-5);
  margin-inline: auto;
  
}

.about__info-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.about__info-name {
  font-size: var(--smaller-font-size);
}

.about__info-title,
.about__info-name {
  display: block;
  text-align: center;
} */

.about__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__info-item {
  text-align: center;
  padding: 1.5rem;
  min-width: 150px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about__info-title {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.about__info-name {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about__info {
      gap: 1rem;
  }

  .about__info-item {
      min-width: 120px;
  }

  .about__info-title {
      font-size: 2rem;
  }
}
/* ===== SKILLS =====*/
.skills__container {
  row-gap: 2rem;
  text-align: center;
}
.skills__subtitle {
  margin-bottom: var(--mb-2);
}
.skills__text {
  margin-bottom: var(--mb-4);
}
.skills__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: 0.5rem 1rem;
  margin-bottom: var(--mb-4);
  border-radius: 0.5rem;
  box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
}
.skills__icon {
  font-size: 2rem;
  margin-right: var(--mb-2);
  color: var(--first-color);
}
.skills__names {
  display: flex;
  align-items: center;
}
.skills__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--first-color);
  height: 0.25rem;
  border-radius: 0.5rem;
  z-index: var(--z-back);
}
.skills__html {
  width: 95%;
}
.skills__css {
  width: 95%;
}
.skills__js {
  width: 75%;
}
.skills__ux {
  width: 85%;
}
.skills__img {
  border-radius: 0.5rem;
}

/* --------------- Qualification --------------- */
.qualification__tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: var(--mb-2);
}


.qualification__button {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  cursor: pointer;
}

.qualification__button:hover {
  color: var(--first-color);
}

.qualification__icon {
  font-size: 1.8rem;
  margin-right: var(--mb-0-25);
}

.qualification__data {
  display: grid;
  /* grid-template-columns: 1fr max-content 1fr; */
  column-gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: center;
  text-align: center;
  
    /* display: grid;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
   */
}

.qualification__data:last-child {
  margin-bottom: 0;
}

.qualification__title {
  font-size: var(--normal-font-size);
  font-weight: bold;
}

.qualification__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
}

.qualification__calendar {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.qualification__rounder {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--first-color);
  border-radius: 50%;
}

.qualification__line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--first-color);
  transform: translate(6px, -7px);
}

.qualification [data-content] {
  display: none;
}

.qualification__active[data-content] {
  display: block;
}

.qualification__button.qualification__active {
  color: var(--first-color);
}

/* ===== WORK =====*/
.work__container {
  row-gap: 2rem;
}
.work__img {
  box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.work__img img {
  transition: 1s;
}
.work__img img:hover {
  transform: scale(1.1);
}

/* --------------- Services --------------- */
.section {
  padding: 4rem 0;
  background: #fff;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 2rem;
  display: block;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.services__content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* .services__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
} */

.services__icon {
  font-size: 2rem;
  color: #6366f1;
  margin-bottom: 1rem;
  display: block;
}

.services__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #6366f1;
  color: #fff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #4f46e5;
}

.button__icon {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.button:hover .button__icon {
  transform: translateX(0.25rem);
}

/* --------------- Modal Styles --------------- */
.services__modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.services__modal-content {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto; /* Enables scroll inside content */
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
  padding-top: 1rem;
}

.services__modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.services__modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #6366f1;
  cursor: pointer;
}

.services__modal-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.services__modal-service {
  display: flex;
  align-items: flex-start !important;
  gap: 0.5rem;
}

.services__modal-icon {
  color: #6366f1;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.services__modal-service p {
  margin: 0;
  color: #4b5563;
  font-size: 0.875rem;
  text-align: start;
}

/* Active Modal */
.services__modal.active-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.services__modal.active-modal .services__modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Prevent background scroll when modal is open */
body.no-scroll {
  overflow: hidden;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .services__container {
    grid-template-columns: 1fr;
  }

  .services__content {
    padding: 1.5rem;
  }

  .services__title {
    font-size: 1.1rem;
  }

  .button {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 576px) {
  .section-subtitle {
    font-size: 0.9rem;
  }

  .services__icon {
    font-size: 1.5rem;
  }

  .services__modal-content {
    max-width: 90%;
  }
}

/* ===== CONTACT ===== */
.contact__container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  gap: 1.5rem; /* Reduced gap for better spacing */
  align-items: flex-start; /* Align items to the top */
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* Add padding for narrow screens */
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%; /* Full width on smaller screens */
  max-width: 400px; /* Limit width on larger screens */
}

.contact__information {
  display: flex;
  align-items: flex-start;
}

.contact__icon {
  font-size: 1.5rem;
  color: #6366f1;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
}

.contact__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.contact__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  display: block;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%; /* Full width for form */
  max-width: 600px; /* Limit form width on larger screens */
}

.contact__inputs {
  display: grid;
  grid-template-columns: 1fr; /* Single column for mobile */
  gap: 1rem; /* Increased gap for better spacing */
}

.contact__content {
  background-color: transparent;
  border-radius: 0.25rem;
}

.contact__label {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.25rem;
  display: block;
}

.contact__input {
  width: 100%;
  font-size: 1rem; /* Consistent font size */
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--second-color, #d1d5db); /* Fallback for undefined var */
  outline: none;
  background: #fff;
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.contact__input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.contact__button {
  display: inline-flex;
  align-items: center;
  border: none;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  background-color: #6366f1;
  color: white;
  border-radius: 0.25rem;
  width: fit-content;
  margin: 0 auto; /* Center button on mobile */
}

.contact__button:hover {
  background-color: #4f46e5;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Small devices (phones, up to 576px) */
@media screen and (max-width: 576px) {
  .contact__container {
    flex-direction: column; /* Stack info and form vertically */
    padding: 0 0.5rem;
  }

  .contact__info,
  .contact__form {
    max-width: 100%; /* Full width for both */
  }

  .contact__inputs {
    grid-template-columns: 1fr; /* Single column */
  }

  .contact__input,
  .contact__button {
    font-size: 0.9rem; /* Slightly smaller text for mobile */
    padding: 0.6rem; /* Adjust padding */
  }

  .contact__icon {
    font-size: 1.2rem; /* Smaller icon */
  }

  .contact__title {
    font-size: 0.9rem;
  }

  .contact__subtitle {
    font-size: 0.8rem;
  }
}

/* Medium devices (tablets, 577px to 768px) */
@media screen and (min-width: 577px) and (max-width: 768px) {
  .contact__container {
    flex-direction: column; /* Stack vertically for tablets */
    gap: 2rem;
  }

  .contact__info,
  .contact__form {
    max-width: 100%;
  }

  .contact__inputs {
    grid-template-columns: 1fr 1fr; /* Two columns for form inputs */
    gap: 0.75rem;
  }

  .contact__content:nth-child(3),
  .contact__content:nth-child(4) {
    grid-column: 1 / -1; /* Textareas span full width */
  }
}

/* Large devices (desktops, 769px and up) */
@media screen and (min-width: 769px) {
  .contact__container {
    flex-direction: row; /* Side-by-side layout */
    align-items: flex-start;
  }

  .contact__info {
    flex: 1; /* Take available space */
    max-width: 400px;
  }

  .contact__form {
    flex: 2; /* Form takes more space */
    max-width: 600px;
  }

  .contact__inputs {
    grid-template-columns: 1fr 1fr; /* Two-column layout */
    gap: 1rem;
  }

  .contact__content:nth-child(3),
  .contact__content:nth-child(4) {
    grid-column: 1 / -1; /* Textareas span full width */
  }

  .contact__button {
    margin: 0; /* Reset centering */
  }
}

/* Extra-large devices (1200px and up) */
@media screen and (min-width: 1200px) {
  .contact__container {
    gap: 2rem;
  }

  .contact__inputs {
    gap: 1.5rem;
  }
}
/* ===== FOOTER =====*/
.footer {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}
.footer__title {
  font-size: 2rem;
  margin-bottom: var(--mb-4);
}
.footer__social {
  margin-bottom: var(--mb-4);
}
.footer__icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-2);
}
.footer__copy {
  font-size: var(--smaller-font-size);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (max-width: 320px) {
  .home {
    row-gap: 2rem;
  }
  .home__img {
    width: 200px;
  }
}
@media screen and (min-width: 576px) {
  .home {
    padding: 4rem 0 2rem;
  }
  .home__social {
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }
  .home__social-icon {
    margin-bottom: 0;
    margin-right: var(--mb-4);
  }
  .home__img {
    width: 300px;
    bottom: 25%;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: initial;
  }
  .skills__container {
    grid-template-columns: 0.7fr;
    justify-content: center;
    column-gap: 1rem;
  }
  .work__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    padding-top: 2rem;
  }
  .contact__form {
    width: 360px;
    padding-top: 2rem;
  }
  .contact__container {
    justify-items: center;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .section {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .section-title {
    margin-bottom: var(--mb-6);
  }
  .section-title::after {
    width: 80px;
    top: 3rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list {
    display: flex;
    padding-top: 0;
  }
  .nav__item {
    margin-left: var(--mb-6);
    margin-bottom: 0;
  }
  .nav__toggle {
    display: none;
  }
  .nav__link {
    color: var(--second-color);
  }
  .home {
    padding: 8rem 0 2rem;
  }
  .home__img {
    width: 400px;
    bottom: 10%;
  }
  .about__container {
    padding-top: 2rem;
  }
  .about__img img {
    width: 300px;
  }
  .skills__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    align-items: center;
    text-align: initial;
  }
  .work__container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .home {
    padding: 10rem 0 2rem;
  }
  .home__img {
    width: 450px;
  }
}