﻿/* Extracted from views\pages\index.ejs. Keep page-only styles here. */
body {
    margin: 0;
    background: #101114;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
  }

/* Loading screen styles */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-logo {
  width: 140px;
  height: auto;
  animation: glow 1.6s infinite ease-in-out;
}
@keyframes glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px #d61f2a); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 30px #d61f2a); }
  100% { transform: scale(1); filter: drop-shadow(0 0 10px #d61f2a); }
}
@media (prefers-reduced-motion: reduce) {
  .loading-logo {
    animation: none;
  }
}



    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .hero__container {
        padding: 2rem 1rem;
      }

      .hero {
        min-height: 100svh;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        overflow: hidden;
      }

      .hero__content {
        flex-direction: column;
        text-align: center;
      }

      .hero__info {
        margin-bottom: 2rem;
      }

      @media (max-width: 500px) {
        .hero {
          background-position: 62% top;
        }
      }

 .hero__title {
  font-size: clamp(2rem, 6vw, 4rem);
}


      .hero__descr {
        font-size: 1rem;
      }

      .start__container {
        padding: 2rem 1rem;
        text-align: center;
      }

      .start__title {
        font-size: 2rem;
      }

      .start__descr {
        font-size: 1rem;
      }

      .btn--downloadlg {
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
      }

      .header__nav {
        display: none;
      }

      .mobile {
        display: block !important;
      }

      .header__buttons {
        flex-direction: column;
        gap: 0.5rem;
      }

      .header__buttons button {
        width: 100%;
      }

      .footer__list {
        justify-content: center;
        margin-bottom: 1rem;
      }
    }