/* ===================================
   April's Apple Chips - Combined Page
   Branding Colors & Variables
   =================================== */

:root {
  --red: #C33748;
  --green: #1C5D3B;
  --black: #333;
  --white: #fff;
  --light-gray: #F5F5F5;
  --medium-gray: #ddd;
  
  --error-red: #FF3333;
  --success-green: #2ECC40;
  
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
  
  --transition: all 0.3s ease;
  --border-radius: 10px;
  --border-radius-sm: 5px;
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--light-gray);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* ===================================
   Layout Utilities
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: var(--green);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-fact {
  background-color: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  padding: 10px 20px;
  margin: 5px;
}

.btn-fact:hover {
  background-color: var(--red);
  color: var(--white);
}

.btn-submit {
  background: linear-gradient(135deg, var(--green), var(--red));
  color: var(--white);
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.btn-donate {
  background-color: var(--red);
  color: var(--white);
  padding: 10px 20px;
  margin-top: 10px;
}

.btn-donate:hover {
  background-color: var(--green);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  background: linear-gradient(135deg, rgba(28, 93, 59, 0.9), rgba(195, 55, 72, 0.9)),
              url('../assets/chips/scattered-chips.jpg') no-repeat center/cover;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   Facts Section
   =================================== */

.facts-section {
  background: var(--red) url('../assets/elements/Apple-Pile.png') no-repeat center/cover;
  padding: 60px 20px;
  position: relative;
}

.facts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.facts-section .container {
  position: relative;
  z-index: 2;
}

.facts-card {
  background: rgba(51, 51, 51, 0.95);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.facts-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.fact-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
}

.fact-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   Why Section
   =================================== */

.why-section {
  background: var(--white);
  padding: 80px 20px;
}

.why-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--red);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--black);
  margin: 0;
}

/* ===================================
   Order Section
   =================================== */

.order-section {
  background: var(--light-gray);
  padding: 80px 20px;
}

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

/* Order Info Styles */
.order-info h2 {
  color: var(--green);
  margin-bottom: 25px;
}

.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}

.info-card h3 {
  color: var(--green);
  margin-bottom: 15px;
}

.info-card.highlight {
  background: linear-gradient(135deg, rgba(28, 93, 59, 0.1), rgba(195, 55, 72, 0.1));
  border-left: 4px solid var(--red);
}

