/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: 
    linear-gradient(rgba(20, 30, 48, 0.7), rgba(36, 59, 85, 0.7)), 
    url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
  background-size: cover;
  color: #222;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 32px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #4f8cff;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #4f8cff;
}

.subtitle {
  color: #888;
  margin-bottom: 16px;
}

#contactBtn {
  background: #4f8cff;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#contactBtn:hover {
  background: #2563eb;
}

main section {
  margin-bottom: 32px;
}

h2 {
  color: #2563eb;
  margin-bottom: 12px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.skills li {
  background: #e3eaff;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 1rem;
}

.job {
  margin-bottom: 20px;
}
.job h3 {
  margin: 0;
  font-size: 1.1rem;
}
.job span {
  color: #888;
  font-weight: normal;
}
.date {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

footer {
  text-align: center;
  color: #aaa;
  margin-top: 32px;
  font-size: 0.95rem;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
}
.close {
  position: absolute;
  right: 16px; top: 16px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-content input, .modal-content textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.modal-content button {
  background: #4f8cff;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.modal-content button:hover {
  background: #2563eb;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 12px;
  }
  .modal-content {
    padding: 16px;
  }
} 