/* css/projects.css */

body {
  background-color: #23272A;
  color: #DCDDDE;
  font-family: 'Inter', sans-serif;
}

.project-hero {
  background-color: #2C2F33;
  border-bottom: 2px solid #5865F2;
}

.tab-nav {
  margin-top: 1rem;
}

.btn-tab {
  background-color: transparent;
  color: #DCDDDE;
  border: 1px solid #5865F2;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.btn-tab:hover,
.btn-tab:focus {
  background-color: #5865F2;
  color: #fff;
  outline: none;
}

.btn-tab.active {
  background-color: #5865F2;
  color: white;
}

.card.dark-card {
  background-color: #2C2F33;
  border: 1px solid #5865F2;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.card.dark-card:hover {
  transform: translateY(-4px);
}

.card .card-title {
  color: #3BA55C;
  font-weight: 600;
  font-size: 1.1rem;
}

.card .card-text {
  font-size: 0.9rem;
  color: #DCDDDE;
}

.btn-primary, .btn-secondary {
  background-color: #5865F2;
  border: none;
}

.btn-primary:hover, .btn-secondary:hover {
  background-color: #3BA55C;
}

.modal-content {
  background-color: #2C2F33;
  color: #DCDDDE;
  border-radius: 10px;
  border: 1px solid #5865F2;
}

.modal-title {
  color: #3BA55C;
  font-weight: 600;
}

.modal-body p,
.modal-body li,
.modal-body code {
  color: #DCDDDE;
  font-size: 0.95rem;
}

.modal-body pre {
  background-color: #1e1f22;
  color: #eee;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  font-size: 0.85rem;
}

h2 {
  color: #3BA55C;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #5865F2;
  padding-bottom: 0.5rem;
}

.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 160px;
    width: 100%;
}

.card-body {
  padding: 1rem;
  font-size: 0.9rem;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
