/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Radio+Canada:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --primary-color: #2F4F4F;  /* Dark Forest Green */
  --secondary-color: #3C6E47;  /* Medium Forest Green */
  --accent-color: #4A7B56;  /* Light Forest Green */
  --text-color: #333;
  --light-bg: #F5F7F5;  /* Slight green tint to background */
  --spacing-unit: 1rem;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
              linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.3;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
  position: relative;
  z-index: 1;
}

.profile-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

.header-text h1 {
  font-family: 'Radio Canada', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.header-text p {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-info a {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 140px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-info a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem var(--spacing-unit);
}

section {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

h2 {
  font-family: 'Radio Canada', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1.75rem;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 600;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.experience-item {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-color);
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-item h3 {
  font-family: 'Radio Canada', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.experience-item .company {
  font-weight: 600;
  color: var(--accent-color);
}

.experience-item .period {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
  font-style: italic;
}

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

.award-item {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.award-item h3 {
  font-family: 'Radio Canada', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.award-item ul {
  list-style-type: none;
}

.award-item li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.award-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

footer {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .profile-image {
    width: 180px;
    height: 180px;
  }

  .header-text h1 {
    font-size: 2.5rem;
  }

  .contact-info {
    justify-content: center;
  }

  section {
    padding: 1.75rem;
  }

  .experience-item {
    padding-left: 1rem;
  }
}

.education-item {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.education-item h3 {
  font-family: 'Radio Canada', sans-serif;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.education-item p {
  color: var(--secondary-color);
  font-size: 1.1rem;
} 