:root {
  --sunset-gold: #e8a44a;
  --warm-amber: #c97b2a;
  --deep-teal: #2a7a8c;
  --light-teal: #4daab8;
  --teal-mist: #a8d8df;
  --night-navy: #1e2d3d;
  --dark-brown: #3d2210;
  --soft-sand: #f7f0e6;
  --warm-white: #fdfaf5;
  --muted-sage: #8ba99b;
}

/*** Body ***/
body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Lato", sans-serif;
  line-height: 1.7;
}

body * {
  box-sizing: border-box;
}

/*** Body ***/

.home-hero__container {
  text-align: center;
  align-self: center;
  margin: auto;
  width: 100%;
  max-width: 820px;
}

.hero-section {
  background: linear-gradient(
    160deg,
    #1e2d3d 0%,
    #2a4a5e 40%,
    #2a7a8c 75%,
    #e8a44a 130%
  );
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 50% 80%,
      rgba(232, 164, 74, 0.25) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 80% 50% at 20% 30%,
      rgba(45, 122, 140, 0.2) 0%,
      transparent 60%
    );
  pointer-events: none;
}

section.home-hero {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  position: relative;
  padding: 20px;
  margin-bottom: 0;
  color: #fff;
}

.home .ct-container-full {
  padding-top: 0;
}

h2.home-hero__h2 {
  margin-bottom: 0;
  line-height: normal;
  font-size: 1.75rem;
  max-width: 800px;
  font-family: "Cormorant Garamond", serif;
}

h1.home-hero__h1 {
  margin-bottom: 0;
}

section.home-hero h1 {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 6em;
  color: transparent;
  text-transform: uppercase;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  font-family: Rubik, Sans-Serif;
}

h1.home-hero__h1 span:not(:last-child) {
  background: linear-gradient(90deg, var(--light-teal), var(--sunset-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section.home-hero h1 span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transition: 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  overflow: hidden;
  font-weight: 700;
}

section.home-hero h1:hover span:nth-child(1) {
  transform: translateY(-18px);
}

section.home-hero h1 span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transition: 0.5s;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  overflow: hidden;
  font-weight: 700;
}

section.home-hero h1:hover span:nth-child(2) {
  transform: translateY(18px);
}

section.home-hero h1 span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleY(0);
  width: calc(100% + 30px);
  margin-left: -15px;
  color: #fff;
  padding-block: 10px;
  background: #00191d;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.7em;
  text-align: center;
  padding-left: 20px;
  transition: 0.5s;
  border: solid 1px #fff;
  font-family: "Cormorant Garamond", serif;
}
section.home-hero h1:hover span:nth-child(3) {
  transform: translateY(-50%) scaleY(1);
}

.cover-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal-mist),
    transparent
  );
  margin: 0 auto 48px;
}

/*** About Me Section ***/

.aboutMe-mainContainer {
  max-width: 800px;
  margin: auto;
}

.aboutMe-section h2 {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  letter-spacing: 6.5px;
  text-transform: uppercase;
  color: var(--deep-teal);
}

.aboutMe-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 40px;
  position: relative;
}

.aboutMe-section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sunset-gold), var(--deep-teal));
  margin-bottom: 25px;
}
.aboutMe {
  max-width: 800px;
  width: 90%;
  background: var(--soft-sand);
  border-radius: 24px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  padding: 50px 20px;
  display: flex;
  margin: auto;
}

.aboutMe-section {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.aboutMe-container {
  display: flex;
  gap: 100px;
  max-width: 800px;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
}

.aboutMe-left img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.aboutMe-right {
  color: var(--dark-brown);
}

.aboutMe-right span {
  display: block;
}

.aboutMe-p:not(:last-child) {
  margin-bottom: 20px;
}

.aboutMe-left::before {
  content: "";
  width: 150px;
  height: 200px;
  background: #a4a4a4;
  position: absolute;
  z-index: -1;
  bottom: -10px;
  right: -10px;
  border-radius: 20px;
}

.aboutMe-left {
  position: relative;
  min-width: 150px;
}

.aboutMe-p {
  font-size: 24px;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.4;
}

.aboutMe-p span {
  font-size: 20px;
  font-weight: 500;
  font-family: Lato;
}

.hero-socials__logo img {
  max-width: 50px;
  transform: scale(0.8);
}

a.socials-linkedin,
a.socials-ig {
  background: #fff;
  border-radius: 10px;
  border: solid 1px var(--dark-brown);
}

.hero-socials__logo {
  display: flex;
  gap: 5px;
}

.hero-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  background: var(--soft-sand);
  width: fit-content;
  margin: 30px auto auto;
  padding: 20px;
  border-radius: 24px;
}

.hero-socials span {
  color: var(--dark-brown);
  font-size: 24px;
}

.divider-full {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal-mist) 30%,
    var(--teal-mist) 70%,
    transparent
  );
  margin: 0;
}

/*** Description ***/
.desc-skills__item img {
  max-width: 40px;
}

.description-skills {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  color: var(--dark-brown);
}

.description-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.description-container h2 {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  letter-spacing: 6.5px;
  text-transform: uppercase;
  color: var(--deep-teal);
}

.description-container h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 20px;
  position: relative;
}

.description {
  background: var(--soft-sand);
  padding: 100px 20px;
}

.description-container p {
  font-size: clamp(20px, 4vw, 16px);
  color: #555;
  line-height: 1.85;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 32px;
  font-family: "Lato", sans-serif;
}

/*** Nav Bar ***/
header .container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  padding: 20px;
  border: solid 2px #fff;
  backdrop-filter: blur(10px);
}

nav {
  max-width: 600px;
  width: 100%;
}

ul.nav-links {
  display: flex;
  justify-content: space-around;
}

.logo img {
  max-width: 200px;
}

.logo {
  width: 30%;
}

ul.nav-links li {
  font-size: 24px;
  color: #fff;
}
/*** Footer ***/
footer {
  background: #1e2d3d;
  color: #fff;
  padding: 40px 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
