#main-content {
  background-image: url('../images/bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 750px;
}

header {
  position: relative;
  z-index: 10;
}

.shadow {
  background-color: rgba(0, 0, 0, 0.65);
}

.top-bar {
  background-color: #000;
  color: #ff914d;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;

  a {
    color: #ff914d;
    text-decoration: none;

    &:visited,
    &:active,
    &:hover {
      color: #ff914d;
      text-decoration: none;
    }
  }
}

.navbar {
  height: 100%;
  margin: 0;
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: 1px solid #ff914d;
  border-bottom: 1px solid #fff;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 24px;
    font-weight: bold;

    a {
      color: #ff914d;
      text-decoration: none;
    }
  }

  .auth {
    .admin {
      text-decoration: none;
    }

    .button {
      font-size: 13px;
      font-family: "Montserrat", sans-serif;
      background-color: #ff914d;
      border: none;
      padding: 8px 12px;
      border-radius: 5px;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;

      &:hover {
        background-color: #e06f26;
        transform: scale(1.05);
      }
    }
  }

  .nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;

    li {
      a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease;

        &:hover {
          color: #ff914d;
        }

        &.active {
          background-color: #2a2a2a;
          padding: 5px 10px;
          border-radius: 8px;
          color: white;
        }
      }
    }
  }
}

.hero {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px;

  @media (min-width: 769px) {
    flex-direction: row;
  }

  .hero-text {
    flex: 1;
    min-width: 250px;

    .tg {
      a,
      &.tg-link,
      &:visited,
      &:active,
      &:hover {
        color: #ff914d;
        text-decoration: none;
      }
    }

    .hero-text-important {
      border-radius: 8px;
      margin-top: 25px;
      padding: 5px;
      border: 1px solid #ddd;
    }
  }

  .hero-img {
    flex: 1;
    min-width: 250px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ddd;

    img {
      width: 100%;
      border-radius: 15px;
      display: block;
    }
  }
}

.login {
  background-image: url('../images/bg_login.jpg');
  background-size: cover;
  margin: 20px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  min-height: 190px;

  h3 {
    margin-top: 0;
    color: #ff914d;
  }

  .tg {
    margin-top: 15px;
    margin-bottom: 0;

    a,
    &.tg-link,
    &:visited,
    &:active,
    &:hover {
      color: #ff914d;
      text-decoration: none;
    }
  }

  .errorlist {
    padding-left: 0;
    margin: 0;

    li {