/* ============================================
   DIGITAL PRINTING PAGE STYLES
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.digital-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.digital-hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.digital-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.digital-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  gap: 10px;
}

.digital-hero .hero-logo {
  margin-bottom: 10px;
  max-width: 515px;
  width: 100%;
}

.digital-hero .hero-logo img {
  max-width: 515px;
  width: 100%;
}

/* Hero Animations */
@keyframes digitalHeroSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes digitalHeroSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes digitalHeroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.digital-hero .hero-logo {
  animation: digitalHeroSlideDown 0.8s ease 0.2s forwards;
  opacity: 0;
}

.digital-hero .hero-presents {
  animation: digitalHeroSlideUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

.digital-hero .hero-title {
  animation: digitalHeroZoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.9s forwards;
  opacity: 0;
}

.digital-hero .digital-hero-line {
  animation: digitalHeroSlideUp 0.6s ease 1.2s forwards;
  opacity: 0;
}

.digital-hero .hero-chevron {
  animation: digitalHeroSlideUp 0.6s ease 1.4s forwards;
  opacity: 0;
}

.hero-presents {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  color: #ffffff;
  letter-spacing: 8px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 120px);
  margin: 0;
  letter-spacing: 3px;
  text-align: center;
  line-height: 0.95;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
}

/* Yellow color for DIGITAL PRINTING title */
.text-orange-gradient {
  color: var(--yellow);
}

.digital-hero-line {
  width: 100%;
  max-width: 500px;
  margin: 15px auto;
}

.hero-chevron {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  color: var(--yellow);
  text-decoration: none;
  animation: bounce 2s infinite;
  font-weight: bold;
}

.hero-chevron i {
  font-size: 28px;
  font-weight: 900;
  line-height: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ============================================
   REVOLUTIONIZE SECTION
   ============================================ */
.revolutionize-section {
  position: relative;
  padding: 50px 20px;
  background: var(--black);
  overflow: hidden;
}

.revolutionize-section .cmyk-drips {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  max-width: 650px;
  height: auto;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

.revolutionize-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.revolutionize-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7.8vw, 83px);
  line-height: 0.95;
  margin: 0 0 30px 0;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 40px 20px;
  background: var(--black);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.experience-content .section-heading {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.experience-video {
  position: relative;
}

.experience-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 4px solid var(--magenta);
  border-radius: 8px;
  transform: rotate(3deg) scale(1);
  transition: transform 0.3s ease;
}

.experience-video iframe:hover {
  transform: rotate(0deg) scale(1.05);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
  padding: 40px 20px;
  background: var(--black);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-choose-image img {
  max-width: 100%;
  height: auto;
}

.why-choose-content .section-heading {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Accordion styles - reuse from hybrid-page.css */
.digital-accordion .accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.digital-accordion .accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.digital-accordion .accordion-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.digital-accordion .accordion-item.active .accordion-title {
  color: rgb(247, 210, 0);
}

.digital-accordion .accordion-header:hover .accordion-title {
  color: var(--magenta);
}

.digital-accordion .accordion-icon {
  color: var(--magenta);
  font-size: 14px;
  flex-shrink: 0;
}

.digital-accordion .accordion-item.active .accordion-icon {
  color: var(--cyan);
}

.digital-accordion .accordion-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.digital-accordion .accordion-item.active .accordion-wrapper {
  grid-template-rows: 1fr;
}

.digital-accordion .accordion-content {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.digital-accordion .accordion-item.active .accordion-content {
  opacity: 1;
}

.digital-accordion .accordion-content p {
  padding: 0 0 20px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CUSTOM STOREFRONTS SECTION
   ============================================ */
.storefronts-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a0a1f 0%, #2d1040 50%, #1a0a1f 100%);
  position: relative;
  overflow: hidden;
}

.storefronts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/Halftone-Reveal-10px.png') repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.storefronts-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cmyk);
  z-index: 2;
}

.storefronts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.storefronts-content .section-heading {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.1;
  margin-bottom: 10px;
}

.storefronts-content .cyan-line {
  width: 100%;
  max-width: 550px;
  height: 4px;
  background: var(--gradient-cmyk);
  margin-bottom: 20px;
}

.storefronts-image img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   BETTER TOGETHER SECTION
   ============================================ */
.better-together-section {
  padding: 40px 20px 80px;
  background: var(--black);
  text-align: center;
}

.better-together-section .gradient-line {
  max-width: 600px;
  margin: 30px auto;
}

.better-together-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--white);
  letter-spacing: 8px;
  margin: 0 0 10px 0;
}

.better-together-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 100px);
  margin: 0 0 30px 0;
  line-height: 1;
}

/* Make spans inline-block so transforms work */
.better-together-title span {
  display: inline-block;
  will-change: transform, opacity;
}

