/**
 * Link Tree Page Template Stylesheet
 * Standalone — no dependency on styles.css or Bootstrap.
 * Matches Armor brand: dark background, Inter font, gold accent.
 */

/* ==========================================================================
   Font
   ========================================================================== */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --lt-bg-top:      #171717;
  --lt-bg-bottom:   #000000;
  --lt-white:       #ffffff;
  --lt-off-white:   #f0f0f0;
  --lt-gold:        #c39546;
  --lt-item-bg:     rgba(255, 255, 255, 0.06);
  --lt-item-border: rgba(255, 255, 255, 0.12);
  --lt-item-hover:  rgba(255, 255, 255, 0.12);
  --lt-text:        #e9e9e9;
  --lt-radius:      4px;
  --lt-font:        'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  background-color: #11121c;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
}

.link-tree-main {
  margin: 0 auto;
  max-width: 480px;
  padding: 0 25px;
}

p {
  margin: 2.5rem 0;
  text-align: center;
}

.btn {
  background-color: var(--lt-white);
  border: 0 none;
  border-radius: 0;
  box-sizing: border-box;
  display: inline-block;
  color: #000;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .015em;
  min-width: 3.75rem;
  overflow: hidden;
  outline: none;
  position: relative;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color 0.4s;
  vertical-align: middle;
  width: 100%;
}

.btn:hover {
  background-color: #e2e2e2;
  color: #000;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  padding: 50%;
  width: 2rem;
  height: 2rem;
  background-color: #000;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s, transform 0.5s;
}
