@charset "UTF-8";
@import url("Second-css.css");
/* CSS Document */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
}

/* Top navigation bar */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Name p {
  font-size: 0.9rem;
  color: #333;
}

.top-links a {
  margin-left: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
}

/* Resume profile photo */
.resume-photo {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.resume-photo img {
  width: 300px;         
  height: auto;
  border-radius: 10px;  
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Resume page */
.resume-wrapper {
  max-width: 900px;
  margin: 30px auto 60px auto; 
  padding: 0 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.resume-header h1 {
  margin-bottom: 5px;
  font-size: 2.2rem;
}

.resume-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.resume-contact {
  margin-top: 5px;
  font-size: 0.95rem;
}

.resume-contact a {
  text-decoration: none;
}

.resume-section {
  margin-top: 30px;
}

.resume-section h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.resume-item {
  margin-bottom: 18px;
}

.item-main {
  display: flex;
  flex-direction: column;
}

.item-main h3 {
  margin: 0;
  font-size: 1.05rem;
}

.item-location {
  font-size: 0.9rem;
  color: #555;
}

.item-dates {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 5px;
}

.resume-item ul {
  margin: 5px 0 0 18px;
  padding: 0;
}

.resume-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.resume-skills h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.resume-skills ul {
  margin: 0;
  padding-left: 18px;
}
.top-links a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* Footer */
.footer {
  margin-top: 40px;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

a:hover {
  border-color: black;
}

