/* Global Style */
body {
  font-family: "Sour Gummy", sans-serif;
  background: #F1F3E0;
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #778873;
}

/* Tabs Container */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Tab Buttons */
.tab-btn {
  font-family: "Sour Gummy", sans-serif;
  flex: 1;
  padding: 12px 15px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background: #D2DCB6;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #A1BC98;
  color: white;
}

.tab-btn.active {
  background: #778873;
  color: white;
  transform: translateY(-2px);
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 20px;
  border-radius: 12px;
  background: #F1F3E0;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  margin-top: 0;
  color: #778873;
}

.project-list {
  margin-top: 10px;
  padding-left: 20px;
}

.project-list li {
  margin-bottom: 8px;
}

/* Simple Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
  }
}
