/* style.css */

:root {
  --primary-color: #000000;
  --secondary-color: #444444;
  --accent-color: #cccccc;
  --text-color: #f0f0f0;
  --link-color: #999999;
  --hover-color: #bbbbbb;
  --background-color: #121212;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--background-color);
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

header {
  background: linear-gradient(to right, #333, #111);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in-out;
}

h2 {
  color: var(--accent-color);
  border-bottom: 2px solid var(--hover-color);
  padding-bottom: 0.5rem;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
}

ul {
  padding-left: 1.2rem;
}

footer {
  background: #1a1a1a;
  color: var(--text-color);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.project-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.project-buttons a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.project-buttons .github {
  background-color: #444;
  color: white;
}

.project-buttons .github:hover {
  background-color: #666;
}

project-buttons .demo {
  background-color: #777;
  color: white;
}

.project-buttons .demo:hover {
  background-color: #999;
}/* Link colors for dark background */
a {
  color: #48D1CC; /* Change this to your favorite from the list I gave */
  text-decoration: none;
}

a:hover {
  color: #00FFFF; /* Optional: brightens link on hover */
}#contact {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#contact h2 {
  color: #ff6ec4;
  font-size: 2rem;
  margin-bottom: 1rem;
}

#contact p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ccc;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid #ff6ec4;
}

.send-button {
  background: #ff6ec4;
  color: #000;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-button:hover {
  background: #ff3cac;
}