/* --- General Styles --- */
body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #202020;
  font-family: 'Lato', sans-serif;
}

.top-logo {
  position: fixed;
  bottom: 70px;                 /* distance from bottom */
  left: 5%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
  z-index: 10;
  opacity: 0.95;
  animation: fadeIn 1.5s ease forwards;
  transition: all 0.3s ease;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 0.95; transform: translate(-50%, 0); }
}

/* -------- Responsive Adjustments -------- */

/* For tablets (width < 992px) */
@media (max-width: 992px) {
  .top-logo {
    bottom: 60px;
    left: 8%;
    width: 70px;
  }
}

/* For mobile landscape & small tablets (width < 768px) */
@media (max-width: 768px) {
  .top-logo {
    bottom: 50px;
    left: 10%;
    width: 60px;
  }
}

/* For mobile portrait (width < 480px) */
@media (max-width: 480px) {
  .top-logo {
    bottom: 40px;
    left: 12%;
    width: 50px;
  }
}


/* --- Top Text --- */
.top-text {
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 10;
}

.top-text h1 {
  font-size: 3vw; /* responsive large screen */
  margin: 0;
}

.top-text h2 {
  font-size: 2vw;
  margin: 5px 0 0;
  font-weight: 400;
}

/* --- Bottom Center --- */
.bottom-center {
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
  font-size: 1.2vw;
  color: white;
  z-index: 10;
}

/* --- Bottom Left --- */
.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1vw;
  color: white;
  z-index: 10;
}

/* --- Bottom Right --- */
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1vw;
  color: white;
  z-index: 10;
}

.bottom-right a {
  color: white;
  text-decoration: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .top-text h1 {
    font-size: 6vw;
  }
  .top-text h2 {
    font-size: 4vw;
  }
  .bottom-center {
    font-size: 1.5vw;
  }
  .bottom-left,
  .bottom-right {
    font-size: 1.2vw;
  }
}

@media (max-width: 768px) {
  .top-text h1 {
    font-size: 8vw;
  }
  .top-text h2 {
    font-size: 5vw;
  }
  .bottom-center {
    font-size: 2vw;
  }
  .bottom-left,
  .bottom-right {
    font-size: 1.5vw;
  }
}

@media (max-width: 480px) {
  .top-text h1 {
    font-size: 10vw;
  }
  .top-text h2 {
    font-size: 6vw;
  }
  .bottom-center {
    font-size: 2.5vw;
  }
  .bottom-left,
  .bottom-right {
    font-size: 2vw;
  }
}
