
.logo a {
    text-decoration: none;
    color: aliceblue;
}

body {
    background-color: rgb(10, 10, 31);
    color: aliceblue;
}

.container {
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: rgb(10, 10, 31);
  color: aliceblue;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: rgb(10, 10, 31);
    font-family: "Zen Dots";
    border-bottom: #2D00D1 2px solid;
    border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: aliceblue;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    gap: 50px;
}

nav a:hover {
    color: #3700FF;
}

ul li {
  list-style: none;
}

/*body custom*/

p {
  font-family: 'Michroma';
}

h1 {
  font-family: 'Zen Dots';
}

h2 {
  font-family: 'Zen Dots';
}

.title {
  border: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  box-shadow: 3px 3px 5px #3700FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.abt-me {
  font-weight: bolder;
  text-align: center;
}

.about-me {
  padding: 2rem;
  margin-top: 80px;
  text-align: justify;
}

span {
  color: #3700FF;
  font-weight: bolder;
}

.skills ul,
.goals ul,
.hobbies ul {
  font-family: 'Michroma';
  padding: 0;
}

.about-container {
  border: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  box-shadow: 3px 3px 5px #3700FF;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  margin-top: 100px;
}

.education,
.skills,
.journey,
.goals,
.passions,
.hobbies {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
}

.education-img, 
.skills-img, 
.journey-img, 
.goal-img, 
.passion-img, 
.guitar-img {
  border-radius: 15%;
    width: 200px;
    height: 200px;
}

footer {
    border-top: 2px solid;
    border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
    font-family: "Michroma";
    font-size: 0.5em;
    text-align: center;
    margin-top: auto;
    padding: 10px;
}

/* 📱 Responsive Design for Tablets & Phones */
@media (max-width: 768px) {

  /* Header */
 header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 35px;
    padding: 0;
  }

    nav a {
    font-size: 16px;
  }

    nav a:hover {
    color: #3700FF;
  }

  /* Main container */
  .container {
    padding: 1rem;
  }

  /* Title section */
  .title {
    padding: 1rem;
  }

  .about-me {
    padding: 1rem;
    margin-top: 40px;
  }

  /* Grid becomes 1 column */
  .about-container {
    grid-template-columns: 1fr;
    padding: 1rem;
    margin-top: 50px;
  }

  /* Images resize */
  .education-img, 
  .skills-img, 
  .journey-img, 
  .goal-img, 
  .passion-img, 
  .guitar-img {
    width: 150px;
    height: 150px;
  }

  /* Footer */
  footer {
    font-size: 0.7em;
  }
}
