@import url('design-tokens.css');

html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

body {
  font-family: var(--zdk-font-body);
  background-color: var(--zdk-bg);
  color: var(--zdk-charcoal);
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--zdk-font-heading);
}

/* Glassmorphism Cards */
.zdk-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--zdk-radius-md);
  box-shadow: var(--zdk-shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zdk-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zdk-shadow-lg);
}

/* Shader Canvas Canvas Styling */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Custom Buttons */
.btn-zdk-primary {
  background: var(--zdk-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--zdk-radius-full);
  box-shadow: var(--zdk-shadow-glow);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-zdk-primary:hover {
  background: var(--zdk-primary-light);
  transform: scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 76, 17, 0.35);
}

.btn-zdk-amber {
  background: var(--zdk-amber);
  color: var(--zdk-charcoal);
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: var(--zdk-radius-full);
  box-shadow: 0 6px 20px rgba(255, 188, 19, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-zdk-amber:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 188, 19, 0.5);
}

/* Badge Pill */
.zdk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--zdk-radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zdk-badge-amber {
  background: var(--zdk-amber-soft);
  color: var(--zdk-amber-dark);
  border: 1px solid rgba(255, 188, 19, 0.3);
}

.zdk-badge-green {
  background: var(--zdk-primary-soft);
  color: var(--zdk-primary-light);
  border: 1px solid rgba(22, 102, 33, 0.2);
}

/* Custom Navigation Bar Blur */
.zdk-navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zdk-border);
}
