/* SECCION WHO AM I */

:root {
    --bg-dark: #0a0a0a;
    --text-light: #e0e0e0;
    --text-muted: #999;
    --accent-red: #dc2626;
    --border-color: #dc2626;
}

 @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Barlow:wght@400;600;700&display=swap');

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background: #000;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
  }

  /* ── Split background ── */
  .bg-split {
    position: fixed;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 0;
  }
  .bg-left  { width: 50%; background: #000; }
  .bg-right { width: 50%; background: #000; position: relative; overflow: hidden; }

  #matrix-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
  }

  /* Subtle red glow overlay on right */
  .bg-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(180,0,0,0.18) 0%, transparent 70%);
  }

  /* ── Page layout ── */
  .page {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px 80px;
  }

  /* ── Top bar ── */
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
  }
  .back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: border-color .2s, background .2s;
    text-decoration: none;
  }
  .back-btn:hover { border-color: #c0392b; background: rgba(192,57,43,0.1); }
  .lang-btn {
    background: #111;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    display: flex; align-items: center; gap: 4px;
  }

  
  .eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    letter-spacing: .2em;
    color: #c0392b;
    text-transform: uppercase;
    margin-bottom: 12px;
    
}
  h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -.5px;
    font-family: 'Doctor Glitch', sans-serif;
    font-size: clamp(24px, 5vw, 48px);
    color: #fffbf2;
    z-index: 20;
    letter-spacing: 3px;
    padding: 0 20px;
    text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 0, 0, 0.5),
    0 0 40px rgba(255, 0, 0, 0.7);
    transition: opacity 0.8s ease, filter 0.8s ease;
    pointer-events: none;
    text-align: center;
  }
  .subtitle {
    font-size: 20px;
    font-family: 'Rajdhani', sans-serif;
    color: #e0e0e0;
    margin-bottom: 48px;
  }

  
  .card-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
  }

 
  .col-left {
    background: rgba(10,10,10,0.92);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
  }

  .mini-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 20px 22px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
  }
  .mini-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 25px;
    letter-spacing: .18em;
    color: #e0e0e0;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 0, 0, 0.5),
    0 0 40px rgba(255, 0, 0, 0.7);
    transition: opacity 0.8s ease, filter 0.8s ease;
    pointer-events: none;
  }
  .mini-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .mini-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.4;
  }
  .mini-card li .ico { font-size: 15px; flex-shrink: 0; margin-top: 1px; }


  .col-center {
    background: rgba(5,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    gap: 24px;
    border-right: 1px solid rgba(192,57,43,0.15);
  }

  .avatar-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .avatar-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #c0392b;
    box-shadow: 0 0 14px #c0392b, 0 0 30px rgba(192,57,43,0.4);
    animation: pulse-ring 2s ease-in-out infinite;
  }
  .avatar-ring::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(192,57,43,0.25);
    animation: pulse-ring 2s ease-in-out infinite .4s;
  }
  @keyframes pulse-ring {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.05); }
  }
  .avatar-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;         
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

  .bio-text {
    font-size: 13px;
    color: rgba(255,200,200,0.7);
    text-align: center;
    line-height: 1.65;
    font-size: 15px;
    font-family: 'Rajdhani', sans-serif;
  }

  /* Right column — black with red tones */
  .col-right {
    background: rgba(5,0,0,0.65);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    letter-spacing: .18em;
    color: #c0392b;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(192,57,43,0.6);
  }

  .contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.25);
    border-radius: 8px;
    padding: 13px 16px;
    color: rgba(255,200,200,0.85);
    font-size: 13px;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, border-color .2s, box-shadow .2s;
    
  }
  .contact-btn:hover {
    background: rgba(192,57,43,0.18);
    border-color: rgba(192,57,43,0.55);
    box-shadow: 0 0 12px rgba(192,57,43,0.2);
  }
  .contact-btn .ico { font-size: 16px; }

  .divider-text {
    font-size: 11px;
    color: rgba(255,150,150,0.4);
    font-family: 'Share Tech Mono', monospace;
    margin-top: 4px;
  }

  .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #c0392b;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    box-shadow: 0 0 18px rgba(192,57,43,0.4);
  }
  .cta-btn:hover {
    background: #a93226;
    box-shadow: 0 0 28px rgba(192,57,43,0.65);
  }

  
  .scanline {
    position: fixed;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 2;
  }

  @media (max-width: 768px) {
    .card-main { grid-template-columns: 1fr; }
    .col-left, .col-center, .col-right { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .page { padding: 24px 20px 60px; }
  }
.ico {
    height:22px;
    width: 22px;
}
.ico-1 {
    height:24px;
    width: 24px;
}
.ico-2 {
    height:26px;
    width: 26px;
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.lang-btn {
    background: rgba(17, 17, 17, 0.8);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover,
.lang-btn:focus {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--accent-red);
    outline: none;
}

.lang-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    text-align: left;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover,
.lang-option:focus {
    background: rgba(220, 38, 38, 0.2);
    color: var(--accent-red);
    outline: none;
}
.flag-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
footer {
    background: var(--accent-red);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}