:root {
  /* Colors */
  --color-primary: #d2a84c;
  --color-dark: #333;
  --color-light: #fff;
  --color-border: #464443;
  
  /* Typography */
  --font-family-base: "Montserrat", sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.25rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  
  /* Layout */
  --container-width: 1140px;
  --header-height: 286px;
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  position: relative;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-dark);
}

#template {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -512px;
    display: none;
}

#template img {
    width: 1024px;
    margin: 0 auto;
}

.light-font {
    font-weight: 300;
}

/* Layout */
.content-wrapper {
  width: var(--container-width);
  margin: 0 auto;
}

/* Header Styles */
#dark-header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-dark);
  padding: 83px 0 0 0;
  margin-bottom: 42px;
  color: var(--color-light);
  text-align: center;
}

#dark-header h1 {
  border: 2px solid var(--color-primary);
  display: inline;
  font-size: 42px;
  margin-left: -5px;
  letter-spacing: 4px;
  padding: 7px 40px;
  line-height: 70px;
}

#dark-header h2 {
  margin: 24px 0;
  letter-spacing: 4px;
  font-size: 20px;
}

#info-wrapper {
  font-size: var(--font-size-small);
  margin-top: 26px;
  letter-spacing: 1.48px;
  color: var(--color-primary);
}

#info-wrapper span.info-content {
  padding: 0 12px;
  color: var(--color-light);
}

#info-wrapper span.info-content:first-child {
  padding-left: 0;
}

/* Resume Sections */
.resume-col {
  border-left: 1px solid var(--color-border);
  color: var(--color-dark);
}

.resume-col:first-child {
  border-left: none;
}

.resume-section {
  border: 0;
}

.resume-section .card-title {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  line-height: 66px;
}

/* Skills Tags */
.tags-list > div {
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  margin: 6px 2px;
  padding: 3px 8px;
  text-align: center;
  display: inline-block;
}

/* Experience Section */
.event-title,
.event-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-dark);
}

.exp-desc {
  margin-bottom: 2.2rem;
}

.exp-desc:last-of-type {
  margin-bottom: 0;
}

/* Responsive Design */
@media only screen and (max-width: 750px) {
  #dark-header {
    height: auto;
    padding: 60px 0 20px;
  }

  #dark-header h1 {
    font-size: 28px;
    padding: 12px 30px;
  }

  #dark-header h2 {
    font-size: 14px;
  }

  #info-wrapper span {
    display: none;
  }

  #info-wrapper span.info-content {
    display: block;
  }

  .content-wrapper {
    width: 100%;
  }
}

@media only screen and (min-width: 751px) and (max-width: 970px) {
  #dark-header {
    height: auto;
    padding-bottom: 20px;
  }

  #info-wrapper span {
    display: none;
  }

  #info-wrapper span.info-content {
    display: block;
  }

  .content-wrapper {
    width: 100%;
  }
}

@media only screen and (min-width: 971px) and (max-width: 1170px) {
  .content-wrapper {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  #dark-header {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
