 /* Global Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #0d1117;
  color: #d1d5db;
  line-height: 1.6;
  padding: 2rem;
}

a {
  color: #00ff99;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00cc88;
}

/* Header & Profile Pic */
header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #00ff99;
  box-shadow: 0 0 15px #00ff99;
  margin-bottom: 1rem;
}

/* Navigation Bar */
nav {
  background-color: #161b22;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

nav a {
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  color: #8b949e;
  font-size: 0.9rem;
}

/* Work Cards */
.card {
  background: #1c2128;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 153, 0.1);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(0, 255, 153, 0.3);
}

/* Contact Form */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  background-color: #2c313a;
  color: white;
}

form button {
  background-color: #00ff99;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  color: black;
}

form button:hover {
  background-color: #00cc88;
}

:root {
  --green-primary: #00ff9f;
  --green-dark: #00cc88;
  --bg-dark: #121212;
  --text-light: #e0ffe0;
  --glow: 0 0 15px var(--green-primary);
}

h1, h2, nav a:hover {
  color: var(--green-primary);
  text-shadow: var(--glow);
  transition: all 0.3s ease-in-out;
}

button {
  background-color: var(--green-primary);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

body {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: var(--glow);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    margin: 10px auto;
  }

  h1 {
    font-size: 24px;
    text-align: center;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}

button {
  background-color: var(--green-primary);
  color: #000;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--glow);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header h1, header p {
    text-align: center;
    padding: 0 10px;
  }

  .card {
    width: 100%;
    margin: 10px 0;
  }

  #workGallery {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  footer {
    text-align: center;
    padding: 20px 10px;
  }

  .social-icons {
    justify-content: center;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  font-size: 1.5rem;
}

.social-icons a {
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: white;
}
#uploadSection form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

#uploadSection textarea {
  min-height: 150px;
}

.uploaded-post {
  background: #f4f4f4;
  padding: 1rem;
  border-left: 4px solid #00ffcc; /* Ammie green */
  margin: 1rem auto;
  max-width: 600px;
}