/* HYBRID - slides in from LEFT */
.better-together-title .fade-in-left {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.better-together-title .fade-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* + symbol - slides up from below */
.better-together-title .fade-in-up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.better-together-title .fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* DIGITAL - slides in from RIGHT */
.better-together-title .fade-in-right {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.better-together-title .fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

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

.better-together-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.better-together-content .body-text {
  text-align: center;
  margin: 0 auto 15px;
}

/* ============================================
   GANG SHEETS SECTION
   ============================================ */
.gang-sheets-section {
  padding: 40px 20px 80px;
  background: var(--black);
}

.gang-sheets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gang-sheets-image img {
  max-width: 100%;
  height: auto;
}

.gang-sheets-content .section-heading {
  font-size: clamp(40px, 6.25vw, 65px);
  line-height: 1.1;
  margin-bottom: 10px;
}

.gang-sheets-content .magenta-line {
  width: 100%;
  height: 4px;
  background: var(--gradient-cmyk);
  margin-bottom: 20px;
}

.gang-sheets-content .body-text {
  margin-bottom: 10px;
}

.benefits-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.benefits-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: var(--white);
  font-size: 15px;
}

.benefits-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SAMPLE SECTION (Want to see for yourself)
   ============================================ */
.sample-section {
  padding: 50px 0 80px;
  padding-right: 200px;
  background: var(--black);
  position: relative;
  overflow: visible;
}

.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.sample-robot {
  position: relative;
  z-index: 2;
  margin-left: -80px;
}

.sample-robot img {
  max-width: 372px;
  width: 100%;
}

.sample-content {
  position: relative;
  z-index: 2;
}

.sample-content .section-heading {
  font-size: clamp(60px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.sample-form {
  max-width: 500px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.sample-form input {
  width: 100%;
  padding: 12px 15px;
  background: var(--white);
  border: none;
  border-radius: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
}

.sample-form input::placeholder {
  color: #999;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.form-checkbox label {
  font-size: 12px;
  color: var(--white);
  line-height: 1.4;
}

.sample-form button {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 2px solid var(--yellow);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sample-form button:hover {
  background: var(--yellow);
  color: var(--black);
}

/* CMYK drips at bottom */
.sample-drips {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url('../images/CMYKBG-Bottom-Left.jpg') no-repeat bottom left;
  background-size: cover;
  z-index: 1;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
  .why-choose-section,
  .experience-section,
  .revolutionize-section,
  .storefronts-section,
  .gang-sheets-section,
  .better-together-section,
  .sample-section {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .experience-grid,
  .why-choose-grid,
  .storefronts-grid,
  .gang-sheets-grid,
  .sample-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-image {
    order: -1;
    text-align: center;
  }

  .why-choose-image img {
    max-width: 500px;
    width: 100%;
  }

  .gang-sheets-image {
    text-align: center;
  }

  .gang-sheets-image img {
    max-width: 400px;
  }

  /* Sample section - CRITICAL FIX for padding-right overflow */
  .sample-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sample-robot {
    margin-left: 0;
    text-align: center;
  }

  .sample-robot img {
    max-width: 280px;
    margin: 0 auto;
  }

  .sample-content {
    padding-bottom: 200px;
  }

  .sample-drips {
    height: 300px;
  }

  /* Section padding standardization */
  .revolutionize-section,
  .experience-section,
  .why-choose-section,
  .gang-sheets-section {
    padding: 40px 20px;
  }

  .storefronts-section {
    padding: 60px 20px;
  }

  .better-together-section {
    padding: 40px 20px 60px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-presents {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .revolutionize-heading {
    font-size: 28px;
  }

  .digital-footer .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social span {
    width: 100%;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Sample section */
  .sample-section {
    padding: 40px 15px 60px;
  }

  .sample-robot img {
    max-width: 220px;
  }

  .sample-content {
    padding-bottom: 150px;
  }

  .sample-content .section-heading {
    font-size: clamp(40px, 10vw, 60px);
    text-align: center;
  }

  .sample-form {
    max-width: 100%;
    margin: 0 auto;
  }

  .sample-drips {
    height: 200px;
  }

  /* All sections - reduce padding */
  .revolutionize-section,
  .experience-section,
  .why-choose-section,
  .gang-sheets-section {
    padding: 30px 15px;
  }

  .storefronts-section {
    padding: 50px 15px;
  }

  .better-together-section {
    padding: 30px 15px 50px;
  }

  /* Why Choose section - ensure proper containment */
  .why-choose-grid {
    gap: 30px;
  }

  .why-choose-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .why-choose-image img {
    max-width: 100%;
  }

  .why-choose-content {
    overflow: hidden;
  }

  .why-choose-content .section-heading {
    text-align: center;
  }

  .digital-accordion .accordion-content p {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .digital-accordion .accordion-title {
    font-size: 14px;
  }

  /* HIDE ROBOT - matches homepage pattern */
  .sample-robot {
    display: none;
  }

  .sample-section {
    padding: 30px 15px 50px;
  }

  .sample-content {
    padding-bottom: 100px;
    text-align: center;
  }

  .sample-content .section-heading {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.1;
  }

  .sample-form button {
    width: 100%;
    font-size: 1rem;
    padding: 12px 30px;
  }

  .sample-drips {
    height: 150px;
  }

  /* All sections - compact padding */
  .revolutionize-section,
  .experience-section,
  .why-choose-section,
  .gang-sheets-section,
  .better-together-section {
    padding: 30px 15px;
  }

  .storefronts-section {
    padding: 40px 15px;
  }

  /* Section headings */
  .storefronts-content .section-heading,
  .gang-sheets-content .section-heading,
  .experience-content .section-heading,
  .why-choose-content .section-heading {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* Why Choose section - smaller screens */
  .why-choose-image {
    max-width: 280px;
  }

  .why-choose-grid {
    gap: 20px;
  }

  .digital-accordion .accordion-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Better Together */
  .better-together-heading {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .better-together-title {
    font-size: clamp(36px, 12vw, 60px);
  }
}

@media (max-width: 375px) {
  /* Why Choose - smallest screens */
  .why-choose-image {
    max-width: 240px;
  }

  .digital-accordion .accordion-title {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .digital-accordion .accordion-content p {
    font-size: 12px;
  }

  .sample-section {
    padding: 25px 10px 40px;
  }

  .sample-content .section-heading {
    font-size: 32px;
  }

  .sample-drips {
    height: 120px;
  }

  /* Accordion */
  .digital-accordion .accordion-title {
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* Form */
  .sample-form input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-checkbox label {
    font-size: 11px;
  }

  /* Section headings */
  .better-together-title {
    font-size: 32px;
  }

  .revolutionize-heading {
    font-size: 24px;
  }
}
