/* Fonts */

.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* CSS Reset */

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

body {
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  color: #fff;
  background: #000;

}

a {
  text-decoration: none;
}

/* Utility Classes */

.highlight {
  color: #0ea5e9;
  font-weight: 900;
}

.bg-primary {
  background: linear-gradient(90deg, #7dd3fc, #0284c7);
}

.border-primary {
  border: linear-gradient(90deg, #7dd3fc, #0284c7) solid 4px;
  border-radius: 10px;
}

.section {
    scroll-margin-top: 10vh;
}

/* Hero Section */

.hero-container {
  display: flex;
  gap: 250px;
  justify-content: center;
  align-items: center;
  
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: rgb(58, 58, 58) 2px solid;
  gap: 20px;
}

.hero-video {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 120vw;
  background-size: cover;
  z-index: -100;
  filter: brightness(0.2);
}

.hero-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
}

.hero-btn {
  padding: 20px 40px;
  font-size: 22px;
  border: solid 4px #0ea5e9;
  border-radius: 10px;
  margin: 20px;
  font-weight: 800;
  color: #fff;
}

.hero-btn:hover {
  background: #0ea5e9;
  color: #fff;
  transition: 0.6s;
  font-weight: 800;
  font-size: 24px;
}

/* Navbar */

.navbar {
  width: 100%;
  height: 8vh;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  top: 0;
  z-index: 10;
  transition: position 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: rgb(58, 58, 58) 2px solid;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 28px;
}

.nav-list {
  display: flex;
  list-style-type: none;
}

.list-item {
  display: flex;
  align-items: center;
}

.list-link {
  color: #fff;
  font-size: 24px;
  margin: 20px 15px;
  transition: color 0.3s ease;
}

.list-link:hover {
  transition: 0.2s;
  font-weight: 800;
  font-size: 26px;
}

.list-link.active {
  font-weight: 800;
  color: blue;
  font-size: 26px;
}

.social-links {
  font-size: 24px;
}

.social-links:hover {
  transition: 0.2s;
  font-size: 34px;
  font-weight: 100;
}

/* About Section */

.divider {
  background: white;
  height: 0.5vh;
}

.about-section {
  height: 100vh;
  display: flex;
  background: #000000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: rgb(58, 58, 58) 2px solid;
}

.about-background-heading {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-background-text {
  font-size: 26px;
  line-height: 2.6rem;
  font-weight: 200;
  text-align: left;
  margin-top: 40px;
}

.about-heading-container {
  width: 70%;
}

.about-heading {
  font-weight: 500;
  font-size: 36px;
}

.about-content-container {
  display: flex;
  width: 70%;
}

.about-text-container {
  width: 50%;
  text-align: center;
}

.about-skills-container {
  width: 50%;
  height: 100%;
  text-align: center;
}

.technologies-container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.technologies-header {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.technologies-row {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.technologies-row.t-row1 {
  align-items: right;
}

.technologies-row.t-row2 {
  align-items: center;
}

.technologies-row.t-row3 {
  align-items: right;
}

.technologies-row-item {
  border: 1px solid #0ea5e9;
  border-radius: 20px;
  width: 150px;
  height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background: rgb(0, 0, 0);
}

.technologies-row-item.placeholder {
  border: none;
}

.technology-icon {
  font-size: 64px;
}

.technology-text {
  font-size: 20px;
  font-weight: 800;
}

/* Experience Section */

.experience-section {
  height: 150vh;
  background: rgba(0, 0, 0, 0.582);
  border-bottom: rgb(58, 58, 58) 2px solid;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.experience-container {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.job-title {
  font-size: 36px;
  text-align: left;
  font-weight: 500;
}

.employment {
  font-size: 24px;
  font-weight: 300;
  text-align: left;
  color: #0ea5e9;
}

.duration {
  font-size: 16px;
  font-weight: 200;
  text-align: left;
}

/* Projects Section */

.projects-section {
  height: 200vh;
  border-bottom: rgb(58, 58, 58) 2px solid;
  background: black;
}

/* Contact Section */

.contact-section {
  height: 100vh;
  border-bottom: rgb(58, 58, 58) 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-heading {
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  margin-bottom: 70px;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.form-element {
  width: 700px;
  background: rgba(0, 0, 0, 0.712);
  border: 2px solid rgb(58, 58, 58);
  resize: none;
  color: #fff;
  font-size: 20px;
  padding: 15px;
  font-weight: 400;
  border-radius: 5px;

}

.message-input {
  height: 300px;
}

.submit-container {
  display: flex;
  justify-content: right;
}

.submit-btn {
  width: 200px;
  background: rgba(0, 0, 0, 0.712);
  border: 2px solid rgb(58, 58, 58);
  border-radius: 5px;
  resize: none;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
  height: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  gap: 5px;
}

.submit-arrow {
  font-size: 16px;
}

/* Footer */

.footer {
  height: 10vh;
  display: flex;
  background: black;
  justify-content: center;
  align-items: center;
  border-bottom: rgb(58, 58, 58) 2px solid;
}

.footer-links {
    display: flex;
    flex-direction: column;
}
