@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --primary-color: #ff7613;
  --text-color: #727171;
  --card-bg: #070707;
  --line: rgba(128, 128, 128, 0.229);
}

html { font-size: 10px; }

body {
  font-family: Inter, sans-serif;
  background-color: black;
  color: white;
}

img { width: 100%; display: block; }
a { text-decoration: none; color: white; }
a:hover { color: var(--primary-color); }

.description {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.6;
}

.title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}

.item_preTitle {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 300;
}

.item_title {
  font-size: 1.6rem;
  color: white;
  font-weight: 500;
  margin: 0.8rem 0;
}

.item_subtitle {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 400;
}

.container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  padding: 5rem;
  background: var(--card-bg);
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 5rem;
  }
}

.profile {
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}

.group-1,
.group-2 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.group-3 {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.group-3 > div {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .group-3 { flex-direction: column; }
}

.profile_container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.profile_profileImg {
  max-width: 250px;
}

.profile_name_firstName {
  color: white;
  font-weight: 200;
  font-size: clamp(2rem, 8vw, 4rem);
  text-transform: uppercase;
  display: block;
  margin-bottom: -0.8rem;
}

.profile_name_lastName {
  color: var(--primary-color);
  font-weight: 700;
  font-size: clamp(2.5rem, 15vw, 7rem);
  text-transform: uppercase;
  display: block;
}

.profile_title {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .profile_container { flex-direction: column; align-items: flex-start; }
  .profile_profileImg { max-width: 220px; }
}


.quick_nav {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.quick_nav a {
  font-size: 1.4rem;
  color: var(--text-color);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
}

.quick_nav a:hover {
  color: white;
  border-bottom-color: var(--primary-color);
}

.skills_list {
  margin-top: 1rem;
  margin-left: 2rem;
  line-height: 2;
}

.ref_item { margin-top: 2rem; }
.ref_name {
  font-size: 1.6rem;
  font-weight: 700;
}

.edu_item { margin-top: 2rem; }

.exp_item { margin-top: 2rem; }

.certification_item { margin-top: 0; }

.certification_grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .certification_grid { grid-template-columns: 1fr; }
}

.awards_item { margin-top: 2rem; }

.bullets {
  margin-top: 1rem;
  margin-left: 2rem;
  line-height: 1.9;
}

.mini_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  color: var(--text-color);
}

.mini_table th,
.mini_table td {
  text-align: left;
  padding: 1rem;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.mini_table thead th {
  color: white;
  font-weight: 600;
  border-top: 1px solid var(--line);
}

.interest_items {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.interest_item {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-color);
}

.interest_item svg { width: 2rem; }

.social_items { margin-top: 2rem; }

.social_item {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-color);
}

.social_item:hover { color: var(--primary-color); }
.social_item svg { width: 2rem; }

.contact_form form { margin-top: 2rem; }

.form_row { margin-top: 1.4rem; }

.form_label {
  display: block;
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.6rem;
}

.form_input {
  width: 100%;
  font-family: inherit;
  font-size: 1.4rem;
  color: white;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  outline: none;
}

.form_input:focus {
  border-color: rgba(255, 118, 19, 0.55);
}

.form_inline {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--text-color);
  font-size: 1.4rem;
}

.form_inline label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form_btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form_btn {
  font-size: 1.4rem;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--primary-color);
  color: white;
}

.form_btn:hover {
  filter: brightness(1.05);
}

.form_btn_secondary {
  background: #2a2a2a;
  color: white;
}

hr {
  grid-column: 1 / -1;
  width: 80%;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 1rem;
  border: none;
  border-top: 2px solid var(--line);
}

@media (max-width: 768px) {
  hr { width: 100%; }
}
