/* css/style.css */

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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0c0f14;
  color: #e6e6e6;
  line-height: 1.6;
}

header {
  background: #11151d;
  padding: 1rem;
  text-align: center;
}

header nav a {
  color: #56f2a6;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 2rem;
  background-color: #121821;
  color: #b5b5b5;
}

.hero img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 1.6rem;
  color: #56f2a6;
}

.hero p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #b5b5b5;
}

.buttons a {
  display: inline-block;
  margin: 1rem 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid #56f2a6;
  color: #56f2a6;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.buttons a:hover {
  background: #56f2a6;
  color: #0c0f14;
}

.about-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #121821
}

.about-section img {
  width: 350px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.about-section h2 {
  color: #56f2a6;
  margin-bottom: 1rem;
}

.about-section p {
    color: #b5b5b5;
}

.projects {
  padding: 2rem;
  background-color: #1a1f29;
}

.projects h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #56f2a6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project {
  background: #202833;
  padding: 1rem;
  border-radius: 10px;
  border-left: 5px solid #56f2a6;
  color: #b5b5b5;
}


.certifications {
  padding: 2rem;
  text-align: center;
  background-color: #121821;
}

.certifications h3 {
  color: #56f2a6;
  margin: 1rem 0;
}

.cert-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #56f2a6;
  background-color: #0c0f14;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .about-section {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  .about-section>div {
    max-width: 600px;
    margin-left: 2rem;
  }
}
