.c1--hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  background: url("/assets/c1.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.c1--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.80);
  z-index: 1;
}

.c1--content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* .c1--title {
  margin-bottom: 20px;
} */

.c1--logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.c1--subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 30px;
}

.c1--btn {
  background: #facc15;
  color: black;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c1--btn:hover {
  background: #eab308;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .c1--logo {
    max-width: 400px;
  }
  .c1--subtitle {
    font-size: 1.3rem;
  }
  .c1--btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .c1--hero {
    height: 70vh;
    padding: 20px;
  }
  .c1--logo {
    max-width: 300px;
  }
  .c1--subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .c1--logo {
    max-width: 250px;
  }
  .c1--subtitle {
    font-size: 1rem;
  }
  .c1--btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}