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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #ffffff;
}

a {
  color: #00a47a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 2rem 0;
}

/* Header */
header {
  background: #2e2e2e; /* charcoal */
  color: #ffffff;
  text-align: center;
  padding: 4rem 0;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #00c896; /* mint green */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #00a47a;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


/* Sections */
.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.section.light {
  background-color: #f7fdfa; /* light mint background */
}

.thumbnail {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 1rem;
}


/* Experience Section */
.job {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.job h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.job p {
  color: #555;
}

/* Contact Section */
#contact {
  text-align: center;
}

.contact-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background: #2e2e2e;
  color: #cccccc;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 1rem;
  }
  .contact-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}
