* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: cascadia-code, monospace;
  background-color: #0b0f0e;
  color: darkgreen;
}

#menu-toggle {
  display: none;
}

/* === Sidebar Menu === */
.menu-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1100;
  border-radius: 5px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  padding-top: 60px;
  transform: translateX(-100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  border-radius: 10px;
  border: 1px solid #00cc66;
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 15px 20px;
}

.sidebar a {
  color: darkgreen;
  text-decoration: none;
  display: block;
}

.sidebar a:hover {
  background-color: white;
}

#menu-toggle:checked ~ .sidebar {
  transform: translateX(0);
}

#menu-toggle:checked ~ main {
  transform: translateX(250px);
}

/* === Layout === */
main {
  height: 100%;
  padding: 2rem;
  margin-left: 0;
  flex: 1;
  transition: transform 0.3s ease;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  background-color: rgba(11, 15, 14, 0.4);
  border-radius: 10px;
  border: 1px solid #00cc66;
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 255, 0, 0.6);
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #0b0f0e;
  color: darkgreen;
}

/* === Table === */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
}

th {
  width: 20%;
}

img.icon {
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

/* === Profile Section === */
.profile-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.profile-info {
  width: 100%;
}

/* === Projects === */
.projects {
  display: list-item;
  gap: 20px;
}

.description {
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 255, 0, 0.3);
}

.desc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* === Contact Form === */
#forms {
  display: flex;
  flex-direction: column;
}

#forms label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

#forms select,
#forms input,
#forms textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#forms button {
  padding: 12px;
  background-color: white;
  color: darkgreen;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#forms button:hover {
  background-color: #333;
}

/* === Social Icons === */
.social a {
  display: inline-block;
  text-decoration: none;
  color: darkgreen;
  transition: color 0.3s ease;
}

.social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social img:hover {
  transform: scale(1.1);
}

/* === Timeline Section === */
.timeline {
  position: relative;
  margin-left: 40px;
  padding-left: 20px;
  border-left: 2px solid #00cc66;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.bullet {
  width: 15px;
  height: 15px;
  background-color: #00cc66;
  border-radius: 50%;
  position: absolute;
  left: -28px;
  top: 5px;
}

.timeline-item .content {
  padding-left: 10px;
}

.timeline-item h3 {
  color: #00cc66;
  margin-bottom: 5px;
}

.date {
  font-weight: bold;
  color: #ccc;
  margin-bottom: 10px;
  display: block;
}

.timeline-item ul {
  padding-left: 20px;
  list-style-type: disc;
}

.timeline-item ul li {
  margin-bottom: 5px;
}
/* === Download Resume Button === */
.download-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: darkgreen;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0b0f0e;
}

/* Responsive styling using media queries */
@media (max-width: 768px) {
  .download-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1.1rem;
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .menu-icon {
    padding: 8px 12px;
    font-size: 16px;
  }
  main {
    padding: 1rem;
  }
}

