/* === Base === */
body {
  margin: 0;
  padding: 0;
  font-family: "Fira Sans", Arial, sans-serif;
  background-color: #fff;
  color: #222;
}

/* === Layout === */
.cv-container {
  display: flex;
  min-height: 100vh;
}

.left-column {
  background-color: #304263;
  color: white;
  width: 32%;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-column {
  flex-grow: 1;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
}

/* === Left Column === */
.profile h1 {
  text-transform: uppercase;
  font-variant-caps: small-caps;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.profile-photo {
  width: 70%;
  border-radius: 8px;
  margin: 1rem 0 1.5rem;
}

.left-column h2 {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  text-align: left;
  width: 100%;
}

.left-column ul {
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin-top: 0;
}

.left-column li {
  margin-bottom: 0.4rem;
}

/* Contact / Personal Info / Skills / Links */
.no-bullets {
  list-style: none;
  padding-left: 0;
}

.left-column a {
  color: #fff;
  text-decoration: none;
}

.left-column a:hover {
  text-decoration: underline;
}

.personal-info p,
.skills li {
  font-size: 0.85rem;
  line-height: 1.3rem;
}

/* === Right Column === */
.right-column h2 {
  color: #304263;
  text-transform: uppercase;
  border-bottom: 2px solid #304263;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
}

.right-column h3 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.dates,
.school-detail {
  float: right;
  font-weight: bold;
  color: #304263;
  font-size: 0.9rem;
}

ul {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.job,
.school {
  margin-bottom: 1.5rem;
}

.right-column p {
  margin: 0.2rem 0 0.7rem;
  line-height: 1.4rem;
}

/* === Hobbies, Certs === */
.certifications p,
.hobbies p {
  font-size: 0.95rem;
}

/* === Responsive === */
@media (max-width: 900px) {
  .cv-container {
    flex-direction: column;
  }

  .left-column {
    width: 100%;
    text-align: center;
    padding: 1.5rem;
  }

  .right-column {
    padding: 1.5rem;
  }

  .dates,
  .school-detail {
    float: none;
    display: block;
    font-size: 0.85rem;
  }
}
