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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #555555;
  background-color: #FFFFFF;
  padding: 20px;
}

a {
  color: #730099;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

html {
  overflow-y: scroll;
}

.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

#navbar {
  width: 100%;
  background-color: rgb(242.25, 242.25, 242.25);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
#navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
#navbar .nav-links li a {
  color: #555555;
  font-weight: bold;
  transition: color 0.2s ease;
  font-size: 1.1rem;
}
#navbar .nav-links li a:hover {
  color: #730099;
}
#navbar .logo {
  font-weight: bold;
  font-size: 2rem;
  color: #730099;
  font-family: "Pacifico", cursive;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #555555;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgb(242.25, 242.25, 242.25);
    flex-direction: column;
    align-items: center;
    text-align: right;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.5);
  }
  .nav-links li {
    width: 100%;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links.active {
    max-height: 500px;
  }
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

#landing {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #730099;
  font-family: "Pacifico", cursive;
  letter-spacing: 1px;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555555;
}
.hero-text .hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #730099;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.hero-text .hero-btn:hover {
  background-color: rgb(76.6666666667, 0, 102);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 100%;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  #landing {
    padding-top: 120px;
  }
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .hero-text {
    flex: unset;
  }
  .hero-image {
    flex: unset;
    width: 100%;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  .hero-socials {
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.hero-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.social-btn i {
  font-size: 1.1rem;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.linkedin {
  background-color: #0a66c2;
}
.linkedin:hover {
  background-color: rgb(8, 81.6, 155.2);
}

.github {
  background-color: #24292e;
}
.github:hover {
  background-color: rgb(47.1951219512, 53.75, 60.3048780488);
}

footer {
  text-align: center;
  padding: 2rem 0;
  background-color: hsl(0, 0%, 105%);
  color: #999;
}

section {
  margin-bottom: 3rem;
}
section h2 {
  color: #730099;
  margin-bottom: 1rem;
}
section p {
  color: #555555;
}

#projects {
  padding-top: 120px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.project-list .project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-list .project-card .project {
  background-color: rgb(242.25, 242.25, 242.25);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.project-list .project-card .project hr {
  border: none;
  border-top: 2px solid #730099;
  margin: 0 0 1rem 0;
}
.project-list .project-card .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}
.project-list .project-card .project h2 {
  color: #730099;
  text-align: center;
  font-family: "Pacifico", cursive;
  letter-spacing: 1px;
  font-size: 1.7rem;
}
.project-list .project-card .project a.visit-link {
  display: none;
}

.project-tags {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-tags .tag {
  background-color: #730099;
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.profile-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    padding: 0;
    padding-top: 120px;
  }
}
.profile-container .profile-sidebar {
  flex: 0 0 300px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* FIXED HEIGHT */
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.profile-container .profile-sidebar .profile-picture img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.profile-container .profile-sidebar .name {
  font-size: 1.5rem;
  color: #730099;
  margin-bottom: 0.5rem;
}
.profile-container .profile-sidebar .role {
  display: inline-block; /* Makes it hug the text like a tag */
  padding: 0.3rem 0.85rem; /* Adjusts space inside the tag */
  background-color: #f0f0f0; /* Light grey background (change as needed) */
  color: #333; /* Text color (adjust as needed) */
  border-radius: 0.5rem; /* Rounded edges */
  font-size: 0.875rem; /* Slightly smaller text, optional */
  font-weight: 500; /* Medium weight for emphasis */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* FIX WIDTH */
  width: auto;
  text-align: center;
  margin: 0 auto;
}
.profile-container .profile-sidebar .sidebar-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
  width: 100%;
}
.profile-container .profile-sidebar .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.profile-container .profile-sidebar .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555555;
  font-size: 0.9rem;
}
.profile-container .profile-sidebar .contact-info .contact-item i {
  color: #730099;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.profile-container .profile-sidebar .btn-download {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #730099;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
  /* FIX WIDTH */
  width: auto;
  text-align: center;
  margin: 0 auto;
}
.profile-container .profile-sidebar .btn-download:hover {
  background-color: rgb(76.6666666667, 0, 102);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.profile-container .profile-main {
  flex: 1;
}
.profile-container .profile-main section {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.profile-container .profile-main section h3 {
  color: #730099;
  margin-bottom: 1rem;
}
.profile-container .profile-main section p {
  color: #555555;
  line-height: 1.5;
}
.profile-container .profile-main .skills-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}
.profile-container .profile-main .skills-cards .card {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  color: #730099;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.profile-container .profile-main .skills-cards .card:hover {
  transform: translateY(-5px);
}

body.light-mode {
  background-color: #f5f5f5;
  color: #333;
}
body.light-mode a {
  color: #730099;
}
body.light-mode header, body.light-mode .project {
  background-color: #fff;
  color: #333;
}
body.light-mode .project a {
  color: rgb(76.6666666667, 0, 102);
}

/*# sourceMappingURL=style.css.map */
