/* ============================================
   VARIABLES
============================================ */
:root {
  --accent-color: #922dff;
  --bg-color: #ffffff;
  --text-color: #f5f5f7;
  --card-bg: #1a1a1d;
  --header-bg: rgba(26, 26, 29, 0.75);
  --shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  --transition: 0.3s ease-in-out;
}
/* ============================================
   RESETEO Y BASE
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* ============================================
   HEADER
============================================ */
header {
  position: static;
  top: 0;
  z-index: 10;
  padding: 1rem 2rem;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 900;
  font-size: 1.6rem;
}

.accent {
  color: var(--accent-color);
}

.navbar {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-color);
}

#theme-toggle {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================
   SECCIÓN PROFESIONAL + PERSONAL (DIAGONAL)
============================================ */
.about-duo {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  overflow: hidden;
}

.about-duo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -10deg,
      #E6D6FF 0%,
      #E6D6FF 50%,
    var(--accent-color) 50%,
    var(--accent-color) 100%
  );
  z-index: 0;
}

.about-duo-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-block {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.9s ease-out;
}

.about-duo.reveal-active .about-block {
  opacity: 1;
  transform: translateY(0);
}

.about-block h2 {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  color: white;
  text-align: center;
}

.about-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.about-photo {
  width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Profesional → foto izquierda */
.about-pro .about-content {
  flex-direction: row;
}

/* Personal → foto derecha */
.about-personal .about-content {
  flex-direction: row-reverse;
}

/* Panel Profesional */
.about-pro {
  background: #F2A776;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* Panel Personal */
.about-personal {
  background: rgba(146, 45, 255, 0.85);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.about-block .about-text {
  color: black;
  font-weight: 500;
}

/* ============================================
   SKILLS — DISEÑO HORIZONTAL
============================================ */
.about-skills {
  background: #e6d6ff;
  padding: 6rem 0;
  width: 100%;
  position: relative;
}

.about-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

.about-skills h2 {
  color: #011627;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.skills-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
}

.skills-block {
  background: rgba(255,255,255,0.3);
  padding: 1.5rem;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  color: black;
}

.skills-block h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: black;
}

.skill-list {
  list-style: none;
}

.skill-list li {
  margin-bottom: 1rem;
  font-weight: 600;
  color: black;
}

.skill-bar {
  width: 100%;
  height: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
}

.skill-bar div {
  height: 100%;
  background: var(--accent-color);
  width: var(--lvl);
  transition: width 1s ease-out;
}

/* VIDEO */
.skills-video {
  width: 380px;
  margin-top: 80px;
  padding: 0;
  background: none;
}

.skills-video video {
  width: 100%;
  border-radius: 20px;
  box-shadow: none;
}

.video-note {
  text-align: center;
  color: white;
  opacity: 0.8;
  font-size: 0.85rem;
}

/* ============================================
   TIMELINE RPG — CON EXPANSIÓN ANIMADA
============================================ */
.timeline-section {
  background: var(--accent-color);
  padding: 6rem 0;
}

.timeline-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  text-align: center;
}

.timeline-section h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
}
.timeline-card h3 {
  color: var(--accent-color) !important;
}
.timeline-card p {
  color: #000 !important;
}

/* Línea */
.timeline-bar {
  width: 100%;
  height: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  position: relative;
  margin-bottom: 4rem;
}

/* Puntos */
.timeline-point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
  background-color: white;
}

.timeline-point:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.tl-icon {
  color: #011627;
  font-size: 1.2rem;
}

/* Posiciones */
.timeline-point:nth-child(1) { left: 0%; }
.timeline-point:nth-child(2) { left: 25%; }
.timeline-point:nth-child(3) { left: 50%; }
.timeline-point:nth-child(4) { left: 75%; }
.timeline-point:nth-child(5) { left: 100%; }

/* Wrapper animado */
.timeline-card-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  width: 100%;
}

.timeline-card-wrapper.active {
  max-height: 800px;
}

/* Tarjeta */
.timeline-card {
  margin: 3rem auto 0;
  width: 400px;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.timeline-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Carrusel */
.tl-carousel {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.tl-slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s;
}

.tl-slides img {
  width: 100%;
  object-fit: cover;
}

.tl-prev, .tl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.7rem;
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
}

.tl-prev { left: 6px; }
.tl-next { right: 6px; }

.tl-level {
  color: var(--accent-color);
  margin-top: 1rem;
  font-weight: bold;
}

