@import url('styles.css');

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 100px; /* Adjust for header height */
  padding-bottom: 60px; /* Adjust for footer height */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

a.btn {
  text-decoration: none;
}

/* Debugging visibility for hero section */
.hero h1, .hero p {
    opacity: 1 !important; /* Ensure visibility */
    visibility: visible !important; /* Ensure visibility */
    transition: none; /* Disable animations temporarily */
}

/* Ensure header and footer are properly positioned */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}