* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Alexandria', sans-serif;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideShow 30s infinite;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 400px;
  max-width: 90%;
  margin-bottom: 50px;
}


.content h1 {
  font-size: 4em;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.5em;
  margin-bottom: 40px;
}

#countdown {
  display: flex;
  gap: 20px;
  font-size: 1.5em;
}

#countdown div {
  text-align: center;
}

#countdown span {
  font-size: 2em;
  display: block;
}

@keyframes slideShow {
  0% { background-image: url('/imgs/bg1.jpg'); }
  33% { background-image: url('/imgs/bg2.jpg'); }
  66% { background-image: url('/imgs/bg3.jpg'); }
  100% { background-image: url('/imgs/bg1.jpg'); }
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 2em;
  }

  #countdown {
    flex-direction: row; /* <-- force inline layout on mobile */
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  #countdown div {
    min-width: 60px;
  }
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 10px;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer {
    padding: 10px 15px;
    font-size: 12px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 5px;
    display: inline-block;
  }

  .footer-left {
    line-height: 1.4;
  }
}