/* ============================================
   PROYECTOS
============================================ */
.projects {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.projects h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

#projects,
#projects h2,
#projects h3,
#projects h4,
#projects p,
#projects a {
    color: #011627;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 2rem;
}

.card .info {
  flex: 1;
}

.media.slider {
  position: relative;
  width: 300px;
  overflow: hidden;
}

.media.slider .slides {
  display: flex;
  transition: transform 0.4s;
}

.media.slider img,
.media.slider video {
  width: 300px;
  border-radius: 10px;
}

.media.slider button {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  padding: 0.4rem 0.7rem;
  border-radius: 50%;
  cursor: pointer;
}

/* ============================================
   FOOTER
============================================ */
footer {
  text-align: center;
  padding: 2rem 0;
  opacity: 0.9;
  --bg-color: #000000;
  background: var(--bg-color);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .about-duo-inner {
    grid-template-columns: 1fr;
  }

  .about-duo::before {
    background: linear-gradient(
      180deg,
      #E6D6FF 0%,
      #E6D6FF 50%,
      var(--accent-color) 50%,
      var(--accent-color) 100%
    );
  }

  .about-content {
    flex-direction: column !important;
    text-align: center;
  }

  .skills-row {
    flex-direction: column;
    align-items: center;
  }

  .skills-video {
    width: 90%;
  }

  .timeline-card {
    width: 95%;
  }
}

/* Punto activo con brillo RPG */
.timeline-point.active {
  box-shadow: 0 0 18px 6px #F2A776;
  animation: glowPulse 1.8s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 12px 4px rgba(146, 45, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(146, 45, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 12px 4px rgba(146, 45, 255, 0.6);
  }
}

/* Animación de aparición genérica */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.tl-prev,
.tl-next {
  z-index: 10 !important;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: white;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ============================================
   PROYECTOS — ESTILO MODERNO Y DINÁMICO
============================================ */

.projects-section {
  background: #F2A776; /* Violeta más oscuro */
  padding: 6rem 0;
}

.projects-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.projects-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

/* TRES COLUMNAS */
.projects-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.project-column {
  width: 300px;
  text-align: center;
}

.project-column h3 {
  margin-bottom: 1rem;
  color: #fff;
}

/* CARRUSEL */
.project-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(3px);
}

.project-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

/* Tarjetas */
.project-card {
  min-width: 100%;
  padding: 1rem;
  text-align: center;
}

.project-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.project-card h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

/* Flechas */
.proj-prev,
.proj-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 0.3rem 0.7rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.proj-prev { left: 6px; }
.proj-next { right: 6px; }

.project-card video {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

/* ============================================
   TARJETAS FLIP (PROYECTOS)
============================================ */

.flip-card {
  perspective: 1200px;
  width: 100%;
  height: 240px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT y BACK */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* FRONT */
.flip-front img,
.flip-front video {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

/* BACK */
.flip-back {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  transform: rotateY(180deg);
  text-align: center;
}

.proj-btn {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.25s;
}

.proj-btn:hover {
  background: #7a24d6;
}

/* BOTÓN GITHUB ESPECIAL */
.github-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #000000;
  color: white !important;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.25s ease;
}

.pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #e43c3c;
  color: white !important;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.25s ease;
}

.pdf-btn img {
  width: 22px;      /* icono mini pero visible */
  height: auto;     /* mantiene proporción real */
  display: block;   /* evita recortes y problemas de line-height */
  border-radius: 0 !important;
}


.pdf-btn:hover {
  background: #c62828; /* rojo más oscuro */
  transform: translateY(-2px);
}

.github-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1); /* garantiza el blanco */
  border-radius: 0 !important;
}

.github-btn:hover {
  background: #222222;
  transform: translateY(-2px);
}

/* ============================================
   CONTACTO
============================================ */
.contact-inner {
  max-width: 800px;
  margin: auto;
  padding: 0 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: white;
}

/* ICONOS */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
}

.contact-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.contact-icon:hover {
  background: #222;
  transform: translateY(-4px);
}

/* FORMULARIO */
.contact-form {
  background: rgba(255,255,255,0.15);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  text-align: left;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  font-weight: 600;
  color: white;
  display: block;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.send-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.send-btn:hover {
  background: #7a24d6;
  transform: translateY(-3px);
}

/* Botón de LinkedIn */
.contact-icon.linkedin {
  background: #0A66C2; /* Azul oficial LinkedIn */
}

.contact-icon.linkedin:hover {
  background: #084a8f;
}

.contact-icon.linkedin img {
  width: 28px;  
  filter: none !important;
}

/* ============================
   FORMULARIO DE CONTACTO
============================ */

.contact-section {
  padding: 5rem 0;
  backdrop-filter: blur(6px);
  background: #E6D6FF;
}

.contact-inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* GRUPOS */
.form-group {
  text-align: left;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #222;
}

/* INPUTS BONITOS */
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(146, 45, 255, 0.4);
}