.order-details {
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.order-details h3 {
  color: var(--green);
  margin-bottom: 20px;
}

.details-list {
  list-style: none;
  padding: 0;
}

.details-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.details-list li:last-child {
  border-bottom: none;
}

.details-list .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Order Form Styles */
.order-form-container {
  background: var(--white);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
  position: sticky;
  top: 20px;
}

.order-form-container h2 {
  color: var(--green);
  text-align: center;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.required {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195, 55, 72, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

/* Messages */
.message {
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
}

.message.success {
  background: rgba(46, 204, 64, 0.1);
  border-left: 4px solid var(--success-green);
  color: #155724;
}

.message.error {
  background: rgba(255, 51, 51, 0.1);
  border-left: 4px solid var(--error-red);
  color: #721c24;
}

/* ===================================
   Payment Section
   =================================== */

.payment-section {
  background: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.payment-section h2 {
  color: var(--green);
  margin-bottom: 40px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.payment-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.payment-card h3 {
  color: var(--green);
  margin-bottom: 20px;
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 10px;
}

.paypal-btn {
  background: #0070ba;
  color: var(--white);
}

.paypal-btn:hover {
  background: #005a94;
}

.cashapp-btn {
  background: #00d54b;
  color: var(--white);
}

.cashapp-btn:hover {
  background: #00b33f;
}

.kofi-btn {
  background: #ff5e5b;
  color: var(--white);
}

.kofi-btn:hover {
  background: #e54542;
}

.payment-icon {
  font-size: 1.3rem;
}

.payment-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
  background: linear-gradient(135deg, var(--green), var(--black));
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column p {
  opacity: 0.9;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column a:hover {
  opacity: 1;
  color: var(--red);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  .order-form-container {
    position: static;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .facts-card {
    padding: 25px;
  }

  .facts-card h2 {
    font-size: 1.8rem;
  }

  .fact-content p {
    font-size: 1.1rem;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Video and Testimonials responsive */
  .video-section,
  .testimonials-section {
    padding: 40px 15px;
  }

  .video-section h2,
  .testimonials-section h2 {
    font-size: 2em;
  }

  .testimonial {
    padding: 30px 20px;
  }

  .testimonial::before {
    font-size: 3em;
    left: 10px;
  }

  .testimonial-title {
    font-size: 1.3em;
  }

  .testimonial-content p {
    font-size: 1em;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-author {
    text-align: left;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  /* Linktree navigation responsive */
  .linktree-navigation {
    padding: 0 10px;
    margin: 30px auto;
  }

  .linktree-btn {
    padding: 18px 25px;
    font-size: 1.1em;
    gap: 12px;
  }

  /* DIY and Heartwarmers sections responsive */
  .diy-content,
  .heartwarmers-content {
    flex-direction: column;
    text-align: center;
  }

  .diy-image img {
    max-width: 250px;
  }

  .heartwarmers-img {
    max-width: 120px;
  }

  .diy-info h2,
  .heartwarmers-section h2,
  .gofundme-section h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .facts-card {
    padding: 20px;
  }

  .order-form-container {
    padding: 25px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Video and Testimonials for small mobile */
  .video-container {
    padding-bottom: 75%; /* Adjust aspect ratio for very small screens */
  }

  .testimonial {
    padding: 25px 15px;
  }

  .testimonial::before {
    font-size: 2.5em;
    top: 5px;
    left: 5px;
  }

  .testimonial-title {
    font-size: 1.2em;
  }

  .testimonial-content p {
    font-size: 0.95em;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .slider-dots {
    gap: 6px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }

  /* Linktree for small mobile */
  .linktree-btn {
    padding: 15px 20px;
    font-size: 1em;
    gap: 10px;
  }

  .nav-icon,
  .nav-arrow {
    font-size: 1.2em;
  }

  /* Small mobile for new sections */
  .diy-info h2,
  .heartwarmers-section h2,
  .gofundme-section h2 {
    font-size: 2em;
  }

  .diy-image img {
    max-width: 200px;
  }

  .diy-info p,
  .heartwarmers-info p {
    font-size: 1em;
  }

  .gofundme-intro {
    font-size: 1.1em;
  }
}

/* ===================================
   Accessibility & Print Styles
   =================================== */

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* Visitor Counter Styles */
.visitor-counter {
  padding: 20px 30px;
  margin: 0 auto;
  max-width: 600px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--red));
  color: var(--white);
  font-family: 'Arial', sans-serif;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.visitor-counter-modern {
  background: linear-gradient(135deg, var(--green), var(--red));
}

.visitor-counter .page-counter,
.visitor-counter .site-counter {
  margin: 8px 0;
  font-size: 16px;
  text-align: center;
}

.visitor-counter .counter-label {
  font-weight: bold;
  margin-right: 8px;
}

.visitor-counter .counter-number {
  font-size: 22px;
  font-weight: bold;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  display: inline-block;
  min-width: 60px;
  text-align: center;
}

.visitor-counter .today-count {
  font-size: 13px;
  opacity: 0.9;
  margin-left: 8px;
}

/* Linktree Navigation Styles */
.linktree-navigation {
  margin: 40px auto;
  padding: 0 20px;
  max-width: 800px;
}

.linktree-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 20px 30px;
  background: linear-gradient(135deg, var(--green), var(--red));
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(28, 93, 59, 0.3);
  position: relative;
  overflow: hidden;
}

.linktree-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.linktree-btn:hover::before {
  left: 100%;
}

.linktree-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(195, 55, 72, 0.4);
  background: linear-gradient(135deg, var(--red), var(--green));
  color: var(--white);
  text-decoration: none;
}

.linktree-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(28, 93, 59, 0.3);
}

.nav-icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.nav-text {
  flex: 1;
  text-align: center;
}

.nav-arrow {
  font-size: 1.5em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.linktree-btn:hover .nav-arrow {
  transform: translateX(5px);
}

/* Video Section Styles */
.video-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 20px;
  margin: 40px 0;
}

.video-section h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 15px;
  font-size: 2.5em;
}

.video-intro {
  text-align: center;
  color: var(--black);
  margin-bottom: 30px;
  font-size: 1.1em;
  font-style: italic;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: linear-gradient(135deg, rgba(28, 93, 59, 0.05), rgba(195, 55, 72, 0.05));
  padding: 60px 20px;
  margin: 40px 0;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 15px;
  font-size: 2.5em;
}

.testimonials-intro {
  text-align: center;
  color: var(--black);
  margin-bottom: 40px;
  font-size: 1.1em;
  font-style: italic;
  opacity: 0.8;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-container {
  overflow: hidden;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  background: var(--white);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4em;
  color: var(--red);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial.negative::before {
  color: var(--green);
}

.testimonial-title {
  color: var(--red);
  font-size: 1.5em;
  margin-bottom: 15px;
  margin-top: 0;
}

.testimonial.negative .testimonial-title {
  color: var(--green);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  margin: 0;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 2px solid rgba(28, 93, 59, 0.1);
  padding-top: 15px;
}

.testimonial-rating {
  font-size: 1.2em;
}

.testimonial-author {
  text-align: right;
  color: var(--green);
  font-size: 1em;
}

.testimonial-author strong {
  color: var(--black);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: var(--red);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(28, 93, 59, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(28, 93, 59, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: var(--green);
  width: 30px;
  border-radius: 6px;
}

/* DIY Guide Section */
.diy-section {
  background: linear-gradient(135deg, rgba(195, 55, 72, 0.05), rgba(28, 93, 59, 0.05));
  padding: 60px 20px;
  margin: 40px 0;
}

.diy-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.diy-image {
  flex-shrink: 0;
}

.diy-image img {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.diy-info {
  flex: 1;
}

.diy-info h2 {
  color: var(--green);
  font-size: 2.5em;
  margin-bottom: 20px;
}

.diy-info p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--black);
}

.diy-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--green));
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 55, 72, 0.3);
}

.diy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 93, 59, 0.4);
  background: linear-gradient(135deg, var(--green), var(--red));
  color: var(--white);
  text-decoration: none;
}

/* Heartwarmers Section */
.heartwarmers-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 20px;
  margin: 40px 0;
}

.heartwarmers-section h2 {
  text-align: center;
  color: var(--green);
  font-size: 2.5em;
  margin-bottom: 30px;
}

.heartwarmers-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.heartwarmers-logo {
  flex-shrink: 0;
  text-align: center;
}

.heartwarmers-img {
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.heartwarmers-info {
  flex: 1;
}

.heartwarmers-info p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.heartwarmers-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--green));
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 55, 72, 0.3);
}

.heartwarmers-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 93, 59, 0.4);
  background: linear-gradient(135deg, var(--green), var(--red));
  color: var(--white);
  text-decoration: none;
}

.heartwarmers-note {
  font-size: 0.9em;
  color: var(--green);
  font-style: italic;
  margin-top: 10px;
}

/* GoFundMe Section */
.gofundme-section {
  background: linear-gradient(135deg, rgba(28, 93, 59, 0.05), rgba(195, 55, 72, 0.05));
  padding: 60px 20px;
  margin: 40px 0;
}

.gofundme-section h2 {
  text-align: center;
  color: var(--red);
  font-size: 2.5em;
  margin-bottom: 20px;
}

.gofundme-intro {
  text-align: center;
  font-size: 1.2em;
  color: var(--black);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gofundme-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .testimonial-track {
    transition: none;
  }

  .diy-image img,
  .heartwarmers-img {
    animation: none;
  }
}

/* Print styles */
@media print {
  .hero,
  .payment-section,
  .video-section,
  .testimonials-section,
  .site-footer {
    display: none;
  }

  .order-form-container {
    box-shadow: none;
    border: 1px solid var(--black);
  }

  body {
    background: var(--white);
  }
}

