/* ==========================================================================
   THE PRINT SHOP - COMING SOON (BALANCED SINGLE SCREEN EDITION)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  /* Core Dark / Light Theme Tokens */
  --bg-primary: #0a0b0e;
  --bg-secondary: #12141c;
  --bg-card: rgba(23, 26, 38, 0.65);
  --bg-card-hover: rgba(32, 36, 52, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-light: rgba(255, 255, 255, 0.16);
  
  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #9aa1b8;
  --text-dim: #646b82;
  
  /* CMYK Signature Accents */
  --cmyk-c: #00e5ff;
  --cmyk-m: #ff007f;
  --cmyk-y: #ffea00;
  --cmyk-k: #111318;
  
  /* Gradients */
  --cmyk-gradient: linear-gradient(90deg, #00e5ff 0%, #ff007f 33%, #ffea00 66%, #ffffff 100%);
  --hero-gradient: linear-gradient(135deg, #ffffff 0%, var(--cmyk-c) 50%, var(--cmyk-m) 100%);
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow-c: 0 0 25px rgba(0, 229, 255, 0.4);
  --shadow-glow-m: 0 0 25px rgba(255, 0, 127, 0.4);
  --shadow-glow-y: 0 0 25px rgba(255, 234, 0, 0.4);

  /* Typography - POPPINS */
  --font-main: 'Poppins', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light / Studio Theme Override */
body.theme-studio {
  --bg-primary: #f6f7fa;
  --bg-secondary: #eaedf5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-light: rgba(0, 0, 0, 0.16);
  --text-main: #111318;
  --text-muted: #5e667e;
  --text-dim: #8b93a7;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

html, body {
  height: 100%;
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.5;
  overflow: hidden; /* Single screen presentation */
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Background Canvas & Grid Overlay */
#inkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
  pointer-events: none;
}

/* Single Screen Full Layout Wrapper */
.app-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s var(--ease-elastic);
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00bcd4;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--cmyk-c);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cmyk-c);
  animation: pulse 1.8s infinite;
}

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

.icon-btn {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-out);
}

.icon-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-light);
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   HERO / MAIN CONTENT (BALANCED CENTER SPACING)
   ========================================================================== */
.hero-container {
  width: 100%;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0;
  padding: 1rem 0;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  max-width: 880px;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text-cmyk {
  background: linear-gradient(90deg, #00e5ff 0%, #ff007f 50%, #ffea00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

/* CMYK Interactive Splash Bar */
.cmyk-interactive-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  backdrop-filter: blur(20px);
  margin-bottom: 2.4rem;
  box-shadow: var(--shadow-md);
}

.cmyk-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.4rem;
}

.ink-drop-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

body.theme-studio .ink-drop-btn {
  background: #ffffff;
}

.ink-drop-btn:hover {
  transform: translateY(-2px) scale(1.04);
}

.ink-drop-btn.c-btn:hover { border-color: var(--cmyk-c); box-shadow: var(--shadow-glow-c); }
.ink-drop-btn.m-btn:hover { border-color: var(--cmyk-m); box-shadow: var(--shadow-glow-m); }
.ink-drop-btn.y-btn:hover { border-color: var(--cmyk-y); box-shadow: var(--shadow-glow-y); }
.ink-drop-btn.k-btn:hover { border-color: var(--text-main); box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }

.drop-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.drop-indicator.c { background: var(--cmyk-c); }
.drop-indicator.m { background: var(--cmyk-m); }
.drop-indicator.y { background: var(--cmyk-y); }
.drop-indicator.k { background: #111318; }

/* COUNTDOWN TIMER BOXES */
.countdown-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 660px;
}

.countdown-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cmyk-gradient);
  opacity: 0.7;
}

.countdown-box:hover {
  transform: translateY(-3px);
  border-color: var(--glass-border-light);
  box-shadow: var(--shadow-md);
}

.countdown-value {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -1px;
  margin-bottom: 0.35rem;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

/* FOOTER */
.site-footer-minimal {
  padding-bottom: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  font-weight: 500;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card-hover);
  border: 1px solid var(--cmyk-c);
  color: var(--text-main);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease-elastic);
  backdrop-filter: blur(20px);
  font-size: 0.88rem;
  font-weight: 500;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 600px) {
  .brand-logo-img {
    height: 40px;
  }
  .countdown-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .cmyk-interactive-bar {
    flex-wrap: wrap;
    border-radius: 20px;
  }
}
