/* === BreakApes Global Theme Overrides === */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #facc15; /* Tailwind yellow-400 */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fde68a; /* Tailwind yellow-300 */
}

h1, h2, h3 {
  font-weight: 700;
}

section {
  padding: 1.5rem;
}

footer {
  border-top: 1px solid #374151; /* Tailwind gray-700 */
  color: #9ca3af; /* Tailwind gray-400 */
  padding: 1.5rem;
  text-align: center;
}

/* === Button Styling === */
button {
  background-color: #2563eb; /* Tailwind blue-600 */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #1e40af; /* Tailwind blue-800 */
}

/* === Custom Card Styling === */
.card {
  background-color: #1f2937; /* Tailwind gray-800 */
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

/* === Team Grid Boxes === */
.team-box {
  background-color: #111827; /* Tailwind gray-900 */
  color: white;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.team-box:hover {
  background-color: #1f2937;
  transform: scale(1.03);
}

/* === Section Headers === */
.section-title-yellow {
  color: #facc15;
}
.section-title-blue {
  color: #60a5fa;
}
.section-title-red {
  color: #f87171;
}
.section-title-green {
  color: #4ade80;
}

/* === Responsive Utilities === */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.rounded {
  border-radius: 0.5rem;
}
