/* ========================================================================
   COMMON STYLES - Shared across all pages
   ======================================================================== */

/* 1. VARIABLES & CORE COLORS */
:root {
  --bg-deep: #1f2021;
  --bg-card: #14151a;
  --raisin-black: #1f2021;
  --off-white: #f9f6f1;
  --accent-blue: #9FA8FF;
  --pale-blue: #acc1fc;
  --accent-yellow: #fffd63;
  --white: #ffffff;
  --dark-navy: #1f274e;
  --grey: #3b3b3b;
  --black: #000000;
  
  --nav-height: 88px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* 2. GLOBAL RESET & BASE */
* {
  box-sizing: border-box;
}

body {
  padding-top: 0 !important;
  font-family: 'Matter', 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* 3. TYPOGRAPHY */
.text-size-medium { font-size: 1.5rem; line-height: 1.5; text-wrap: pretty; }
.text-size-regular { font-size: 1.125rem; line-height: 1.5; text-wrap: pretty; }
.white { color: var(--white); }
.off-white { color: var(--off-white); }

/* 4. NAVBAR FIXES */
.navbar_logo {
  margin-left: -13px;
}

.navbar_component {
    position: absolute !important;
}

/* 5. BUTTONS & INTERACTIONS (Initial Animation States) */
.btn-icon-hidden {
    -webkit-transform: translate3d(-180%, 0, 0) scale3d(1, 1, 1);
    -moz-transform: translate3d(-180%, 0, 0) scale3d(1, 1, 1);
    -ms-transform: translate3d(-180%, 0, 0) scale3d(1, 1, 1);
    transform: translate3d(-180%, 0, 0) scale3d(1, 1, 1);
}

.btn-icon-visible {
    -webkit-transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
    -moz-transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
    -ms-transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
    transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
}

.btn-hover-initial {
    -webkit-transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
    -moz-transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
    -ms-transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
    transform: translate3d(0px, 0, 0) scale3d(1, 1, 1);
}

.btn-hover-box-initial {
    height: 0%;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
}

/* 6. UTILITIES */
.bottom-margin { margin-bottom: 2rem; }
.no-margin { margin: 0; }
.half-bottom { padding-bottom: 3.5rem; }
.half-margins { padding-top: 3.5rem; padding-bottom: 3.5rem; }
