/* CSS Variables */

:root {
  --title-text-color: #F2CC8F;
  --highlight-text-color: #E07A5F;
  --primary-text-color: #F4F1DE;
  --secondary-text-color: #81B29A;
  --background-color: #3D405B;
  --box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Fonts */
@font-face {
	font-family: "Proggy Clean";
	src: url('fonts/proggyclean/ProggyClean.ttf') format('truetype');
}
@font-face {
	font-family: "Proggy Vector";
	src: url('fonts/proggyvector/ProggyVector-Regular.ttf') format('truetype');
}
@font-face {
	font-family: "The Signature";
	src: url('fonts/thesignature/Thesignature.ttf') format('truetype');
}

/* CSS Normalization */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Proggy Vector", sans-serif;
  color: var(--primary-text-color);
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
}

h1 {
  font-size: 3rem;
  color: var(--secondary-text-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  color: var(--title-text-color);
}

ul,
ol {
  list-style: none;
}

img,
picture {
  width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: var(--highlight-text-color);
}

p {
  font-family: "Proggy Clean", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

/* Utility Classes */

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content {
  flex: 1 0 auto;
}

.inline {
	display: inline;
}

.text-center {
  text-align: center;
}

/* Header Styles */

.header {
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
}

.header_title {
  transition: all 0.5s;
  -webkit-text-stroke: 1px var(--title-text-color);
  font-variation-settings: "wght" 900, "ital" 1;
  font-size: 15rem;
  text-align: center;
  color: var(--title-text-color);
  font-family: "Meta", sans-serif;
  text-shadow:
    2px 2px 2px var(--highlight-text-color),
    4px 4px 2px var(--secondary-text-color),
	6px 6px 2px var(--primary-text-color);
  cursor: pointer;
  position: relative;
  margin-bottom: 1rem;
  margin-right: 0rem;
  font-family: "The Signature";
  font-size: 5rem;
}

.header_title:hover {
  font-variation-settings: "wght" 100, "ital" 0;
  text-shadow: none;
}


.header_links {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--highlight-text-color);
}

.header_link {
  position: relative;
  font-size: 1.5rem;
}

.header_link::after {
  content: "";
  left: 0px;
  bottom: -4px;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: var(--highlight-text-color);
  transform: scaleX(0);
  transition: transform 0.3s ease 0s;
}

.header_link:hover::after {
  transform: scaleX(1);
}

.footer {
  flex-shrink: 0;
  width: 100%;
  padding: 0.5rem 0;
  text-align: center;
}

.heading--main {
  padding: 1rem 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-text-color);
}

.shared_section {
  align-items: center top;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2rem;
}

/* Color Styles */
.color_title {
  color: var(--title-text-color);
}

.color_primary {
  color: var(--primary-text-color);
}

.color_secondary {
  color: var(--secondary-text-color);
}

/* Section Break Style */
.section_break {
  color: var(--title-text-color);
  font-weight: 900;
}

/* About Style */

.about_text {
  max-width: 32rem;
}

.about_picture {
  max-width: 24.1rem;
  max-height:36.2rem;
}

/* Resume Style */
.resume_download_button {
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 0.25rem;
  background-color: var(--highlight-text-color);
  color: var(--primary-text-color);
  transition: background-color 0.3s ease;
}

.resume_download_button:hover {
  background-color: var(--title-text-color);
}

.resume_picture {
  margin-bottom: 1rem;
}


@media (min-width: 640px) {
  .header__title {
    margin-bottom: 0;
  }

  .profile {
    flex-direction: row;
  }

  .profile__image-wrapper img {
    margin: 4rem;
  }
}
