/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

@font-face {
  font-family: 'Alumni Sans Pinstripe';
  src: url('./fonts/AlumniSansPinstripe-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lugrasimo';
  src: url('./fonts/Lugrasimo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-weight: 400;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #0b0c1a;
}

/* Lugrasimo font class */
.lugrasimo-font {
  font-family: 'Lugrasimo', cursive;
}

/* Montserrat font class */
.montserrat-font {
  font-family: 'Montserrat', sans-serif;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #ffffff;
  color: #0b0c1a;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Video background - Legacy Implementation */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: #27271B;
  background-image: url('./images/Inspiracion-y-creatividad-bg22-scaled.webp');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

#yt-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 26, 0.5);
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 12, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #e33378, #e8e944);
  border-radius: 50%;
  display: inline-block;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.brand-name:hover,
.brand-name:focus {
  color: #4ecdc4;
}

/* Global Link Styles */
a {
  color: #e8e944;
  /* Dark yellow from logo */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Exclude brand name and nav icons from the arrow style */
main a:not(.brand-name):not([class*="btn"])::after,
.footer-social a::after {
  content: " ↗";
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

main a:not(.brand-name):not([class*="btn"]):hover::after,
.footer-social a:hover::after {
  transform: translate(2px, -2px);
}

a:hover,
a:focus {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(232, 233, 68, 0.6);
}

.social-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.social-nav a {
  display: block;
  transition: transform 0.3s ease;
}

.social-nav a:hover,
.social-nav a:focus {
  transform: scale(1.1);
  color: inherit;
  /* Reset color change for icons */
  text-shadow: none;
}

/* Reset for brand name */
.brand-name {
  display: inline;
}

.brand-name:hover,
.brand-name:focus {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(232, 233, 68, 0.6);
}

/* Main content */
.site-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 2rem;
  text-align: center;
}

/* Hero section */
.hero {
  max-width: 800px;
  margin-bottom: 4rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
}

.title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

/* Text-stroke para h2.title */
h2.title .word1 {
  -webkit-text-stroke: 2px #e33378;
  paint-order: stroke fill;
}

h2.title .word3 {
  -webkit-text-stroke: 2px #e8e944;
  paint-order: stroke fill;
}

.word1 {
  color: #ff6b6b;
}

.word2 {
  color: #ffffff;
}

.word3 {
  color: #e8e944;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
  max-width: 600px;
  font-weight: 400;
}

.player-card {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.platforms {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.platforms li {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.platforms li:hover,
.platforms li:focus-within {
  opacity: 1;
}

/* About section */
.about {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e8e944;
}

.about p {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/* Albums section */
.albums {
  max-width: 800px;
  margin-bottom: 4rem;
}

.albums h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff6b6b;
}

.album {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.album h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.album-video {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
}

.album-cover {
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.album p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* Footer */
.site-footer {
  padding: 2rem;
  text-align: center;
  background: rgba(11, 12, 26, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  color: #e8e944;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .social-nav ul {
    gap: 0.5rem;
  }

  .site-main {
    padding: 5rem 1rem 1rem;
  }

  .title {
    font-size: clamp(2.5rem, 8vw, 3rem);
  }

  .tagline {
    font-size: 1rem;
  }

  .player-card iframe {
    height: 280px;
  }

  .platforms {
    gap: 0.5rem;
  }

  .platforms img {
    width: 24px;
    height: 24px;
  }

  .about,
  .albums {
    margin-bottom: 2rem;
  }

  .album {
    padding: 1.5rem;
  }

  .footer-social {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .title {
    flex-direction: column;
    gap: 0.25rem;
  }

  .platforms {
    justify-content: space-around;
  }

  .footer-social {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Print styles */
@media print {

  .video-bg,
  .video-overlay,
  .social-nav,
  .platforms {
    display: none;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .site-header {
    position: static;
    background: transparent;
    border: none;
  }

  .brand-name {
    color: #000000;
  }

  .title .word1,
  .title .word2,
  .title .word3 {
    color: #000000;
  }

  .about h2,
  .albums h2 {
    color: #000000;
  }

  .album {
    background: #f5f5f5;
    border: 1px solid #cccccc;
  }

}

.albums h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff6b6b;
}

.album {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.album h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.album-cover {
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.album p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* Footer */
.site-footer {
  padding: 2rem;
  text-align: center;
  background: rgba(11, 12, 26, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  color: #e8e944;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .social-nav ul {
    gap: 0.5rem;
  }

  .site-main {
    padding: 5rem 1rem 1rem;
  }

  .title {
    font-size: clamp(2.5rem, 8vw, 3rem);
  }

  .tagline {
    font-size: 1rem;
  }

  .player-card iframe {
    height: 280px;
  }

  .platforms {
    gap: 0.5rem;
  }

  .platforms img {
    width: 24px;
    height: 24px;
  }

  .about,
  .albums {
    margin-bottom: 2rem;
  }

  .album {
    padding: 1.5rem;
  }

  .footer-social {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .title {
    flex-direction: column;
    gap: 0.25rem;
  }

  .platforms {
    justify-content: space-around;
  }

  .footer-social {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Print styles */
@media print {

  .video-bg,
  .video-overlay,
  .social-nav,
  .platforms {
    display: none;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .site-header {
    position: static;
    background: transparent;
    border: none;
  }

  .brand-name {
    color: #000000;
  }

  .title .word1,
  .title .word2,
  .title .word3 {
    color: #000000;
  }

  .about h2,
  .albums h2 {
    color: #000000;
  }

  .album {
    background: #f5f5f5;
    border: 1px solid #cccccc;
  }

  .site-footer {
    background: transparent;
    border: none;
  }

  .footer-social a {
    color: #000000;
  }
}

/* Entrance Animation Styles */
:root {
  /* Tiempos y configuracion de la animacion de entrada */
  --intro-duration: 4s;
  /* Duracion total de la animacion */
  --intro-zoom-start: 1;
  /* Escala inicial (1 = tamaño normal/maximizado) */
  --intro-zoom-end: 1.2;
  /* Escala final (1.2 = 20% mas grande, efecto de acercarse) */
  --intro-exit-start: 50%;
  /* Momento en que empieza a irse (porcentaje del tiempo total) */
}

#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #0b0c1a;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: intro-sequence var(--intro-duration) ease-out forwards;
  pointer-events: none;
}

.intro-content {
  width: 100%;
  height: 100%;
  clip-path: circle(150% at center);
}

.intro-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  transform-origin: bottom center;
  animation: logo-zoom var(--intro-duration) ease-out forwards;
}

@keyframes intro-sequence {
  0% {
    background-color: #0b0c1a;
    clip-path: circle(150% at center);
  }

  /* Mantiene el fondo solido hasta el punto de salida */
  50% {
    background-color: #0b0c1a;
    clip-path: circle(150% at center);
  }

  /* Empieza la transicion de salida (iris wipe) */
  100% {
    background-color: #0b0c1a;
    clip-path: circle(0% at center);
  }
}

@keyframes logo-zoom {
  0% {
    transform: scale(var(--intro-zoom-start));
    opacity: 1;
  }

  100% {
    transform: scale(var(--intro-zoom-end));
    opacity: 1;
  }
}

/* ==========================================
   MOBILE LAYOUT FIXES
   These rules fix horizontal overflow and 
   video background positioning
   ========================================== */

/*  Fix horizontal overflow on mobile */
html {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Responsive footer subscription iframe */
.footer-subscription {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.footer-subscription iframe {
  width: 100%;
  max-width: 100%;
  height: 305px;
}

/* Video background positioned at bottom center */
.video-bg {
  background-position: center bottom !important;
}

#yt-bg {
  position: absolute;
  bottom: 0 !important;
  left: 50%;
  top: auto !important;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translateX(-50%) !important;
  pointer-events: none;
}

/* Additional mobile-specific footer fixes */
@media (max-width: 768px) {
  .footer-subscription {
    padding: 0 0.5rem;
  }

  .footer-subscription iframe {
    height: 450px;
  }
}

/* Page Specific Styles (Nosotros & Afines) */
.page-title {
  font-size: 3rem;
  color: #e8e944;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-weight: bold;
}

/* Afines Page */
.page-afines .video-bg {
  background-image: url('./images/hands-pattern.webp') !important;
  background-repeat: repeat !important;
  background-size: 300px !important;
  background-position: top left !important;
}

.page-afines #yt-bg {
  display: none;
}

.page-afines .video-overlay {
  background: rgba(31, 9, 56, 0.945);
  /* Darker overlay for readability over pattern */
}

.afines-page {
  max-width: 900px;
  width: 100%;
}

.afines-intro {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.afines-intro p {
  color: #ffffff;
  line-height: 1.6;
}

.afines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.collaborator-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s, background 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.collaborator-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.collaborator-card h3 {
  color: #e8e944;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.collab-links a {
  margin-right: 10px;
  font-size: 0.9rem;
  text-decoration: underline;
  color: #e8e944;
}

.collab-rec {
  margin-top: 1rem;
  font-size: 1rem;
  font-style: italic;
  color: #ffffff;
}

/* Nosotros Page */
.page-nosotros .video-bg {
  background-image: url('./images/logo2025-fullresolution.webp') !important;
  background-position: center bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.page-nosotros #yt-bg {
  display: none;
}

.page-nosotros .video-overlay {
  background: rgba(31, 9, 56, 0.9);
  /* High opacity for readability */
}

.nosotros-page {
  max-width: 900px;
  width: 100%;
}

.nosotros-content {
  text-align: left;
}

.nosotros-block {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Montserrat', sans-serif;
}

.nosotros-block p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #ffffff;
}

.nosotros-gallery {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  margin: 2rem 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #e8e944 rgba(255, 255, 255, 0.1);
}

.nosotros-gallery::-webkit-scrollbar {
  height: 8px;
}

.nosotros-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.nosotros-gallery::-webkit-scrollbar-thumb {
  background-color: #e8e944;
  border-radius: 4px;
}

.nosotros-gallery img {
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.nosotros-gallery img:hover {
  transform: scale(1.02);
}

.nosotros-block.phrases h2,
.nosotros-block.join h2 {
  color: #4ecdc4;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.nosotros-block.phrases .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #e8e944;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.nosotros-block.phrases ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.nosotros-block.phrases li {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  color: #e0e0e0;
}

.nosotros-block.join {
  text-align: center;
  background: linear-gradient(135deg, rgba(227, 51, 120, 0.2), rgba(232, 233, 68, 0.1));
}

/* Animation Control Class */
body.no-animation #intro-overlay {
  display: none !important;
}

/* =========================================
   Full Screen Menu (Version 1.0.3 & 1.0.4)
   ========================================= */

.menu-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1001;
  /* Above menu overlay */
  position: relative;
}

.menu-toggle-btn:focus {
  outline: 2px solid #e8e944;
  border-radius: 8px;
}

.menu-label-text {
  color: #ffffff;
  font-size: 0.8rem;
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-label-text.visible {
  opacity: 1;
}

#fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F2B441;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Animation: Grow from top-left (logo position approx) */
  clip-path: circle(0% at 40px 40px);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

/* Adjust clip-path origin based on logo position (padding 2rem + 20px center of 40px logo) */
/* Desktop: padding 1rem 2rem -> left 2rem. Logo center approx 2rem + 20px = 52px */
@media (min-width: 769px) {
  #fullscreen-menu {
    clip-path: circle(0% at 52px 40px);
  }
}

/* Mobile: padding 1rem -> left 1rem. Logo center approx 1rem + 20px = 36px */
@media (max-width: 768px) {
  #fullscreen-menu {
    clip-path: circle(0% at 36px 36px);
  }
}

body.menu-open #fullscreen-menu {
  clip-path: circle(150% at 50px 50px);
  pointer-events: all;
}

.menu-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 4rem;
  color: #151542;
  cursor: pointer;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  line-height: 1;
  padding: 0.5rem;
}

.menu-close-btn:hover,
.menu-close-btn:focus {
  transform: scale(1.1);
  outline: none;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: center;
}

.menu-links li {
  margin-bottom: 1.5rem;
}

.menu-links a {
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-size: 4rem;
  color: #151542;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Override global link styles for menu */
.menu-links a::after {
  content: none !important;
}

.menu-links a:hover,
.menu-links a:focus {
  transform: scale(1.1);
  color: #151542;
  text-shadow: none;
}

.menu-social {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
}

.menu-social img {
  /* Color #151542 is a dark blue. 
       We need to filter the white icons to match this color.
       Filter generator for #151542:
       brightness(0) saturate(100%) invert(8%) sepia(35%) saturate(3863%) hue-rotate(227deg) brightness(92%) contrast(96%)
    */
  filter: brightness(0) saturate(100%) invert(8%) sepia(35%) saturate(3863%) hue-rotate(227deg) brightness(92%) contrast(96%);
}

.menu-social a:hover {
  transform: scale(1.2);
}