:root {
  --color-text: #2c3e50;
  --color-background: #ffffff;
  --color-accent: #A01D22;
  --color-accent-darken: #681114;
  --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;

}

body {
  font-family: "Mulish", Arial, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
}

h3 {
  color: var(--color-accent);
  margin-top: 30px;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

.Ruled--Bottom {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.Col--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.Col--Left {
  display: grid;
  grid-template-columns: 50%;
}

@media (max-width: 700px) {
  .Col--2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .Col--Left {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.Bullets {
  list-style: disc;
  margin-right: 30px;
  list-style-image: url(assets/img/bullet.svg);
  margin-left: -5px;
}
.Bullets li {
  /* font-size: 18px; */
  padding-bottom: 20px;
  padding-left: 5px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-family: "Cardo", Georgia, "Times New Roman", Times, serif;
  font-size: 56px;
  font-weight: lighter;
  margin: 30px 0;
}
h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-accent);
  padding: 20px 0 10px 0;
}

p {
  padding-bottom: 20px;
}
p,
li {
  font-size: 20px;
  line-height: 31px;
}

p a,
li a {
  color: var(--color-accent);
}

main,
header,
footer {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px 0;
}

header .Title {
  background-image: url(assets/img/text-title.png);
  height: 100px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

header .Title > * {
  opacity: 0;
}

header nav {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

header nav ul li {
  display: inline;
  padding-left: 10px;
}

header nav ul li a {
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-text);
}

header nav ul li a:hover {
  opacity: .5;
}

header nav .NavLink__LinkedIn {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-image: url(assets/img/icon-linkedin.png);
  position: relative;
  top: 2px;
}

header nav .NavLink__LinkedIn:hover {
  opacity: .5;
}


@media (max-width: 700px) {
  header .Title {
    background-image: url(assets/img/text-title-centered.png);
  }
  header {
    grid-template-columns: 1fr;
  }
  header nav {
    justify-content: center;
    text-align: center;
  }
}

/* ===== MAST ===== */

.Mast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.Mast__Headshot {
  text-align: center;
}

.Mast__Headshot img {
  width: 100%;
  height: auto;
  max-width: 450px;
}

.Mast__Tagline {
  font-size: 50px;
}

.Mast__Summary {
  font-size: 19px;
  line-height: 29px;
}

.Mast__Summary b {
  font-weight: bold;
}
.Mast__Content nav {
  margin-top: 30px;
}

.Mast__Content nav ul li p,
.Mast__Content nav ul li {
  display: inline;
  font-size: 19px;
  font-weight: bold;
}
.Mast__Content nav ul li a {
  color: var(--color-accent);
  padding: 0 5px;
}

@media (max-width: 700px) {
  .Mast {
    grid-template-columns: 1fr;
  }
  .Mast__Headshot {
    padding-bottom: 30px;
  }

  .Mast__Headshot img {
    margin-left: 0px;
  }
}

/* === Quote === */

.Quote {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  font-family: "Cardo", Georgia, "Times New Roman", Times, serif;
  padding: 80px 0 30px 0;
}

.Quote h3 {
  display: block;
  font-weight: normal;
  font-size: 35px;
  color: black;
}
.Quote p {
  font-size: 25px;
  font-style: italic;
}

/* === Projects === */

.Projects__Single {
  display: block;
  margin-bottom: 30px;
}
.Projects__Single a {
  font-size: 21px;
  color: var(--color-text);
}

.Projects__Image--FullWidth {
  width: 100%;

  padding: 50px 30px;
}

.Projects__Image--FullWidth img {
  width: 100%;
  height: auto;
}

.Projects__Single p {
  font-size: 18px;
  margin: 15px 0;
}

.Projects__Single a.Button {
  background-color: var(--color-accent);
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: inline-block;
}
.Projects__Single a.Button:hover {
  background-color: var(--color-accent-darken);
}
