html, body {
  height: 100vh;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  line-height: 1.7;
  min-height: 100vh;
  background: url('/assets/images/banner.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-content {
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.link-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 2rem 3rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: #bb100f;
  font-size: 1.5rem;
  font-weight: 500;
  min-width: 250px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  background: #fff;
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.2rem;
    }
    .links {
        flex-direction: column;
        gap: 1.2rem;
    }
    .link-card {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
        min-width: 160px;
    }
    .page-content {
        padding: 1rem;
    }
}

.logo {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 150px;
  height: auto;
}
