/* General Styles, Typography, and Global Resets */

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fira Code', monospace;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--hover);
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  margin-block: 0.67em;
}

section h1 {
  font-size: 2.5rem;
  margin-block: 0.5em;
}

h2 {
  font-size: 1.75rem;
  color: var(--text);
}

h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.25rem;
  color: var(--text);
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Sidebar Styles */
.sidebar {
  background-color: var(--card);
  border-right: 1px solid var(--border);
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.title {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hover);
}

/* Tablet and Above */
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  section h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .about-text {
    font-size: 1.2rem;
    max-width: 80%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeIn 0.5s ease-out;
}

/* Base Styles, Variables, Global Resets */

@font-face {
  font-family: 'Fira Code';
  src: url('../assets/fonts/Fira_Code/static/FiraCode-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Fira Code';
  src: url('../assets/fonts/Fira_Code/static/FiraCode-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Fira Code';
  src: url('../assets/fonts/Fira_Code/static/FiraCode-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'Fira Code';
  src: url('../assets/fonts/Fira_Code/static/FiraCode-SemiBold.ttf') format('truetype');
  font-weight: 600; /* SemiBold */
  font-style: normal;
}

@font-face {
  font-family: 'Fira Code';
  src: url('../assets/fonts/Fira_Code/static/FiraCode-Bold.ttf') format('truetype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

/* Global Variables */
:root {
  /* ... existing variables ... */
}

/* ... rest of style.css ... */ 