/*
Theme Name: Sanofi Genzyme
Theme URI: https://example.com/sanofigenzyme-theme/
Author: Custom
Author URI: https://example.com
Description: Thème inspiré du design de sanofigenzyme.fr – Spécialiste des maladies rares et enzymatiques
Version: 1.0.0
Text Domain: sanofigenzyme
Requires at least: 6.0
Tested up to: 6.7
*/

:root {
  --primary: #002d72; /* Bleu foncé Sanofi */
  --secondary: #00a1de; /* Bleu clair accent */
  --accent: #009fda; /* Bleu turquoise pour CTA */
  --light-bg: #f0f4f8;
  --text: #212529;
  --gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding .site-title {
  font-size: 2rem;
  font-weight: bold;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-navigation a {
  color: var(--primary);
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,45,114,0.7), rgba(0,45,114,0.7)), url('https://via.placeholder.com/1280x500') center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
}

/* Sections */
section {
  padding: 60px 0;
}

h2.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0 25px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.site-info {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 25px;
  font-size: 0.9rem;
}

/* Sidebar */
.widget-area {
  flex: 1;
  min-width: 280px;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 10px;
}

.widget-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .content-wrapper { flex-direction: column; }
}