:root {
  --primary-color: #ff4081;
  --secondary-color: #00e5ff;
  --background-color: #020b2b;
  --font-family-primary: "Alumni Sans", regular, sans-serif;
  --font-family-secondary: "Orbitron", bold, sans-serif;
  --font-family-tertiary: "Lato", sans-serif;
  --base-font-size: 1rem;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 16px; /* this is 1 rem */
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-primary);
  text-align: center;
  background-color: var(--background-color);
}
.bold-name {
  font-family: var(--font-family-primary);
  font-weight: bold;
  color: var(--primary-color);
}
section > h1 {
  color: var(--secondary-color);
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.header {
  background-color: black;
  height: 4rem;
  width: 100%;
}
.navigation-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 5rem;
  margin-left: 1rem;
  margin-top: 1rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--font-family-secondary);
}
.logo{
  height: 3rem;
  margin-top: 1rem;
}
.social-links {
  display: flex;
  gap: 5rem;
  margin-right: 1rem;
  margin-top: 1rem;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 30rem;
  width: 100%;
  margin: 0 auto;
  /* padding-top: 10rem; */
  color: var(--secondary-color);
  font-family: var(--font-family-primary);
}

.home-page {
  /* height: 30.0rem; */
  /* width: 60.0rem;*/
  /* margin: 0 auto; */
  padding: 2rem;
}

.project-page {
  background-color: burlywood;
  height: 100vh;
  /* width: 60.0rem;*/
  margin: 0 auto;
}

.project-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.project-card {
  background-color: aquamarine;
  padding: 1rem 0;
  min-height: 16rem;
  margin-top: 2rem;
  width: 31.5%;
}

.project-page img {
  width: 100%;
}

.hideAll,
.response-container {
  display: none;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact form box */
.form-container {
  background: #0a143d;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.form-container label {
  color: var(--primary-color);
  font-size: 1rem;
  font-family: var(--font-family-secondary);
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
  background: #fff;
  font-family: var(--font-family-tertiary);
}

#send-form {
  background: var(--secondary-color);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s ease;
}

#send-form:hover {
  background: var(--primary-color);
  color: #000;
}

/* Thank you message */
.response-container {
  background: rgba(0, 229, 255, 0.15);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.response-container h4 {
  color: var(--secondary-color);
  font-family: var(--font-family-secondary);
}

/* Contact image (optional) */
.contact-image>img {
  width: 432px;
  height: auto;
  border-radius: 1rem;
}

/* About Me Section */
.about-me-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-me-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background-color: var(--secondary-color);
}

.about-me-paragraph {
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 2rem;
  font-family: var(--font-family-tertiary);
  text-align: left;
}

.skills-section {
  background: rgba(0, 229, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.skills-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-family: var(--font-family-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.skills-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.skill {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 64, 129, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s ease;
}

.skill:hover {
  background: rgba(255, 64, 129, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 64, 129, 0.4);
}

.skill img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.about-me-image {
  min-width: 300px;
  text-align: center;
}

.about-me-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
  main h1 {
    font-size: 2.3rem;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .form-container {
    width: 90%;
  }

  .contact-image {
    width: 90%;
  }

  .about-me-container {
    flex-direction: column;
    gap: 2rem;
  }

  .about-me-paragraph {
    font-size: 1rem;
    text-align: center;
  }

  .skills-section {
    padding: 1.5rem;
  }

  .skill {
    width: 70px;
    height: 70px;
  }

  .skill img {
    width: 40px;
    height: 40px;
  }

  .about-me-image img {
    max-width: 300px;
  }
}

.footer {
  background-color: #f5f5f5;
  border-top: 1px solid #000;
  text-align: center;
  padding: 50px 20px 30px;
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.footer-divider {
  width: 80%;
  height: 1px;
  background-color: black;
  margin: 0 auto 20px;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.9rem;
  /* color: #00e5ff; */
}

.footer-bottom .highlight {
  color: inherit;
}

.back-to-top {
  font-size: 1.5rem;
  color: #666;
  text-decoration: none;
}
.social-links i {
    color: var(--primary-color);  /* or any color you want */
}
@media print, screen and (max-width: 40em) {
  .header-container,
  main {
    width: 100%;
  }

  .project-container {
    justify-content: center;
  }

  .project-card {
    background-color: rebeccapurple;
    /* min-height: 16.0rem; */
    margin-top: 2rem;
    width: 90%;
  }
}
