/** 
 * NIKHIL NAIR 2026
 * Noir-Space, Pixel Typography Heavy, Red Accents
 */

:root {
  /* Colors */
  --bg-color: #030303;
  --text-main: #ffffff;
  --text-dim: #888888;
  --accent-red: #ff003c;
  --panel-bg: rgba(20, 20, 20, 0.4);
  --border-dim: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-pixel: 'Press Start 2P', monospace;
  --font-body: 'Outfit', sans-serif;
  
  /* Layout */
  --hud-padding: 30px;
}

::selection {
  background: var(--accent-red);
  color: var(--text-main);
}
::-moz-selection {
  background: var(--accent-red);
  color: var(--text-main);
}

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

body.space-theme {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  /* Add vignette edge glow */
  box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-left: 1px dotted var(--border-dim);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-red);
}

/* -------------------------
 * UTILS & TYPOGRAPHY
 * ------------------------- */
.pixel-font { font-family: var(--font-pixel); }

.red-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}
.red-link:hover {
  color: var(--accent-red);
  text-shadow: 0 0 10px rgba(255,0,60,0.8);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* -------------------------
 * NOISE & CANVAS BACKGROUND
 * ------------------------- */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scanlines for CRT life */
.scanlines {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 999;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
  background-size: 100% 4px;
  opacity: 0.4;
}

#canvas-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -1;
  background: var(--bg-color);
}

/* TEXT EDITOR CURSOR EFFECT */
.typing-text {
  position: relative;
  display: inline-block;
}
.typing-text::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.9em;
  background-color: var(--accent-red);
  margin-left: 10px;
  vertical-align: baseline;
  animation: cursor-blink 1s step-start infinite;
  /* Make hovering over the text pause the blink so it feels interactive */
}
.typing-text:hover::after {
  opacity: 1;
  animation: none;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}


/* -------------------------
 * HUD LAYOUT
 * -------------------------*/
.hud-header {
  position: fixed;
  top: var(--hud-padding);
  left: var(--hud-padding);
  right: var(--hud-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: none; /* Let clicks pass through empty areas */
}

.hud-logo {
  font-size: 1.5rem;
  font-weight: bold;
  pointer-events: auto;
  letter-spacing: 2px;
  color: var(--accent-red);
  text-shadow: 0 0 10px rgba(255,0,60,0.8);
  animation: pulseLogo 3s infinite;
}
@keyframes pulseLogo {
  0%, 100% { text-shadow: 0 0 5px rgba(255,0,60,0.4); }
  50% { text-shadow: 0 0 15px rgba(255,0,60,1); }
}

.hud-nav {
  display: flex;
  gap: 20px;
  pointer-events: auto;
  font-family: var(--font-pixel);
  font-size: 0.7rem;
}

.nav-link {
  color: var(--text-dim);
  transition: all 0.3s;
  padding: 5px;
  text-transform: uppercase;
  position: relative;
}
.nav-link::before {
  content: '>';
  position: absolute;
  left: -15px;
  opacity: 0;
  color: var(--accent-red);
  transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}
.nav-link.active::before {
  opacity: 1;
}
.nav-link.active {
  color: var(--accent-red);
  text-shadow: 0 0 8px rgba(255,0,60,0.8);
}

.hud-footer {
  position: fixed;
  bottom: var(--hud-padding);
  left: var(--hud-padding);
  right: var(--hud-padding);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 100;
  font-size: 0.6rem;
  pointer-events: none;
}

.hud-footer .socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: auto;
}
.hud-footer .socials a {
  color: var(--text-dim);
  transition: 0.3s;
  text-decoration: none;
}
.hud-footer .socials a:hover {
  color: var(--text-main);
  text-shadow: 0 0 5px var(--accent-red);
}

.resume-glow {
  color: var(--text-main) !important;
  text-shadow: 0 0 2px var(--accent-red);
  animation: resumePulse 3s infinite alternate ease-in-out;
}

@keyframes resumePulse {
  0% { text-shadow: 0 0 1px var(--accent-red); }
  100% { text-shadow: 0 0 6px var(--accent-red); }
}

.copyright { color: var(--text-dim); pointer-events: auto;}

/* -------------------------
 * MAIN COLUMN
 * ------------------------- */
.single-column-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 150px 20px 200px;
  display: flex;
  flex-direction: column;
  gap: 20vh;
}

