/* style.css */
body {
  font-family: "Arial", sans-serif;
}

.neon-border {
  border: 1px solid #00ffcc;
  box-shadow: 0 0 5px #00ffcc;
}

input::placeholder {
  color: #9ca3af; /* Tailwind's text-gray-400 color */
}

div[data-item] {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #374151; /* Tailwind's bg-gray-700 color */
  border-radius: 9999px; /* Tailwind's rounded-full class */
  color: #00ffcc;
  border: 1px solid #00ffcc;
}

:root {
  --bg-color: #1a202c;
  --text-color: white;
  --bg-secondary-color: #2d3748;
  --text-secondary-color: #cbd5e0;
}

[data-theme="light"] {
  --bg-color: #f2f4f8; /* Softer light background */
  --text-color: #2e3a59; /* Darker, softer text color */
  --bg-secondary-color: #e1e5ea; /* Softer secondary background */
  --text-secondary-color: #4a5568;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.bg-gray-900 {
  background-color: var(--bg-color);
}

.text-white {
  color: var(--text-color);
}

.bg-gray-800 {
  background-color: var(--bg-secondary-color);
}

.text-gray-400 {
  color: var(--text-secondary-color);
}

/* Responsiveness */
@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .neon-border {
    padding: 1rem;
  }

  div[data-item] {
    margin: 0.25rem;
    padding: 0.25rem 0.5rem;
  }

  .header,
  .profile-form,
  .skills-list,
  .job-list {
    flex-direction: column;
    align-items: center;
  }

  .header h1 {
    font-size: 2xl;
  }

  .header p {
    font-size: sm;
  }

  .theme-toggle {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .neon-border {
    padding: 1.5rem;
  }

  div[data-item] {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .header h1 {
    font-size: 3xl;
  }

  .header p {
    font-size: md;
  }

  .theme-toggle {
    margin-top: 1rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .neon-border {
    padding: 2rem;
  }

  div[data-item] {
    margin: 0.75rem;
    padding: 0.75rem 1.5rem;
  }

  .header h1 {
    font-size: 4xl;
  }

  .header p {
    font-size: lg;
  }

  .theme-toggle {
    margin-top: 1rem;
  }
}
