/* Base */
body {
  font-family: 'Petrona', sans-serif;
  background-color: #f4f6f8;
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Header */
header h1 {
    text-align: center;
  font-size: 36px;
  color: #0078D4;
  margin-bottom: 4px;
}

header h1 .title {
  font-size: 36px;
  color: #555;
  font-weight: 400;
}

header .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
}

.contact {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  text-align: center;
}

.contact a {
  color: #0078D4;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact a:hover {
  text-decoration: underline;
}

/* Sections */
h2 {
  font-size: 24px;
  color: #0078D4;
  border-bottom: 2px solid #e3e6eb;
  padding-bottom: 6px;
  margin-top: 40px;
}

h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.date {
  float: right;
  font-size: 14px;
  color: #666;
}

.job {
  margin-bottom: 20px;
}

.role {
  font-style: italic;
  color: #555;
}

ul {
  margin-top: 8px;
  margin-left: 18px;
}

li {
  margin-bottom: 6px;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 16px;
}

.card {
  background-color: #e6f0fa;
  border-left: 4px solid #0078D4;
  padding: 12px 16px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.card h4 {
  width: 100%;
  text-align: center;
  margin-bottom: 6px;
}

.card ul {
  margin-top: 8px;
  margin-left: 0;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.project-title {
  font-size: 16px;
  font-weight: 700;
  color: #005A9E;
  text-align: center;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.skill-card {
  background-color: #f0f4f8;
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
  color: #0078D4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.skill-card:hover {
  transform: translateY(-2px);
}

/* Visitor Counter */
.visitor {
  margin-top: 40px;
  padding: 16px;
  background-color: #0078D4;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.visitor #counter {
  font-size: 28px;
  margin-top: 6px;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media(max-width:600px){
  .date { float:none; display:block; margin-top:4px;}
}
