* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #3b0a45; /* matches FacileMind logo tone */
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url("hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #5a0f6f;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #7a1f90;
}

/* EMAIL */
.email {
  display: block;
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}

a.button {
      display: inline-block;
      background-color: #5b1783;
      color: #fff;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    a.button:hover {
      background-color: #7a1f90;
    }
/* LINKEDIN FIXED BUTTON */
.linkedin-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #5b1783;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  z-index: 9999;
  transition: 0.3s ease;
}

.linkedin-btn:hover {
  background-color: #7a1f90;
}
