
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Rounded user avatars
- Buttons
- Brand Styles

*/


/* Logo / avatar (persegi, tidak bulat)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.rounded-avatar {
  border-radius: 0;
}

.social-icon {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
  --bgColor: #223344;
  --bgColor2: #090a0f;
  --accentColor: #FFF;
  --font: 'Karla', sans-serif;
  --delay: .3s; }

.button {
  position: relative;
  background-color: transparent;
  color: var(--accentColor);
  border: solid var(--accentColor) 2px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px; /* 17px */
  text-decoration: none;
  /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .button:hover {
      background-color: var(--accentColor);
      color: var(--bgColor);
  }
}

.button:active {
  background-color: var(--accentColor);
  color: var(--bgColor);
}


/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
  padding: 0px 8px 3.5px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.button:hover .icon {
  -webkit-filter: invert(100%) grayscale(100%);
  -moz-filter: invert(100%) grayscale(100%);
  filter: invert(100%) grayscale(100%);
}

/* Compact professional landing layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-landing {
  max-width: 420px;
  padding: 0 0.75rem 1.25rem;
}

.page-landing .column--hero {
  margin-top: 0.5rem !important;
}

.page-landing .rounded-avatar {
  width: 88px !important;
  height: 88px !important;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.page-landing h1 {
  margin-top: 0.35rem;
  margin-bottom: 0.2rem;
}

.lead-block {
  text-align: center;
  padding-bottom: 0.5rem;
}

.lead-block p {
  margin-bottom: 0.35rem !important;
  line-height: 1.45;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.lead-block p:last-child {
  margin-bottom: 0 !important;
}

.lead-block .lead-org {
  display: block;
  margin-top: 0.15rem;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.social-icon-div {
  padding-bottom: 0.65rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

img.social-icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  box-sizing: content-box;
  opacity: 0.92;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

@media (hover: hover) {
  a.social-link:hover img.social-icon {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.page-landing .button {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.4rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  border-radius: 8px;
  background-color: transparent;
  border: solid var(--accentColor) 2px;
  color: var(--accentColor);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  line-height: 1.35;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  text-align: center;
}

@media (hover: hover) {
  .page-landing .button:hover {
    background-color: var(--accentColor);
    color: var(--bgColor);
  }
}

.page-landing .button:active {
  background-color: var(--accentColor);
  color: var(--bgColor);
}

.page-landing .button .icon {
  flex-shrink: 0;
}

.page-landing .footer {
  margin: 0.75rem 0 0.75rem 0 !important;
}