
/* 🔤 Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* 🔶 Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6a00;
  text-shadow: 0 0 10px #ff6a00;
}

.nav {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ff6a00;
}

.hero-content {
  text-align: center;
  margin-top: auto;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 20px #ff6a00;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #ccc;
}

.cta {
  padding: 12px 24px;
  font-size: 1rem;
  background: linear-gradient(90deg, #ff6a00, #ff0066);
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 15px #ff6a00;
  transition: transform 0.3s ease;
}

.cta:hover {
  transform: scale(1.05);
}

/* 📊 GitHub Stats Panel */
.stats-panel {
  padding: 60px 20px;
  text-align: center;
  background-color: #111;
}

.stats-panel h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6a00;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  width: 150px;
  box-shadow: 0 0 10px #ff6a00;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 2rem;
  color: #fff;
}

.stat-box p {
  font-size: 1rem;
  color: #aaa;
}

/* 🧠 Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #000;
  color: #666;
  font-size: 0.9rem;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 10px;
}

.project-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 15px #ff6a00;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  color: #ccc;
}

.project-info h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tags span {
  background-color: #333;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #ff6a00;
}

.actions a {
  text-decoration: none;
  color: #ff6a00;
  font-weight: bold;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.actions a:hover {
  color: #ff0066;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}

.badge.green { background-color: #00cc66; }
.badge.orange { background-color: #ff9900; }
.badge.pink { background-color: #ff66b2; }
.badge.blue { background-color: #3399ff; }
.collab-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.collaborations {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
}

.collaborations h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7;
}

.collab-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 10px;
}

.collab-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 15px #00ffe7;
  transition: transform 0.3s ease;
  position: relative;
}

.collab-card:hover {
  transform: translateY(-10px);
}

.collab-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.collab-info {
  padding: 20px;
  color: #ccc;
}

.collab-info h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.collab-info p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.collab-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.collab-tags span {
  background-color: #333;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #00ffe7;
}

.collab-actions a {
  text-decoration: none;
  color: #00ffe7;
  font-weight: bold;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.collab-actions a:hover {
  color: #ff0066;
}

.collab-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}

.collab-badge.green { background-color: #00cc66; }
.collab-badge.orange { background-color: #ff9900; }
.collab-badge.pink { background-color: #ff66b2; }
.collab-badge.blue { background-color: #3399ff; }


.legacy {
  padding: 60px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.legacy h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff6a00;
  text-shadow: 0 0 10px #ff6a00;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 10px;
}

.legacy-card {
  background: #1a1a1a;
  border: 2px solid #ff6a00;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px #ff6a00;
  transition: transform 0.3s ease;
}

.legacy-card:hover {
  transform: translateY(-8px);
}

.legacy-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.legacy-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.contact {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6a00;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  background: linear-gradient(90deg, #ff6a00, #ff0066);
  border: none;
  border-radius: 30px;
  padding: 12px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 15px #ff6a00;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
}

.social {
  padding: 40px 20px;
  background-color: #111;
  text-align: center;
}

.social h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00ffe7;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-links a {
  color: #00ffe7;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff0066;
}

.about-note {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #ccc;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.note-container {
  max-width: 800px;
  background-color: #121212;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffe7;
  font-family: 'Orbitron', sans-serif;
}

.note-container h1 {
  font-size: 2.2rem;
  color: #00ffe7;
  margin-bottom: 20px;
}

.note-container h2 {
  font-size: 1.4rem;
  color: #ff6a00;
  margin-top: 30px;
}

.note-container p, .note-container ul {
  font-size: 1rem;
  line-height: 1.6;
}

.note-container ul {
  padding-left: 20px;
}

.testimonials {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
  color: #ccc;
}

.testimonials h2 {
  font-size: 1.8rem;
  color: #ff6a00;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff6a00;
}

.testimonials p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.mulaa-core,
.mulaa-note,
.join-mulaa {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
  color: #ccc;
}

.mulaa-core h2,
.mulaa-note h2,
.join-mulaa h2 {
  font-size: 2rem;
  color: #00ffe7;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00ffe7;
}

.mulaa-core p,
.mulaa-note p,
.join-mulaa p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.quiet-inspiration {
  padding: 60px 20px;
  background-color: #121212;
  text-align: center;
  color: #ccc;
}

.quiet-inspiration h2 {
  font-size: 1.8rem;
  color: #ff66b2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff66b2;
}

.quiet-inspiration p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}
