/* Global styles consolidated from pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.alert-banner, .urgent-banner {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
}

header {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.tagline { font-style: italic; font-size: 1.2rem; opacity: 0.95; }

nav { background: white; padding: 1rem; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top:0; z-index:100; }
nav ul { list-style: none; display:flex; justify-content:center; gap:2rem; flex-wrap:wrap; }
nav a { color: #0d47a1; text-decoration:none; font-weight:600; }

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

.hero, .intro, .content, .manifesto, .disclaimer, .stats, .testimonial, .shipping-info, .progress-section {
  background: white; border-radius: 12px; padding: 2rem; margin-bottom: 2.5rem; box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn { padding: 1rem 2rem; border-radius:8px; font-weight:bold; text-decoration:none; display:inline-block; cursor:pointer; border:none; }
.btn-primary { background: linear-gradient(135deg,#1976d2 0%,#0d47a1 100%); color:white; }
.btn-secondary { background: linear-gradient(135deg,#ff6b6b 0%,#ee5a6f 100%); color:white; }
.btn-urgent { background: linear-gradient(135deg,#ff6b6b 0%,#ee5a6f 100%); color:white; }

.service-card, .product-card, .donation-card, .ice-card, .mission-card { border-radius:12px; padding:1.5rem; background:white; box-shadow:0 4px 8px rgba(0,0,0,0.08); }

/* Service card specific layout: large centered icon on first line, then title and text */
.service-card { text-align: center; display: flex; flex-direction: column; gap: 0.75rem; }
.service-card .service-icon { font-size: 4.5rem; line-height: 1; margin: 0 auto 0.5rem; }
.service-card h3 { color: #0d47a1; margin: 0.25rem 0 0.5rem; font-size: 1.25rem; }
.service-card p { color: #555; margin: 0 0 0.75rem; }


footer { background: #0d47a1; color: white; text-align:center; padding:2rem; margin-top:3rem; }

@media (max-width:768px) { header h1 { font-size:1.8rem; } .hero { padding:2rem 1rem; } .cta-buttons { flex-direction:column; } }

/* Card layout details restored */
.grid-cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.service-card, .product-card, .donation-card, .ice-card, .mission-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Services grid used on index page */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.product-card .product-badge {
  position: absolute; top: 1rem; right: 1rem; padding: 0.35rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight:600; color:white; background:#ff9800;
}
.product-card .product-icon { font-size: 3.5rem; text-align:center; margin-bottom: 1rem; }
.product-card h3 { color: #0d47a1; margin-bottom: 0.75rem; }
.product-card .product-description { color:#555; margin-bottom:1rem; }
.product-card .product-features { list-style: none; padding:0; margin-bottom:1rem; }
.product-card .product-features li { padding: 0.4rem 0; border-bottom: 1px solid #eee; }
.product-card .price { font-size: 1.6rem; font-weight:700; color:#1976d2; margin-bottom:0.75rem; }
.product-card .old-price { text-decoration: line-through; color:#999; margin-right:0.5rem; }
.product-card .btn { width:100%; text-align:center; }

.donation-card .amount { font-size:2.4rem; font-weight:700; color:#1976d2; margin: 0.5rem 0; }
.donation-card.popular { border-color: #4caf50; }
.donation-card.popular:before { content: "⭐ LE PLUS POPULAIRE"; position:absolute; left:50%; transform:translateX(-50%); top:-12px; background:#4caf50; color:#fff; padding:0.3rem 0.8rem; border-radius:20px; font-size:0.8rem; }
.donation-card .impact-list { list-style:none; padding:0; text-align:left; }

.ice-card .status-badge { position:absolute; top:1rem; right:1rem; padding:0.35rem 0.8rem; border-radius:20px; font-weight:700; }
.ice-card .available { background:#4caf50; color:#fff; }
.ice-card .urgent-badge, .ice-card .urgent { background:#ff6b6b; color:#fff; }

.testimonial { padding:1.5rem; border-radius:8px; background: linear-gradient(135deg,#fff3e0 0%,#ffe0b2 100%); border-left:5px solid #ff9800; }
.testimonial blockquote { font-style:italic; }

.product-card, .donation-card, .ice-card { position: relative; }

.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }

/* Utilities reused by pages */
.muted { color:#666; }
.center { text-align: center; }

/* Additional component styles consolidated from page inline styles */

/* Progress / Roadmap */
.progress-section { background: white; border-radius: 12px; padding: 2rem; margin-bottom: 2.5rem; box-shadow: 0 4px 8px rgba(0,0,0,0.08); }
.progress-section h3 { color: #0d47a1; font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center; }
.progress-items { display: grid; gap: 1rem; }
.progress-item { display:flex; gap:1rem; align-items:flex-start; padding:1rem; background:#f5f5f5; border-radius:8px; border-left:5px solid #1976d2; }
.progress-item .progress-icon { font-size:2rem; min-width:50px; text-align:center; }
.progress-item .progress-content h4 { color:#0d47a1; margin-bottom:0.5rem; font-size:1.1rem; }
.progress-item.completed { border-left-color:#4caf50; background: linear-gradient(135deg,#e8f5e9 0%, #f1f8e9 100%); }
.progress-item.in-progress { border-left-color:#ff9800; background: linear-gradient(135deg,#fff3e0 0%, #ffe0b2 100%); }

.status-badge { display:inline-block; padding:0.25rem 0.6rem; border-radius:20px; font-size:0.75rem; font-weight:700; margin-left:0.5rem; }
.status-completed { background:#4caf50; color:#fff; }
.status-progress { background:#ff9800; color:#fff; }
.status-planned { background:#9e9e9e; color:#fff; }

/* Newsletter / Forms */
.newsletter { background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%); border-radius:12px; padding:2.5rem; margin-bottom:2.5rem; color:white; text-align:center; box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
.newsletter h3 { font-size:1.6rem; margin-bottom:0.75rem; }
.newsletter p { opacity:0.95; margin-bottom:1rem; }
.newsletter-form { max-width:520px; margin:0 auto; }
.form-group { margin-bottom:1rem; text-align:left; }
.form-group label { display:block; margin-bottom:0.5rem; font-weight:700; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="number"] { width:100%; padding:0.9rem; border-radius:8px; border:none; font-size:1rem; }
.form-group input:focus { outline:3px solid rgba(100,181,246,0.6); }
.checkbox-group { margin:1rem 0; text-align:left; }
.checkbox-group label { display:flex; gap:0.6rem; align-items:flex-start; cursor:pointer; }
.success-message { background:#4caf50; color:#fff; padding:1rem; border-radius:8px; margin-top:1rem; display:none; }
.success-message.show { display:block; }

/* Benefits / Timeline */
.benefits { background: linear-gradient(135deg,#fff3e0 0%, #ffe0b2 100%); border-radius:12px; padding:2rem; margin-bottom:2.5rem; }
.benefits h3 { color:#e65100; margin-bottom:1rem; text-align:center; }
.benefits ul { list-style:none; display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap:1rem; }
.benefits li { background:white; padding:1rem; border-radius:8px; box-shadow:0 2px 4px rgba(0,0,0,0.06); }

.manifesto { padding: 2.5rem; border-radius: 12px; }
.manifesto h2 { color: #0d47a1; font-size: 2rem; text-align: center; margin-bottom: 1rem; }
.manifesto p { font-size: 1.05rem; color: #333; line-height: 1.6; }

/* Missions page specific */
.missions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.mission-card { background: white; border-radius: 12px; padding: 1.5rem; box-shadow: 0 6px 12px rgba(0,0,0,0.06); text-align: center; }
.mission-card h3 { color: #0d47a1; margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mission-icon { font-size: 3.75rem; margin-bottom: 0.5rem; }

.team-members { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.member { text-align: center; }
.member-photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 0.75rem; display:flex; align-items:center; justify-content:center; font-size: 2.5rem; background: linear-gradient(135deg,#1976d2 0%, #0d47a1 100%); }
.member-name { font-weight: 700; color: #0d47a1; }
.member-role { color: #666; font-style: italic; }

.timeline { padding: 2rem; border-radius: 12px; }
.timeline-item { display:flex; gap:1rem; padding-bottom:1rem; border-bottom:2px solid #e9f3ff; margin-bottom:1rem; }
.timeline-date { font-weight:700; color:#1976d2; min-width:120px; }

@media (max-width: 1100px) {
  .missions { grid-template-columns: repeat(2, 1fr); }
  .team-members { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .missions { grid-template-columns: 1fr; }
  .team-members { grid-template-columns: 1fr; }
}

.timeline { background:white; border-radius:12px; padding:2rem; margin-bottom:2.5rem; }
.timeline h3 { color:#0d47a1; text-align:center; margin-bottom:1rem; }
.values h3 { color:#0d47a1; text-align:center; margin-bottom:1rem; }
.team h3 { color:#0d47a1; text-align:center; margin-bottom:1rem; }
.stats h3 { color:#0d47a1; text-align:center; margin-bottom:1rem; }
.timeline-item { display:flex; gap:1rem; padding-bottom:1rem; border-bottom:2px solid #e3f2fd; margin-bottom:1rem; }
.timeline-date { min-width:130px; color:#1976d2; font-weight:700; }

/* Cards: product, donation, ice */
.product-card, .donation-card, .ice-card, .service-card { border-radius:12px; padding:1.5rem; background:white; box-shadow:0 4px 8px rgba(0,0,0,0.08); }
.product-card .product-badge, .donation-card .popular, .ice-card .status-badge { position: absolute; top:1rem; right:1rem; }
.product-card .product-icon, .ice-card .ice-icon { font-size:3.5rem; text-align:center; margin-bottom:1rem; }
.price { font-size:1.6rem; font-weight:700; color:#1976d2; }
.old-price { text-decoration: line-through; color:#999; margin-right:0.5rem; }

/* Testimonials */
.testimonial { background: linear-gradient(135deg,#fff3e0 0%, #ffe0b2 100%); border-left:5px solid #ff9800; padding:1.5rem; border-radius:8px; }
.testimonial blockquote { font-style:italic; }

/* Utilities / buttons */
.btn { padding:1rem 2rem; border-radius:8px; font-weight:700; cursor:pointer; border:none; display:inline-block; text-decoration:none; }
.btn-primary { background: linear-gradient(135deg,#1976d2 0%, #0d47a1 100%); color:white; }
.btn-secondary { background: linear-gradient(135deg,#ff6b6b 0%, #ee5a6f 100%); color:white; }
.btn-urgent { background: linear-gradient(135deg,#ff6b6b 0%, #ee5a6f 100%); color:white; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }

/* Urgent / alert */
.alert-banner, .urgent-banner { background: linear-gradient(90deg,#ff6b6b 0%, #ee5a6f 100%); color:white; text-align:center; padding:12px; font-weight:700; }
.urgent-badge { display:inline-block; background:#ff6b6b; color:white; padding:0.25rem 0.6rem; border-radius:20px; font-weight:700; animation: blink 1.5s infinite; }

/* Footer */
footer { background:#0d47a1; color:white; text-align:center; padding:2rem; margin-top:3rem; }

@media (max-width:768px) {
  .container { padding:1rem; }
  .progress-item { flex-direction:column; }
  .timeline-item { flex-direction:column; }
}
/* Global styles consolidated from pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.alert-banner, .urgent-banner {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
}

header {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.tagline { font-style: italic; font-size: 1.2rem; opacity: 0.95; }

nav { background: white; padding: 1rem; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top:0; z-index:100; }
nav ul { list-style: none; display:flex; justify-content:center; gap:2rem; flex-wrap:wrap; }
nav a { color: #0d47a1; text-decoration:none; font-weight:600; }

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

.hero, .intro, .content, .manifesto, .disclaimer, .stats, .testimonial, .shipping-info, .progress-section {
  background: white; border-radius: 12px; padding: 2rem; margin-bottom: 2.5rem; box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn { padding: 1rem 2rem; border-radius:8px; font-weight:bold; text-decoration:none; display:inline-block; cursor:pointer; border:none; }
.btn-primary { background: linear-gradient(135deg,#1976d2 0%,#0d47a1 100%); color:white; }
.btn-secondary { background: linear-gradient(135deg,#ff6b6b 0%,#ee5a6f 100%); color:white; }
.btn-urgent { background: linear-gradient(135deg,#ff6b6b 0%,#ee5a6f 100%); color:white; }

.service-card, .product-card, .donation-card, .ice-card, .mission-card { border-radius:12px; padding:1.5rem; background:white; box-shadow:0 4px 8px rgba(0,0,0,0.08); }

footer { background: #0d47a1; color: white; text-align:center; padding:2rem; margin-top:3rem; }

@media (max-width:768px) { header h1 { font-size:1.8rem; } .hero { padding:2rem 1rem; } .cta-buttons { flex-direction:column; } }

/* Card layout details restored */
.grid-cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.service-card, .product-card, .donation-card, .ice-card, .mission-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card .product-badge {
  position: absolute; top: 1rem; right: 1rem; padding: 0.35rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight:600; color:white; background:#ff9800;
}
.product-card .product-icon { font-size: 3.5rem; text-align:center; margin-bottom: 1rem; }
.product-card h3 { color: #0d47a1; margin-bottom: 0.75rem; }
.product-card .product-description { color:#555; margin-bottom:1rem; }
.product-card .product-features { list-style: none; padding:0; margin-bottom:1rem; }
.product-card .product-features li { padding: 0.4rem 0; border-bottom: 1px solid #eee; }
.product-card .price { font-size: 1.6rem; font-weight:700; color:#1976d2; margin-bottom:0.75rem; }
.product-card .old-price { text-decoration: line-through; color:#999; margin-right:0.5rem; }
.product-card .btn { width:100%; text-align:center; }

.donation-card .amount { font-size:2.4rem; font-weight:700; color:#1976d2; margin: 0.5rem 0; }
.donation-card.popular { border-color: #4caf50; }
.donation-card.popular:before { content: "⭐ LE PLUS POPULAIRE"; position:absolute; left:50%; transform:translateX(-50%); top:-12px; background:#4caf50; color:#fff; padding:0.3rem 0.8rem; border-radius:20px; font-size:0.8rem; }
.donation-card .impact-list { list-style:none; padding:0; text-align:left; }

.ice-card .status-badge { position:absolute; top:1rem; right:1rem; padding:0.35rem 0.8rem; border-radius:20px; font-weight:700; }
.ice-card .available { background:#4caf50; color:#fff; }
.ice-card .urgent-badge, .ice-card .urgent { background:#ff6b6b; color:#fff; }

.testimonial { padding:1.5rem; border-radius:8px; background: linear-gradient(135deg,#fff3e0 0%,#ffe0b2 100%); border-left:5px solid #ff9800; }
.testimonial blockquote { font-style:italic; }

.product-card, .donation-card, .ice-card { position: relative; }

.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }

/* Utilities reused by pages */
.muted { color:#666; }
.center { text-align: center; }


/* Stats cards styling: reuse mission-card look with tighter layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--card-bg, #ffffff);
  box-shadow: 0 6px 18px rgba(10,20,40,0.06);
  border: 1px solid rgba(10,20,40,0.04);
}

.stat-card .mission-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-card .stat-number {
  font-size: 1.5rem;
  color: var(--accent-color, #0d47a1);
  margin: 0;
}

.stat-card .stat-label {
  color: var(--muted-color, #6b7280);
  margin-top: 0.25rem;
}

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr; }
}

