body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #222;
}

/* HEADER */
header {
  background: white;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.site-name {
  font-size: 1.1rem;
  font-weight: 600;
}

/* MENU BUTTON */
#menuBtn {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 2rem;
  border: none;
  background: none;
  cursor: pointer;
}

/* NAVIGATION */
#navMenu {
  display: none;
  flex-direction: column;
  margin-top: 15px;
  background: #111;
}

#navMenu.show {
  display: flex;
}

#navMenu a {
  color: white;
  text-decoration: none;
  padding: 12px;
  transition: 0.3s;
}

#navMenu a:hover {
  background: #444;
}

#navMenu a.active {
  background: #333;
}

/* MAIN */
main {
  padding: 15px;
}

h1 {
  margin-bottom: 20px;
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ABOUT */
.about,
.student-photo,
.certificates {
  background: #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
}

.about h2,
.student-photo h2,
.certificates h2 {
  background: #111;
  color: white;
  text-align: center;
  padding: 12px;
  margin: 0;
}

.about-content {
  padding: 15px;
}

.about p {
  line-height: 1.6;
}

/* SOCIALS */
.socials p {
  margin: 10px 0;
}

/* STUDENT PHOTO */
.student-photo {
  text-align: center;
}

.student-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}

/* CERTIFICATES */
.certificates {
  margin-top: 20px;
}

/* FILTERS */
.filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

.filters button {
  padding: 12px;
  border: none;
  background: #ddd;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.filters button:hover {
  background: #bbb;
}

/* COURSE CONTAINER */
#courseContainer {
  display: grid;
  gap: 15px;
  padding: 0 15px 15px;
}

/* COURSE CARDS */
.course-card {
  background: #ddd;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  font-weight: 600;
}

/* COMPLETED COURSE */
.completed {
  background: #004080;
  color: white;
}

/* CREDITS */
.credits {
  text-align: center;
  padding-bottom: 20px;
  font-weight: 600;
}

/* FOOTER */
footer {
  text-align: center;
  background: #e9e9e9;
  padding: 20px;
  margin-top: 20px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: bold;
}
body {
  margin: 0;
  overflow-x: hidden;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 15px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.list-item {
  background: #eee;
  padding: 10px;
  border-radius: 5px;
}
