 /**
* Core
**/
body {
    color: #ffffff;
    background: #272932;
    font-family: 'Helvetica';
}

.link {
  color: #37EBF3;
  text-decoration: none;
}

.link:hover {
  color: #37EBF3;
  text-decoration: underline;
}

/**
* Classes
**/
.btn {
  margin-bottom: .5em;
}

.small {
  font-size: 14px;
}

.logo-lg {
  display: block;
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
}

.img-office {
  width: 100%;
  border: 2px solid #710000;
  border-radius: calc(0.5rem - 1px);
}

/**
* Color Classes
**/
.black {
  color: #272932;
}
  
.red {
color: #710000;
}

.yellow {
  color: #FDF500;
}

.keppel {
  color: #1AC5B0;
}

.blue {
  color: #37EBF3;
}

.purple {
  color: #9370DB;
}

.frost {
  color: #E455AE;
}

.pink {
  color: #CB1DCD;
}

.silver {
  color: #D1C5C0;
}

/**
* Buttons
**/
.btn-keppel-blue {
  background-image: linear-gradient(45deg, #1AC5B0, #9370DB, #1AC5B0);
  background-size: 200% 200%;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Helvetica Bold';
  transition: background-position 3s ease;
  font-size: 1.2em;
}

.btn-keppel-blue:hover {
  background-position: right center;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Helvetica Bold';
  font-size: 1.2em;
}

.btn-frost {
  background-image: linear-gradient(45deg, #E455AE, #1AC5B0, #E455AE);
  background-size: 200% 200%;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Helvetica Bold';
  transition: background-position 3s ease;
  font-size: 1.2em;
}

.btn-frost:hover {
  background-position: right center;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Helvetica Bold';
  font-size: 1.2em;
}

.btn-aporo {
    background: linear-gradient(90deg, #ffe800, #ff65c3, #3bc5ff);
    font-family: 'Helvetica Bold';
    border: none;
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 12px rgba(255, 232, 0, 0.4),
                0 0 24px rgba(255, 101, 195, 0.3),
                0 0 18px rgba(59, 197, 255, 0.3);
}
.btn-aporo:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(255, 232, 0, 0.6),
                0 0 32px rgba(255, 101, 195, 0.5),
                0 0 24px rgba(59, 197, 255, 0.5);
}
.btn-aporo:active {
    transform: scale(0.98);
}

/**
* backgrounds
**/
.bg-dark {
  background-color: #272932;
}

.bg-silver {
  background-color: #D1C5C0;
}

/**
* Content
**/
#main {
    width: 97%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5em 0;
}

#mainLight {
    width: 97%;
    max-width: 1200px;
    margin: 2.0em auto;
    padding: 1em;
    background: #ffffff;
    border: 2px solid #710000;
    border-radius: 4px auto;
    color: #212529;
}

/**
* Navigation
**/
.bg-light {
  color: #ffffff;
  background: #272932 !important;
}

.navbar-brand, .nav-item a {
  color: #FDF500 !important;
  font-family: 'Alpha Centauri' !important;
}

.navbar-brand:hover, .nav-item a:hover {
  color: #FDF500 !important;
  text-decoration: underline !important;
}


/**
* Footer
**/
#footer {
    /* background: #710000; */
    width: 100%;
    background: #FDF500;
    color: #212529;
}

#footerContent {
    width: 97%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5em 0;
}

#footerContent a {
  color: #212529;
}

#footerContent a:hover {
  text-decoration: none;
}

/**
* Font Families
**/
@font-face {
  font-family: 'Alpha Centauri';
  src: url('../font/AlphaCentauri.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Bold';
  src: url('../font/Helvetica-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/**
* Font Classes
**/
.alpha {
  font-family: 'Alpha Centauri';
}

.hel {
  font-family: 'Helvetica';
}

.helb {
  font-family: 'Helvetica Bold';
}