/*
Theme Name: Bambox Premium
Theme URI: https://bambox.shop
Author: Bambox Studio
Description: Ultra-luxury, mobile-first POD & corporate merchandise platform.
Version: 1.0.0
Text Domain: bambox
*/

/* ============================================================
   1. RESET & NORMALIZATION (ENTERPRISE SAFE)
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   2. DESIGN TOKENS (GLOBAL SYSTEM)
============================================================ */

:root {

  /* ---------- COLORS ---------- */
  --black: #0b0b0c;
  --black-soft: #121214;
  --white: #ffffff;

  --grey-100: #f7f7f8;
  --grey-200: #e6e6e8;
  --grey-300: #cccccf;
  --grey-500: #77777b;
  --grey-700: #444448;

  --accent-gold: #b99a5b; /* Champagne Gold */

  /* ---------- TYPOGRAPHY ---------- */
  --font-primary: 'Inter', sans-serif;

  /* ---------- LAYOUT ---------- */
  --container: 1200px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* ---------- SPACING ---------- */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-xxl: 120px;

  /* ---------- MOTION ---------- */
  --ease: cubic-bezier(.19,1,.22,1);
  --speed-fast: 150ms;
  --speed-normal: 300ms;
  --speed-slow: 600ms;
}

/* ============================================================
   3. TYPOGRAPHY SYSTEM
============================================================ */

h1, h2, h3, h4, h5 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.6rem;
}

p {
  font-size: 1rem;
  color: var(--grey-700);
}

small {
  font-size: 0.85rem;
  color: var(--grey-500);
}

/* ============================================================
   4. LINKS & MEDIA
============================================================ */

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--speed-fast) var(--ease);
}

a:hover {
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   5. LAYOUT UTILITIES
============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
}

.section--tight {
  padding: var(--space-xl) 0;
}

.text-center {
  text-align: center;
}

.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================================
   6. HEADER & NAVIGATION
============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--grey-200);
  backdrop-filter: blur(8px);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.nav-menu a:hover {
  color: var(--black);
}

/* ============================================================
   7. BUTTON SYSTEM (PREMIUM)
============================================================ */

.btn,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--speed-normal) var(--ease);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   8. FORM SYSTEM (ENTERPRISE SAFE)
============================================================ */

form {
  width: 100%;
}

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--grey-300);
  font-size: 0.95rem;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--black);
}

/* ============================================================
   9. FOOTER
============================================================ */

.site-footer {
  border-top: 1px solid var(--grey-200);
  padding: var(--space-lg) 0;
  font-size: 0.8rem;
  color: var(--grey-500);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================================
   10. RESPONSIVE (MOBILE FIRST)
============================================================ */

@media (max-width: 768px) {

  .nav-menu {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }
}
