/* Variables (Theme) */
:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --highlight-color: #d41b81;
  --date-color: #666;
  --text-color: #333;
  --light-gray: #ecf0f1;
  --border-color: #e0e0e0;
  --card-bg: #e4e4e4;
  --spacing-unit: 1rem;
  --font-main: "Roboto", sans-serif;
  --font-mono: "Fira Code", monospace;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-color: #191919;
  --text-color: #e0e0e0;
  --primary-color: #3498db;
  --secondary-color: #1abc9c;
  --border-color: #333333;
  --card-bg: #2a2a2a;
  --date-color: #999;
}

/* Base Styles */
body {
  font-family: var(--font-main);
  line-height: 1.6;
  margin: 0;
  padding: var(--spacing-unit);
  background-color: var(--bg-color);
  color: var(--text-color);
}

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

/* Header */
.resume-header {
  text-align: center;
  margin-bottom: var(--spacing-unit);
}

.name {
  font-size: 2.5rem;
  margin: 0;
  color: var(--primary-color);
}

.title {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 1s;
}

.contact-info a:hover {
  color: var(--highlight-color);
  transition: color 1s;
}

/* Columns */
.resume-body {
  display: flex;
  gap: 2rem;
}

/* Sections */
.section-title {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Experience Items */
.experience-item {
  margin-bottom: 1rem;
  background-color: var(--card-bg);
  padding: .8rem;
  border-radius: 8px;
}

.job-title {
  margin: 0;
  font-size: 1.1rem;
}

.company {
  font-weight: 500;
  margin: 0.25rem 0;
}

.date {
  color: var(--date-color);
  font-style: italic;
}
/* Projects Items */
.project {
  margin-bottom: 1.5rem;
  background-color: var(--card-bg);
  padding: 0.8rem;
  border-radius: 8px;
}

.project a {
  text-decoration: none;
}
.project-title {
  font-size: 1.1rem;
  margin: 0.25rem 0;
  color: var(--secondary-color);
  transition: color 1s;
}

.project-title:hover {
  color: var(--highlight-color);
  transition: color 1s;
}

.project-date {
  font-style: italic;
  color: var(--date-color);
  margin: 0.25rem 0;
}

.project-details {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.project-details li {
  margin-bottom: 0.5rem;
}

/* Print Styles */
@media print {
  body, .project, .experience-item {
    padding: 0;
  }

  #theme-toggle, .contact-label {
    display: none;
  }

  .resume-column--left {
    flex: 0.3; /* Adjust for PDF layout */
    font-size: 8pt;
  }

  .resume-column--center, .resume-column--right {
    flex: 0.7;
    font-size: 10pt;
  }

  .resume-body {
    flex-wrap: wrap;
  }
}
