/* ==========================================================================
   72HoursMerch.nl — Master Stylesheet & Supply72 Garment Collection System
   Matching Supply72.nl & Screens.ink Multi-Tenant Design Specification
   ========================================================================== */

:root {
  --bg-primary: #080a0f;
  --bg-secondary: #10141e;
  --bg-card: #151b28;
  --bg-card-hover: #1c2436;

  --accent-orange: #ff5e1a;
  --accent-orange-hover: #e04b08;
  --accent-yellow: #ffb800;
  --accent-glow: rgba(255, 94, 26, 0.3);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-color: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(255, 94, 26, 0.45);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.025em;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 10, 15, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  color: #080a0f;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(255, 94, 26, 0.3);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.logo-text span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: #ffffff;
  font-family: var(--font-heading);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 94, 26, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-heading);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Hero Section */
.hero {
  padding: 6.5rem 2rem 1rem;
  max-width: 1480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 94, 26, 0.18) 0%, rgba(8, 10, 15, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 94, 26, 0.12);
  border: 1px solid rgba(255, 94, 26, 0.35);
  color: var(--accent-orange);
  font-family: var(--font-heading);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 1.3rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* Supply72 Garment Showcase Grid (Big Cards) */
.supply72-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
  margin-top: 2rem;
}

.supply72-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.supply72-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.supply72-img-box {
  position: relative;
  width: 100%;
  height: 440px;
  background: #181e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.supply72-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s ease;
}

.supply72-card:hover .supply72-img-box img {
  transform: scale(1.04);
}

.supply72-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #080a0f;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.supply72-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.supply72-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.supply72-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

.supply72-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.supply72-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.supply72-swatches {
  display: flex;
  gap: 6px;
  align-items: center;
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

/* Studio Embed Wrapper — Bigger Frame & Tighter Padding */
.studio-wrapper {
  position: relative;
  width: 100%;
  min-height: 960px;
  height: 92vh;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
  margin-top: 1.2rem;
  transition: border-color var(--transition-fast);
}

.studio-wrapper:hover {
  border-color: rgba(255, 94, 26, 0.45);
}

.studio-iframe {
  width: 100%;
  height: 100%;
  min-height: 960px;
  border: none;
  background: #080a0f;
  display: block;
}

/* Section Containers & Headers */
.section-container {
  max-width: 1520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* Timeline Stepper */
.timeline-section {
  background: var(--bg-secondary);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
}

.timeline-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.timeline-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Estimator Section */
.estimator-section {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--border-color);
}

.estimator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0,0,0,0.55);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(8, 10, 15, 0.75);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.02rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-orange);
}

.price-summary {
  background: rgba(255, 94, 26, 0.08);
  border: 1px dashed rgba(255, 94, 26, 0.35);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 2rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-orange);
  letter-spacing: -0.02em;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--text-main);
  text-decoration: underline;
}
