/* Importing Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff; /* White background for clean look */
  color: #333333; /* Dark gray text for readability */
}

html {
  scroll-behavior: smooth;
}

p {
  color: #666666; /* Medium gray for paragraphs */
}

/* Links and Button Transitions */
a, .btn {
  transition: all 300ms ease;
}

/* Desktop Navigation */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 17vh;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

a {
  color: #333333; /* Dark gray for links */
  text-decoration: none;
}

a:hover {
  color: #000000; /* Black hover effect */
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: #333333; /* Gray underline */
}

.logo {
  font-size: 2rem;
  color: #000000; /* Black logo color */
  cursor: default;
}

/* Hamburger Menu for Mobile */
#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: #333333; /* Gray menu icon */
  transition: all 0.3s ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f0f0f0; /* Light gray menu background */
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.menu-links.open {
  max-height: 300px;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: #333333;
  text-decoration: none;
}

/* Hamburger Icon Animation */
.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

/* Section Layout */
section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  min-height: fit-content;
}

.section-container {
  display: flex;
  gap: 4rem;
  height: 80%;
}

/* Profile Section */
#profile {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 80vh;
}

.section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.section__text {
  align-self: center;
  text-align: center;
  color: #333333;
}

.section__text p {
  font-weight: 600;
  color: #000000; /* Black for emphasis */
}

.title {
  font-size: 3rem;
  text-align: center;
  color: #000000; /* Black title */
}

/* Social Media Icons */
#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}

.icon {
  cursor: pointer;
  height: 2rem;
  color: #333333; /* Gray icons */
}

/* Buttons */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-weight: 600;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
  background-color: #e0e0e0; /* Light gray button background */
  color: #333333;
}

.btn-color-1,
.btn-color-2 {
  border: #000000 0.1rem solid; /* Black border for buttons */
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
  background: #000000; /* Black hover */
  color: #ffffff; /* White text on hover */
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: #000000 0.1rem solid;
}

/* About Section */
#about {
  position: relative;
}

.about-containers {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.about-details-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about-pic {
  border-radius: 2rem;
}

.details-container {
  padding: 1.5rem;
  flex: 1;
  background: #f0f0f0; /* Light gray background */
  border-radius: 2rem;
  border: #333333 0.1rem solid; /* Gray border */
  text-align: center;
  color: #333333;
}

/* Experience Section */
#experience {
  position: relative;
}

.experience-sub-title {
  color: #666666; /* Medium gray */
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.experience-details-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.article-container {
  display: flex;
  text-align: initial;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-around;
}

article {
  display: flex;
  width: 10rem;
  justify-content: space-around;
  gap: 0.5rem;
}

article .icon {
  color: #333333; /* Gray icons in articles */
}

/* Projects Section */
#projects {
  position: relative;
}

.color-container {
  border-color: #333333; /* Gray border */
  background: #ffffff; /* White background */
}

.project-img {
  border-radius: 2rem;
  width: 90%;
  height: 90%;
}

.project-title {
  margin: 1rem;
  color: #333333;
}

.project-btn {
  color: #333333;
  border-color: #000000; /* Black border */
}

/* Contact Section */
#contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 70vh;
  background-color: #ffffff; /* White background */
}

.contact-info-upper-container {
  display: flex;
  justify-content: center;
  border-radius: 2rem;
  border: #333333 0.1rem solid; /* Gray border */
  background: #f0f0f0; /* Light gray background */
  margin: 2rem auto;
  padding: 0.5rem;
}

.contact-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
