/* Custom Properties */
:root {
  --color-black: #0a0a0a;
  --color-dark-gray: #1a1a1a;
  --color-medium-gray: #2a2a2a;
  --color-light-gray: #cccccc;
  --color-white: #ffffff;
  --color-red-dark: #8b0000;
  --color-red: #cc0000;
  --color-red-light: #ff0000;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  --font-pixel: "Press Start 2P", cursive;
  --font-mono: "Space Mono", monospace;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-red: 0 0 5px var(--color-red), 0 0 20px var(--color-red);
  --shadow-red-strong: 0 0 10px var(--color-red), 0 0 30px var(--color-red),
    0 0 50px var(--color-red-dark);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-mono);
  background-color: var(--color-black);
  background-image: linear-gradient(rgba(139, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility Classes */
.pixel-border {
  box-shadow: 0 0 0 2px currentColor, 0 0 0 4px var(--color-black),
    0 0 0 6px currentColor;
}

.pixel-corners {
  clip-path: polygon(
    0 8px,
    8px 8px,
    8px 0,
    calc(100% - 8px) 0,
    calc(100% - 8px) 8px,
    100% 8px,
    100% calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) 100%,
    8px 100%,
    8px calc(100% - 8px),
    0 calc(100% - 8px)
  );
}

/* Animations */
@keyframes glitch {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-2px, 2px);
  }
  94% {
    transform: translate(2px, -2px);
  }
  96% {
    transform: translate(-2px, -2px);
  }
}

@keyframes scan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(204, 0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.glitch {
  position: relative;
  animation: glitch 3s infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

.typing-cursor::after {
  content: "▮";
  animation: blink 1s infinite;
}

/* Scanline Effect */
.scanline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(139, 0, 0, 0.02) 51%
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 9999;
  animation: scan 8s linear infinite;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 2px solid var(--color-red);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-family: var(--font-pixel);
  font-size: 0.875rem;
  color: var(--color-red);
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.navbar-link:hover {
  color: var(--color-red);
}


/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  padding: 0.5rem;
  cursor: pointer;
  font-family: var(--font-pixel);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-dark-gray);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    display: none;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-link {
    padding: 1rem;
    border-bottom: 1px solid var(--color-medium-gray);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-frame {
  width: 320px;
  height: 320px;
  background: linear-gradient(
    135deg,
    var(--color-red-dark),
    var(--color-red-light)
  );
  padding: 2px;
  position: relative;
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-avatar {
  width: 200px;
  height: 200px;
  color: var(--color-red);
  animation: float 3s ease-in-out infinite;
}

.hero-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 4px solid var(--color-red);
  transition: all var(--transition-normal);
}

.hero-image-wrapper:hover .hero-decoration {
  transform: scale(1.1);
}

.hero-decoration-1 {
  top: -1rem;
  right: -1rem;
}

.hero-decoration-2 {
  bottom: -1rem;
  left: -1rem;
  border-color: var(--color-white);
}

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

.hero-greeting {
  font-family: var(--font-mono);
  color: var(--color-red);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-pixel);
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-title-name {
  color: var(--color-red);
}

.hero-title-surname {
  color: var(--color-white);
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--color-light-gray);
  margin-bottom: 1.5rem;
}

.hero-status {
  font-family: var(--font-mono);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-status-bracket {
  color: var(--color-red);
}

.hero-description {
  font-family: var(--font-mono);
  color: var(--color-light-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-location {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-light-gray);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-weight: bold;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  animation: pulse 2s infinite;
  pointer-events: none;
}

.btn-primary:hover {
  background-color: var(--color-red-light);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-image-frame {
    width: 250px;
    height: 250px;
  }

  .hero-cta {
    justify-content: center;
  }
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: 2rem;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.section-title-bracket {
  color: var(--color-red);
}

.section-title-text {
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-mono);
  color: var(--color-red);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.skill-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid var(--color-red);
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-red), transparent);
    animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.skill-card-header {
    font-family: var(--font-pixel);
    font-size: 0.875rem;
    color: var(--color-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.skill-card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--color-red));
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skill-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 3px var(--color-red));
}

.skill-emoji {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px var(--color-red));
}

.skill-name {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-white);
    font-weight: 600;
}

.skill-header-icon {
    width: 24px;
    height: 24px;
    color: var(--color-red);
    filter: drop-shadow(0 0 5px var(--color-red));
}

.skill-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(42, 42, 42, 0.8);
    position: relative;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--color-red);
    width: 0;
    transition: width 1.2s ease-out;
    position: relative;
}

.skill-bar-fill.animated {
    width: var(--skill-level);
}


/* Soft Skills List */
.soft-skills-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.soft-skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(42, 42, 42, 0.3);
    border-left: 2px solid var(--color-red);
    transition: all var(--transition-normal);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-white);
}

.soft-skill-item:hover {
    background-color: rgba(42, 42, 42, 0.6);
    transform: translateX(3px);
}

.soft-skill-icon {
    width: 20px;
    height: 20px;
    color: var(--color-red);
    flex-shrink: 0;
}


/* Languages Card */
.languages-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid var(--color-white);
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.languages-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-white), transparent);
    animation: scan-line 3s linear infinite;
}

