/* Homepage Specific Styles */

/* Hero Section */
.hero {
  height: 50vh;
  min-height: 400px;
  /* Gradient background (fallback) */
  background: linear-gradient(135deg, rgba(255, 38, 158, 0.1) 0%, rgba(146, 78, 255, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

/* Adjust hero margin when notification is visible */
body.has-notification .hero {
  margin-top: 110px;
}

/* Hero background image with opacity */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Optional background image - comment out or remove to use gradient only */
  background-image: url('../images/Index_Images/hero_image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 750px;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Glassy background effect with soft blurred edges */
  background: rgba(255, 255, 255, 0.43);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* Gaussian-like blur on edges using gradient mask */
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, black 40%, rgba(0,0,0,0.8) 65%, rgba(0,0,0,0.4) 85%, transparent 100%);
  mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, black 40%, rgba(0,0,0,0.8) 65%, rgba(0,0,0,0.4) 85%, transparent 100%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-credentials {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* CTA Buttons */
.btn-cta-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 38, 158, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 38, 158, 0.4);
  color: white;
}

.btn-cta-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--brand-pink);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--brand-pink);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: var(--brand-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 38, 158, 0.2);
}

/* Standard CTA Button */
.btn-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 38, 158, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 38, 158, 0.4);
}

/* Generic Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--brand-purple);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #7a42d4;
  transform: translateY(-2px);
}

/* Section Styling */
.section {
  padding: 4rem 0;
  background: white;
}

.section-alt {
  background: #f9f9f9;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Introduction Section */
.intro-section {
  padding: 3rem 0;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.intro-subtext {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.category-subtitle {
  font-size: 1rem;
  color: var(--brand-pink);
  font-weight: 600;
  margin-bottom: 1rem;
}

.category-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.category-link {
  color: var(--brand-purple);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.category-link:hover {
  color: var(--brand-pink);
  transform: translateX(5px);
}

/* Why Sixprint Section */
.why-section {
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.why-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Paper Quality Section */
.paper-section {
  padding: 4rem 0;
}

.paper-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.paper-content > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brand-dark);
  margin-bottom: 2rem;
}

.paper-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.paper-detail {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.paper-detail h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.paper-detail p {
  color: var(--text-muted);
  line-height: 1.6;
}

.paper-cta {
  margin-top: 2rem;
}

/* How It Works Section */
.how-section {
  padding: 4rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.step-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.how-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Environmental Section */
.environmental-section {
  padding: 4rem 0 0 0;
}

.environmental-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.environmental-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.environmental-text {
  margin-top: 2rem;
}

.environmental-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

/* Sample Pack Section */
.sample-pack-section {
  padding: 4rem 0;
}

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

.sample-pack-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.sample-pack-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.sample-pack-offer {
  background: linear-gradient(135deg, rgba(255, 38, 158, 0.05), rgba(146, 78, 255, 0.05));
  border: 1px solid rgba(255, 38, 158, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 1rem;
}

/* Footer Info Section */
.footer-info-section {
  padding: 4rem 0;
}

.footer-info-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-info-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.footer-info-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.footer-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-contact a {
  color: var(--brand-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--brand-pink);
}

/* Responsive Design */

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .paper-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .hero {
    height: 60vh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .category-content h3 {
    font-size: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-item {
    padding: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .paper-detail {
    padding: 1.5rem;
  }

  .footer-info-content h2,
  .environmental-content h2,
  .sample-pack-content h2 {
    font-size: 1.8rem;
  }
}

/* Products Overview Section */
.products-overview-section {
  background: #f8f9fa;
}

.products-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-overview-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-overview-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-overview-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.product-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-overview-item:hover .product-overview-image img {
  transform: scale(1.05);
}

.product-overview-content {
  padding: 2rem;
}

.product-overview-item h3 {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.product-overview-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  border-left: 3px solid #FF269E;
  padding-left: 1rem;
}

.product-specs li {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  position: relative;
}

.product-specs li::before {
  content: "✓";
  color: #FF269E;
  font-weight: bold;
  margin-right: 0.5rem;
}

.product-link {
  display: inline-block;
  color: #FF269E;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: #924EFF;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-overview-image {
    height: 180px;
  }

  .product-overview-content {
    padding: 1.5rem;
  }

  .product-overview-item h3 {
    font-size: 1.25rem;
  }
}
