/* 
 * GS Services - Common Styles
 * Design unifié pour toutes les pages
 * Basé sur le design de /fr/services/
 */

/* =========================
   HERO SECTIONS
   ========================= */
.hero,
.services-hero,
.events-hero,
.shop-hero,
.about-hero,
.products-hero {
  position: relative;
  min-height: 400px;
  background: linear-gradient(90deg, rgba(159, 185, 209, 1) 0%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  text-align: center;
  padding: 80px 20px;
}

.hero h1,
.services-hero h1,
.events-hero h1,
.shop-hero h1,
.about-hero h1,
.products-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #1a1a2e;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-weight: 700;
}

.hero p,
.services-hero p,
.events-hero p,
.shop-hero p,
.about-hero p,
.products-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #4b5563;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   SECTIONS
   ========================= */
.service-detail,
.section-detail,
.content-section {
  padding: 80px 20px;
}

.service-detail:nth-child(even),
.section-detail:nth-child(even),
.content-section:nth-child(even) {
  background: #f8f9fa;
}

.service-detail h2,
.section-detail h2,
.content-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #0066cc;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-detail p,
.section-detail p,
.content-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* =========================
   FEATURE CARDS / GRIDS
   ========================= */
.feature-grid,
.card-grid,
.event-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card,
.card,
.event-card,
.product-card {
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.card:hover,
.event-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,102,204,0.15);
}

.feature-card h3,
.card h3,
.event-card h3,
.product-card h3 {
  color: #0066cc;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-card p,
.card p,
.event-card p,
.product-card p {
  font-size: 1rem;
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

/* =========================
   BUTTONS
   ========================= */
.btn,
.button,
.cta-button,
.event-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,102,204,0.2);
}

.btn:hover,
.button:hover,
.cta-button:hover,
.event-cta:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,102,204,0.3);
}

.btn.primary {
  background: linear-gradient(180deg, #0066cc, #0052a3);
  font-weight: 700;
}

.btn.secondary,
.button.secondary {
  background: white;
  color: #0066cc;
  border: 2px solid #0066cc;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.btn.secondary:hover,
.button.secondary:hover {
  background: #f0f7ff;
  border-color: #0052a3;
  color: #0052a3;
}

/* =========================
   BADGES & TAGS
   ========================= */
.badge,
.tag,
.event-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #0066cc;
  color: white;
}

.badge.success { background: #0066cc; }
.badge.warning { background: #f59e0b; }
.badge.info { background: #0ea5e9; }
.badge.danger { background: #ef4444; }

/* =========================
   CONTAINERS
   ========================= */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .feature-grid,
  .card-grid,
  .event-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-detail,
  .section-detail,
  .content-section {
    padding: 60px 20px;
  }
  
  .hero,
  .services-hero,
  .events-hero,
  .shop-hero,
  .about-hero,
  .products-hero {
    min-height: 300px;
    padding: 60px 20px;
  }
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* =========================
   UTILITY CLASSES
   ========================= */
.text-center { text-align: center; }
.text-primary { color: #0066cc; }
.text-muted { color: #6b7280; }
.bg-light { background: #f8f9fa; }
.bg-white { background: white; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }


