

.division-title {
  color: red;
  font-size: 1.8em;   /* smaller than the main logo text */
  font-weight: normal; /* lighter so it doesn’t shout too much */
  margin-top: 5px;    /* adds a little space under the logo */
}



/.logo { border: 2px solid red; }/



/* .logo { width: 300px; height:auto; } */  /* old */
.logo { width: 800px; height:auto; }        /* new */








.division-title {
  color: red;
}


.brand {
  text-align: center;
  margin-top: 20px;
}


}

.company-name {
  font-family: "Times New Roman", Georgia, serif; /* serif font */
  font-size: 28px;
  margin: 10px 0 5px;
}

.motto {
  font-family: Arial, sans-serif; /* clean contrast */
  font-size: 20px;
  color: #555;
}





body {
  background: #f9f9f9;
  color: #111;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
}

.logo {
  width: 400px;
  margin: 20px auto;
  display: block;
}

.gate {
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.gate-title {
  margin: 0;
  letter-spacing: 0.15em;
}

.gate-sub {
  margin: 10px 0;
  color: #555;
}

.gate-form input {
  width: 80px;
  text-align: center;
  font-size: 24px;
  padding: 8px;
  margin-right: 10px;
}

.btn {
  background: royalblue;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.panel {
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.links {
  margin-top: 10px;
}

.links a {
  display: inline-block;
  margin: 5px;
}

.hidden {
  display: none;
}

.foot {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}


/* Mobile adjustments */
@media (max-width: 600px) {
  .logo {
    width: 250px;
    height: auto;
  }

  h1, h2, h3, p {
    text-align: center;   /* center headings & text */
  }

  .motto {
    font-size: 0.9em;
  }

  .links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .links .btn {
    width: 90%;
    margin: 6px 0;
    text-align: center;
  }
}

