/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #0f0f0f;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);

  color: white;
}

.navbar h1 {
  font-family: "Rye", serif;
  letter-spacing: 1px;
  font-size: 42px;  /* increase this value */
  font-weight: 700;
}
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* =========================
   HERO (FIXED HEIGHT SYSTEM)
========================= */
.hero {
  position: relative;
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: url("/kaziniphotos/hero.jpg") center/cover no-repeat;
   background-position: center 40%; /* 🔥 moves image downward */
}
.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  align-items: flex-start; /* 🔥 moves text left */
  text-align: left;

  padding-left: 20px; /* adjust strength here */
}
.hero-content p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
  padding-right: 105px;
}.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 700px;

  text-align: left !important;/force padding-left: ;

  padding-left: 40px;
}
.join-btn {
  margin-top: 15px;
  padding: 12px 24px;

  background: #ef4444;
  color: white;
  text-decoration: none;

  border-radius: 8px;
  font-weight: 600;

  transition: 0.3s ease;
}

.join-btn:hover {
  background: #c62828;
  transform: translateY(-2px);
}
/* =========================
   FOOTER (CLEAN + NO GAPS)
========================= */
footer {
  background: #111;
  color: white;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-box h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 14px;
  color: #ccc;
  margin: 6px 0;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.socials a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 20px;
  transition: 0.3s ease;
}

.socials a:hover {
  transform: scale(1.1);
}

.socials a.instagram:hover {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.socials a.twitter:hover {
  background: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    z-index: 3000;
    color: white;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 15px;

    width: 180px;
    padding: 12px;

    display: none;
    flex-direction: column;

    background: white;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    z-index: 2500;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    color: black !important;  /* 🔥 FORCE VISIBILITY */
    font-weight: 500;
    padding: 8px 5px;
  }

  .nav-links a:hover {
    color: #ef4444;
  }

  .hero {
    position: relative;
    z-index: 1;
  }
}