.languages-card .skill-card-header {
    color: var(--color-white);
}

.languages-card .skill-card-icon {
    filter: drop-shadow(0 0 5px var(--color-white));
}

.language-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.language-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.language-flag {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 3px var(--color-white));
}

.language-name {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-white);
    font-weight: 600;
    flex: 1;
}

.language-level {
    font-family: var(--font-pixel);
    font-size: 0.625rem;
    color: var(--color-red);
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--color-red);
    background-color: rgba(139, 0, 0, 0.2);
}

.language-item .skill-bar {
    border-color: var(--color-white);
}

.language-item .skill-bar-fill {
    background: linear-gradient(90deg, var(--color-light-gray), var(--color-white));
    box-shadow: 0 0 10px var(--color-white);
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .language-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .skill-card,
    .languages-card {
        padding: 1.5rem;
    }

    .skill-card-header {
        font-size: 0.75rem;
    }

    .skill-name {
        font-size: 0.8rem;
    }

    .language-items {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .skill-card,
    .languages-card {
        padding: 1rem;
    }

    .navbar-logo {
        font-size: 0.75rem;
    }
}

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

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-card {
    padding: 1.5rem;
  }

  .project-title {
    font-size: 0.75rem;
  }

  .project-description {
    font-size: 0.8rem;
  }

  .tech-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .project-link {
    font-size: 0.8rem;
    padding: 0.625rem 0.875rem;
  }
}

.project-card {
  background-color: var(--color-dark-gray);
  border: 2px solid var(--color-red);
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(204, 0, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.project-card:hover::after {
  left: 100%;
}

.project-card:hover {
  border-color: var(--color-red-light);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.project-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-icon {
  width: 32px;
  height: 32px;
  color: var(--color-red);
}

.project-title {
  font-family: var(--font-pixel);
  font-size: 0.875rem;
  color: var(--color-red);
}

.project-preview {
  width: 100%;
  height: 200px;
  background-color: var(--color-medium-gray);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-red);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-preview-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: rgba(26, 26, 26, 0.9);
  color: var(--color-light-gray);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
}

.project-image + .project-preview-placeholder {
  display: none;
}

.preview-icon {
  width: 48px;
  height: 48px;
  color: var(--color-red);
  opacity: 0.5;
}

.project-preview-empty {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--color-light-gray);
}

.preview-icon-large {
  width: 64px;
  height: 64px;
  color: var(--color-light-gray);
  opacity: 0.3;
}

.project-description {
  font-family: var(--font-mono);
  color: var(--color-light-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(139, 0, 0, 0.2);
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transition: all var(--transition-fast);
}

.tech-tag:hover {
  background-color: rgba(139, 0, 0, 0.4);
}

.project-card-placeholder {
  opacity: 0.6;
}

.project-card-placeholder .project-icon,
.project-card-placeholder .project-title {
  color: var(--color-light-gray);
}

.project-card-placeholder .tech-tag {
  border-color: var(--color-light-gray);
  color: var(--color-light-gray);
  background-color: rgba(204, 204, 204, 0.1);
}

.project-links {
  display: flex;
  gap: 0.75rem;
}

.project-link {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.project-link-primary {
  background-color: var(--color-red);
  color: var(--color-white);
}

.project-link-primary:hover {
  box-shadow: var(--shadow-red);
}

.project-link-secondary {
  border: 1px solid var(--color-red);
  color: var(--color-red);
}

.project-link-secondary:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}

/* Contact Section */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background-color: rgba(26, 26, 26, 0.5);
  border: 2px solid var(--color-red);
  padding: 3rem;
  backdrop-filter: blur(5px);
}

.contact-intro {
  font-family: var(--font-mono);
  color: var(--color-light-gray);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-highlight {
  color: var(--color-red);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-black);
  border: 1px solid var(--color-red);
}

.contact-info-icon {
  font-size: 2rem;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-light-gray);
}

.contact-info-link {
  font-family: var(--font-mono);
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.contact-info-link:hover {
  color: var(--color-white);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  padding: 1rem;
  background-color: var(--color-black);
  border: 2px solid var(--color-red);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  border-color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.social-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-red);
  transition: color var(--transition-normal);
}

.social-link:hover .social-icon {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    padding: 0.875rem;
  }

  .contact-info-icon {
    font-size: 1.5rem;
  }

  .social-link {
    padding: 0.875rem;
  }

  .social-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-intro {
    font-size: 0.875rem;
  }
}

/* Footer */
.footer {
  border-top: 2px solid var(--color-red);
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  font-family: var(--font-mono);
  color: var(--color-light-gray);
  margin-bottom: 0.5rem;
}

.footer-bracket {
  color: var(--color-red);
}

.footer-heart {
  color: var(--color-red);
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-light-gray);
}

.footer-console {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-red);
  margin-top: 0.5rem;
}

/* Profile Image */
.hero-avatar {
    width: 200px;
    height: 200px;
    color: var(--color-red);
    object-fit: cover;
    border-radius: 0;
}

img.hero-avatar {
    image-rendering: auto;
    filter: contrast(1.1) brightness(1.05);
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-text {
    font-size: 0.875rem;
  }

  .footer-copyright,
  .footer-console {
    font-size: 0.7rem;
  }
}
