body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #d1d1d1;
  background-color: #1e1e2f;
}

.btn {
  display: inline;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 2px solid #c19a6b;
  background-color: transparent;
  color: #d1d1d1;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #c19a6b;
  color: #1e1e2f;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1e1e2f;
  position: sticky;
  top: 0;
}
nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: #c19a6b;
  margin-right: auto;
}
@media (max-width: 768px) {
  nav .links-container {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #1e1e2f;
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
}
nav .links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  nav .links {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
}
nav .links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #d1d1d1;
  transition: color 0.3s;
}
nav .links a:hover {
  color: #c19a6b;
}
nav #menu {
  display: none;
}
@media (max-width: 768px) {
  nav #menu {
    display: block;
    font-size: 1.8rem;
    color: #d1d1d1;
    cursor: pointer;
  }
}

.open {
  display: flex !important;
}

.home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5em;
  background-color: #1e1e2f;
  text-align: center;
}
.home .content {
  max-width: 800px;
}
.home .content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
  background: linear-gradient(90deg, #c19a6b, #4c566a, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home .content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #c19a6b;
  margin-top: 0;
  margin-bottom: 0.1rem;
}
.home .content p {
  font-size: 1rem;
  line-height: 1.4;
  color: #d1d1d1;
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.home .btn-box {
  margin-top: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.home .btn-box .btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 2px solid #c19a6b;
  background-color: transparent;
  color: #d1d1d1;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.home .btn-box .btn:hover {
  background-color: #c19a6b;
  color: #1e1e2f;
}

#about {
  padding: 4rem 2rem;
  background-color: #1e1e2f;
  color: #d1d1d1;
}

.about-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #c19a6b;
}
h2 span {
  background: linear-gradient(90deg, #c19a6b, #4c566a, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.skills-section {
  margin-top: 2rem;
}
.skills-section .skills-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #c19a6b;
  margin-bottom: 2rem;
  text-align: center;
}
.skills-section .skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.skills-section .skills-container .current-skills h3, .skills-section .skills-container .future-skills h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #c19a6b;
  margin-bottom: 1rem;
  text-align: center;
}
.skills-section .skills-container .current-skills .skills-list, .skills-section .skills-container .future-skills .skills-list {
  list-style: none;
  padding: 0;
}
.skills-section .skills-container .current-skills .skills-list li, .skills-section .skills-container .future-skills .skills-list li {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #c19a6b;
  transition: all 0.3s;
}
.skills-section .skills-container .current-skills .skills-list li i, .skills-section .skills-container .future-skills .skills-list li i {
  margin-right: 0.8rem;
  font-size: 1.8rem;
  color: #c19a6b;
  transition: transform 0.3s;
}
.skills-section .skills-container .current-skills .skills-list li:hover, .skills-section .skills-container .future-skills .skills-list li:hover {
  color: #d1d1d1;
}
.skills-section .skills-container .current-skills .skills-list li:hover i, .skills-section .skills-container .future-skills .skills-list li:hover i {
  transform: translateX(5px);
}

#projects {
  padding: 3rem 1rem;
  background-color: #1e1e2f;
}
#projects .header {
  text-align: center;
  margin-bottom: 2rem;
}
#projects .header h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #c19a6b, #4c566a, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
#projects .projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
#projects .projects-container .box {
  background-color: #28283f;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}
#projects .projects-container .box:hover {
  transform: translateY(-5px);
}
#projects .projects-container .box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #c19a6b, #4c566a, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#projects .projects-container .box p {
  font-size: 1rem;
  color: #d1d1d1;
}

#contact {
  padding: 3rem 1rem;
  background-color: #1e1e2f;
}
#contact h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(90deg, #c19a6b, #4c566a, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}
#contact form {
  max-width: 600px;
  margin: 0 auto;
}
#contact form .input-box {
  margin-bottom: 1.5rem;
}
#contact form .input-box span {
  display: block;
  font-size: 1rem;
  color: #c19a6b;
  margin-bottom: 0.5rem;
}
#contact form .input-box input, #contact form .input-box textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 2px solid #c19a6b;
  background-color: #28283f;
  color: #d1d1d1;
  font-size: 1rem;
}
#contact form .input-box textarea {
  resize: none;
  height: 150px;
}
#contact form .btn {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  text-align: center;
  border: none;
  border-radius: 10px;
  background-color: #c19a6b;
  color: #1e1e2f;
  cursor: pointer;
  transition: all 0.3s;
}
#contact form .btn:hover {
  background-color: #d0b38f;
}

@media (max-width: 480px) {
  form {
    margin-left: 10px;
  }
}
footer {
  background-color: #1e1e2f;
  color: #d1d1d1;
  padding: 2rem 1rem;
  text-align: center;
}
footer .footer-container {
  max-width: 800px;
  margin: 0 auto;
}
footer .footer-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #c19a6b;
}
footer .footer-container .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
footer .footer-container .social-links a {
  font-size: 2rem;
  color: #d1d1d1;
  transition: color 0.3s;
}
footer .footer-container .social-links a:hover {
  color: #c19a6b;
}
footer .footer-container p {
  font-size: 0.9rem;
  color: white;
}

@media (max-width: 768px) {
  .container,
  .about,
  .projects,
  .contact,
  .section {
    padding-inline: 1rem;
  }
  form input,
  form textarea,
  .form-control {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    box-sizing: border-box;
  }
}