:root {
  --bg: #000;
  --section-bg: #0b0b0b;
  --card-bg: #151515;
  --dark-card: #1b1b1b;
  --text: #fff;
  --muted: #a8a8a8;
  --green: #26c25c;
  --purple: #7b39ff;
  --orange: #ffb03b;
  --toast-from: #32c85b;
  --toast-to: #2fa94e;
}




/* HEADER */
.site-header {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  z-index: 10;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-circle {
  width: 35px; height: 35px; border-radius: 50%;
  background: linear-gradient(135deg, #f7d14b, #e6b800);
}
.logo h1 {
  font-weight: 800;
  font-size: 18px;
}
.logo .purple { color: var(--purple); }
.logo .orange { color: var(--orange); }

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.navbar a:hover { color: var(--purple); }

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}


















/* ============================= */
/* FOOTER STYLES */
/* ============================= */

.footer-logo {
  display: flex;
  align-items: center; /* vertically centers the text and image */
  gap: 10px; /* small space between image and text */
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover; /* ensures image doesn’t stretch */
}

.footer-logo h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff; /* make sure it’s visible */
  margin: 0; /* removes unwanted vertical spacing */
  line-height: 1; /* keeps height tight with the image */
}


.site-footer {
  background: linear-gradient(90deg, #6827d8, #32174d);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* LOGO + ABOUT */
.footer-logo {
  display: flex;
  align-items: left;
  gap: 8px;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer-logo h2 {
  font-size: 20px;
  font-weight: 800;
}

.footer-logo span {
  color: #ffb03b; /* yellowish accent */
}

.footer-about p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-links h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffce45;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-container {
    text-align: left;
  }
  .footer-logo {
    justify-content: left;
  }
}