/* BOTÓN */
.send-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.send-btn:hover {
  background: #7a24d6;
  transform: translateY(-2px);
}

.send-btn:active {
  transform: translateY(0);
}


/* ============================
   POPUP DE ÉXITO
============================ */

.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  z-index: 9999;
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.success-popup h3 {
  margin-bottom: 0.8rem;
  color: var(--accent-color);
}

.success-popup p {
  opacity: 0.75;
}

.success-popup button {
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  background: var(--accent-color);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.success-popup button:hover {
  background: #7a24d6;
}

/* ============================
   POPUP DE ÉXITO
============================ */

.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  z-index: 9999;
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.success-popup h3 {
  margin-bottom: 0.8rem;
  color: var(--accent-color);
}

.success-popup p {
  opacity: 0.75;
}

.success-popup button {
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  background: var(--accent-color);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.success-popup button:hover {
  background: #7a24d6;
}

/* ===============================
   RESPONSIVE PARA PROYECTOS
=============================== */

@media (max-width: 900px) {

  /* Convertir las 3 columnas en una vertical */
  .projects-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* Ancho adaptable */
  .project-column {
    width: 90%;
    max-width: 380px;
  }

  /* Carrusel ajustado al contenido */
  .project-carousel {
    width: 100%;
    height: auto;
    padding-bottom: 1rem;
  }

  /* Tarjeta responsive */
  .project-card {
    min-width: 100%;
    padding: 0.5rem;
  }

  /* Imagenes/videos adaptados */
  .project-card img,
  .project-card video {
    height: auto;
    max-height: 180px;
    object-fit: cover;
  }

  /* Flechas más pequeñas */
  .proj-prev,
  .proj-next {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  /* Mejor espaciado */
  h3 {
    margin-bottom: 0.8rem;
  }
}

/* ===============================================
   🔥 RESPONSIVE GLOBAL — Ajustes finales
================================================ */

/* 1. Sección Dúo en móvil: evitar desbordes */
@media (max-width: 900px) {

  .about-photo {
    width: 160px;
  }

  .about-content {
    gap: 1rem;
  }

  .about-block {
    padding: 1.5rem !important;
  }

  .about-duo-inner {
    padding: 0 1rem;
  }
}

/* 2. Skills: vídeo y tarjetas alineadas en móvil */
@media (max-width: 900px) {

  .skills-row {
    gap: 1.5rem;
  }

  .skills-video {
    margin-top: 0;
    width: 95% !important;
  }

  .skills-video video {
    border-radius: 12px !important;
  }
}

/* 3. Timeline — evitar que los puntos se salgan del eje */
@media (max-width: 600px) {
  .tl-icon {
    font-size: 1rem;
  }

  .timeline-point:nth-child(1) { left: 15%; }
  .timeline-point:nth-child(2) { left: 35%; }
  .timeline-point:nth-child(3) { left: 55%; }
  .timeline-point:nth-child(4) { left: 75%; }
  .timeline-point:nth-child(5) { left: 95%; }

  .timeline-card {
    width: 90% !important;
  }
}

/* 4. Presentaciones / proyectos — evitar desbordes laterales */
@media (max-width: 900px) {
  .project-card img,
  .project-card video {
    max-height: 160px;
    border-radius: 10px !important;
  }
}

/* 5. Formulario de contacto — evitar zoom raro en móvil */
@media (max-width: 600px) {

  .contact-inner {
    padding: 0 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 0.95rem;
    padding: 0.7rem;
  }

  .send-btn {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

/* ===============================================
   🔥 HEADER RESPONSIVE
================================================ */
@media (max-width: 900px) {

  header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    text-align: center;
  }

  header h1 {
    font-size: 1.6rem;
  }

  .navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap; /* permite que los enlaces bajen si no caben */
  }

  .nav-link {
    font-size: 1rem;
  }
}

/* Ajuste para móviles muy pequeños */
@media (max-width: 480px) {

  header h1 {
    font-size: 1.4rem;
  }

  .navbar {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}