.scroll-reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }

.section-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 50px;
  text-align: left; /* Shifted from center for that agency HUD look */
  letter-spacing: 2px;
  border-bottom: 2px solid var(--border-dim);
  padding-bottom: 10px;
  display: inline-block;
}

/* -------------------------
 * HERO SECTION
 * ------------------------- */
.hero-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 450px;
}

/* Multi-Terminal Hero Graphic */
.hero-graphic.multi-term {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 480px;
}

.term-window {
  position: absolute;
  background: var(--panel-bg);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, z-index 0.3s ease;
}
.term-window:hover {
  z-index: 10 !important;
  transform: scale(1.02);
}

.term-header {
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border-dim);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.term-btn { width: 10px; height: 10px; border-radius: 50%; }
.term-btn.red { background: #ff5f56; }
.term-btn.yellow { background: #ffbd2e; }
.term-btn.green { background: #27c93f; }
.term-title {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--text-dim);
  margin-left: auto;
}
.term-body {
  padding: 15px;
  font-size: 0.6rem;
  color: var(--text-main);
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

/* Specific Windows */
.term-sys { top: -20px; left: 160px; z-index: 1; width: 300px; }
.term-sys .term-body { height: 120px; color: var(--text-dim); }

.term-compile { top: 80px; left: 40px; z-index: 2; width: 320px; }
.term-compile .term-body { height: 140px; color: var(--text-dim); }

.term-arduino { top: 200px; left: 240px; z-index: 3; width: 280px; }
.term-arduino .term-body { height: 120px; color: var(--text-dim); }

.term-matrix { top: 320px; left: 20px; z-index: 4; width: 300px; }
.term-matrix .term-body { height: 110px; color: var(--text-dim); }

.term-ai { top: 450px; left: 200px; z-index: 5; width: 340px; }
.term-ai .term-body { height: 130px; color: var(--text-dim); }

.term-pill { top: 120px; left: 110px; z-index: 99; width: 340px; }
.term-pill .term-body { min-height: 250px; display:flex; justify-content:center; align-items:center; }

.sys-stream, .compile-stream, .arduino-stream, .matrix-stream, .ai-stream {
  margin-top: 10px;
  max-height: 80px;
  overflow: hidden;
  color: inherit; /* will use body's color */
}

/* Hover Tooltips */
.tooltip-trigger {
  position: relative;
  display: inline;
  cursor: pointer;
  border-bottom: 1px dotted var(--accent-red);
  color: var(--text-main);
  font-weight: bold;
}

.tooltip-window.term-window {
  position: absolute;
  top: auto;
  right: auto;
  bottom: calc(100% + 5px); /* 5px gap above text */
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  width: max-content;
  max-width: 250px;
  z-index: 1000;
  transition: opacity 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s, 
              visibility 0.2s 2s, 
              transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s;
  pointer-events: none;
}
/* This invisible element extends down 20px from the bottom of the tooltip, bridging the 5px gap to the text */
.tooltip-window.term-window::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
.tooltip-window.term-window:hover,
.tooltip-trigger:hover .tooltip-window.term-window {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0s; /* Overrides the 2s delay so it opens instantly */
}
.tooltip-window .term-body {
  padding: 10px;
  text-align: left;
  line-height: 1.4;
  white-space: nowrap;
}
.tooltip-img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border: 1px solid var(--border-dim);
  filter: grayscale(100%) contrast(1.2);
  margin-top: 5px;
  display: block;
}

#oneko {
  transform: scale(1.5);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
}

/* Tilted ASCII Pill Widget */
.ascii-pill-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.ascii-pill {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: spin-tilt-pill 4s linear infinite;
}

@keyframes spin-tilt-pill {
  0% { transform: rotate(-15deg) rotateY(0deg); }
  100% { transform: rotate(-15deg) rotateY(360deg); }
}

.ascii-pill.open {
  animation: none;
  transform: rotate(0deg) rotateY(0deg) scale(1.1);
}

.pill-half { margin: 0; padding: 0; }
.pill-half pre { margin: 0; padding: 0; text-shadow: 0 0 8px currentColor; }
.top-half { color: var(--accent-red); }
.bottom-half { color: var(--text-main); }

.pill-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  font-size: 0.6rem;
  color: var(--text-dim);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pill-content ul {
  list-style: none;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pill-content li {
  color: var(--text-main);
  text-shadow: 0 0 5px rgba(255,255,255,0.4);
}
.pill-content li:nth-child(even) {
  color: var(--accent-red);
  text-shadow: 0 0 5px rgba(255,0,60,0.4);
}

.ascii-pill.open .pill-content {
  max-height: 200px;
  opacity: 1;
}

.hero-subtitle {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  border-left: 2px solid var(--accent-red);
  padding-left: 10px;
}

.hero-title {
  font-size:clamp(3rem, 6vw, 6rem);
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.1;
  /* better 3d glitch effect */
  color: var(--text-main);
}
.hero-title:hover {
  transform: translateX(10px);
}

.hero-desc {
  max-width: 600px;
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-desc p { margin-bottom: 20px; }
.hero-desc b { color: var(--text-main); }

.hero-status {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  padding: 10px 20px;
  border: 1px dotted var(--border-dim);
  background: rgba(255,0,60,0.1);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  animation: blink 1.5s infinite alternate;
}
@keyframes blink { to { opacity: 0.3; } }

/* -------------------------
 * STATS & BENTO
 * ------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.bento-card {
  border-left: 2px solid var(--border-dim);
  padding-left: 30px;
  position: relative;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0; left: -4px;
  width: 6px; height: 6px;
  background: var(--text-main);
}

.bento-title {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.timeline-list { display: flex; flex-direction: column; gap: 30px; }
.timeline-item-title { font-size: 1.2rem; margin-bottom: 5px; }
.time-badge { font-size: 0.8rem; color: var(--text-dim); display: block; margin-bottom: 10px; }
.timeline-text { color: var(--text-dim); font-size: 1rem; }

/* Skills */
.skills-list { display: flex; flex-direction: column; gap: 20px; }
.skills-item .title-wrapper {
  display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 5px;
}
.skill-progress-bg {
  width: 100%; height: 4px; background: rgba(255,255,255,0.1);
}
.skill-progress-fill.red-bar {
  height: 100%; background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
}

/* -------------------------
 * PROJECT GRID
 * ------------------------- */
.filter-list {
  display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; font-size: 0.6rem;
}
.filter-btn {
  background: none; border: 1px dotted var(--border-dim); color: var(--text-dim);
  padding: 8px 15px; cursor: pointer; transition: 0.3s; font-family: var(--font-pixel);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--accent-red); color: var(--accent-red);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.quest-card {
  display: block;
  border: 1px solid var(--border-dim);
  padding: 15px;
  background: var(--panel-bg);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.quest-card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255,0,60,0.1);
}

.pixel-image-wrapper {
  width: 100%; height: 200px;
  overflow: hidden; margin-bottom: 15px;
  border-bottom: 1px solid var(--border-dim);
}
.pixel-image-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: 0.5s;
}
.quest-card:hover .pixel-image-wrapper img {
  filter: grayscale(0%) contrast(1);
}

.project-title { font-size: 1.2rem; margin-bottom: 5px; color: var(--text-main); }
.project-category { font-size: 0.8rem; color: var(--accent-red); font-family: var(--font-pixel); font-size: 0.5rem; letter-spacing: 1px;}

.project-item.hide { display: none; }
.blog-post-item.hide { display: none; }


/* -------------------------
 * BLOGS & LOGS
 * ------------------------- */
.blog-posts-list { display: flex; flex-direction: column; gap: 30px; }
.blog-content { margin-top: 15px; }
.blog-meta { display: flex; gap: 10px; font-size: 0.7rem; color: var(--text-dim); margin-bottom: 10px; font-family: var(--font-pixel); }
.blog-item-title { font-size: 1.3rem; color: var(--text-main); }
.blog-text { color: var(--text-dim); font-size: 0.9rem; margin-top: 10px; }

/* -------------------------
 * CONTACT FORM
 * ------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.pixel-border-map {
  border: 1px solid var(--border-dim);
  filter: grayscale(100%) invert(100%); /* Make map dark and grayscale */
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.input-wrapper { display: flex; gap: 20px; }
.form-input {
  width: 100%; background: transparent; border: 1px solid var(--border-dim);
  color: var(--text-main); padding: 15px; font-size: 0.7rem;
}
.form-input:focus { outline: none; border-color: var(--accent-red); }
textarea.form-input { min-height: 150px; resize: vertical; }

.form-btn {
  background: var(--text-main); color: var(--bg-color); border: none;
  padding: 15px; font-size: 0.8rem; cursor: pointer; transition: 0.3s; align-self: flex-start;
}
.form-btn:hover:not(:disabled) {
  background: var(--accent-red); color: white;
}
.form-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* -------------------------
 * RESPONSIVENESS
 * ------------------------- */
@media (max-width: 768px) {
  :root {
    --hud-padding: 10px;
  }

  body.space-theme {
    overflow-x: hidden;
  }

  .hud-header {
    position: absolute;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: auto;
  }

  .hud-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.55rem;
    padding: 0 10px;
    width: 100%;
  }

  .hud-footer {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 10px;
    margin-top: 50px;
    pointer-events: auto;
  }

  .hud-footer .socials {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .single-column-layout {
    padding: 130px 10px 100px;
    gap: 5vh;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: block; /* Ensure it takes width to prevent overflow */
  }

  /* Hero Section Mobile Fixes */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
    width: 100%;
    word-break: break-all;
  }

  .hero-desc {
    font-size: 0.95rem;
    padding: 0 5px;
    line-height: 1.6;
    width: 100%;
    overflow-wrap: break-word;
  }

  .hero-section {
    height: auto !important;
    min-height: unset !important;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
  }

  /* Split title into two lines on mobile and force break */
  .mobile-break {
    display: block !important;
    margin-top: 5px;
    white-space: nowrap !important; /* Prevents "NAI" break */
    width: 100%;
  }

  /* Multi-line typing cursor fix - specifically for concentrated span */
  .typing-text {
    display: inline-block !important; /* Changed to inline-block for better cursor alignment */
  }
  .typing-text::after {
    display: inline-block;
    vertical-align: baseline;
    margin-left: 5px; /* Tighter next to R */
  }

  .hero-desc {
    font-size: 0.95rem;
    padding: 0 10px;
    line-height: 1.6;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    text-align: center;
  }

  /* Centered Terminal Stack on Mobile */
  .hero-graphic.multi-term {
    position: relative;
    height: 1200px;
    width: 100%;
    margin-top: 40px;
    display: block;
    overflow: visible;
  }

  .term-window {
    position: absolute !important;
    scale: 0.65;
    transform-origin: center;
    transition: all 0.3s ease;
    left: 50% !important;
    transform: translateX(-50%) !important; /* Forces centering without interfering with rotations inside */
    pointer-events: auto;
    filter: blur(1px) brightness(0.7); /* Background effect for others */
  }

  /* Specific Centered & Staggered Tops */
  .term-sys { top: 30px; transform: translateX(-50%) rotate(-1deg) !important; z-index: 1; width: 280px; }
  .term-compile { top: 90px; transform: translateX(-48%) rotate(2deg) !important; z-index: 2; width: 300px; }
  .term-arduino { top: 260px; transform: translateX(-52%) rotate(-3deg) !important; z-index: 3; width: 260px; }
  .term-matrix { top: 430px; transform: translateX(-47%) rotate(1deg) !important; z-index: 4; width: 280px; }
  .term-ai { top: 620px; transform: translateX(-53%) rotate(-2deg) !important; z-index: 5; width: 300px; }
  
  .term-pill { 
    top: 150px; 
    transform: translateX(-50%) !important; 
    z-index: 999; 
    width: 320px; 
    filter: none; 
    scale: 0.72; 
  }

  .term-body {
    height: auto !important;
    min-height: 80px;
    font-size: 0.55rem;
    line-height: 1.4;
    padding: 10px;
  }

  .term-pill .term-body {
    min-height: 250px;
  }

  /* Stats & XP Fixes - RIGID SEPARATION */
  #stats {
    position: relative;
    z-index: 10;
    margin-top: 400px; /* Stronger separation */
    padding-top: 50px;
    background: var(--bg-color); 
  }

  .bento-grid {
    margin-top: 50px;
  }
  
  .timeline-item {
    padding-left: 15px;
  }
  .time-badge {
    position: static;
    margin-bottom: 5px;
    font-size: 0.7rem;
  }

  /* Contact Fixes */
  .input-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-form .form-btn {
    width: 100%;
  }

  /* Bento Grid Adjust */
  .bento-card {
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .nav-link {
    font-size: 0.5rem;
    padding: 2px;
  }
  .nav-link::before {
    display: none;
  }
}
