
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Playfair Display', serif;
  background-color: #fcefe7;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.clicklogo a {
  position: relative;
  right: 2em;
  font-size: 2em;
  font-weight: bold;
  /* Changed from dark gray to white text */
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  left: 5em;

}
/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  background-color: rgb(31, 31, 31);;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #e2d6c5;
}

.main-header a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
}
.main-header a:hover{
    text-decoration: underline;
    color: #d37a33;
}

.main-header a.active {
  color: #d37a33;
  text-decoration: underline;
}

/* ===================== HELP SECTION ===================== */
.help-section {
  text-align: center;
  padding: 4rem 10%;
  flex: 1; /* pushes footer down */
}

.help-section h1 {
  font-size: 2.5rem;
  color: #d37a33;
  margin-bottom: 1rem;
}

.help-section p {
  font-size: 1rem;
  margin-bottom: 3rem;
  color: #555;
}

/* Help grid */
.help-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center; /* center cards horizontally */
}

/* Employee cards */
.help-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  width: 50%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: -10px 0 20px rgb(255, 110, 110), 10px 0 20px rgb(128, 128, 238);
}

.help-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.help-card h2 {
  color: #d37a33;
  margin-bottom: 0.3rem;
}

.help-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Social icons */
.socials a {
  color: #d37a33;
  margin: 0 6px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #a95420;
}

/* Footer */
 footer {
      background-color: #1a1a1a;
      padding: 25px 40px;
      text-align: center;
      border-top: 1px solid #333;
    }

    footer p {
      color: #999;
      font-size: 13px;
      margin: 0;
    }

/* =========================================================
   DICE GLITCH EFFECT
========================================================= */
.dice-icon {
  /* Keep orange accent color for dice icon */
  color: #ffffff;
  font-size: 30px;
  /* Remove animation and add static glitch effect with blue and red shadows */
  position: relative;
  display: inline-block;
  text-shadow: 2px 0 0 #ff0000, -2px 0 0 #0000ff;
}