/**
Theme Name: CREDENTIS
Author: Recouvrator
Author URI: https://credentis.fr/
Description: Child theme CREDENTIS GROUP
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: credentis
Template: astra
*/

/* === CHARTE CREDENTIS === */

:root {
  --credentis-blue: #0F2D4A;
  --credentis-blue-dark: #0B2236;
  --credentis-light: #F4F6F8;
  --credentis-accent: #2F5E88;
}

body {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3 {
  color: var(--credentis-blue);
  font-weight: 700;
}

a {
  color: var(--credentis-accent);
}

a:hover {
  color: var(--credentis-blue-dark);
}

.button,
.wp-block-button__link {
  background-color: var(--credentis-blue);
  color: #ffffff;
  border-radius: 4px;
  padding: 14px 28px;
  font-weight: 600;
}

.button:hover,
.wp-block-button__link:hover {
  background-color: var(--credentis-blue-dark);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.hero-credentis {
  background: linear-gradient(135deg, #0F2D4A, #163A5F);
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.hero-credentis h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-buttons {
  margin-top: 30px;
}

.btn-primary {
  background-color: #0F2D4A;
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin: 10px;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #0B2236;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin: 10px;
  display: inline-block;
}

.section-light {
  background-color: #F4F6F8;
}

.section-dark {
  background-color: #0F2D4A;
  color: #ffffff;
}

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

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

.services-list li {
  padding: 10px 0;
  font-weight: 500;
}

.cta-final {
  background-color: #163A5F;
  color: white;
  text-align: center;
  padding: 100px 20px;
}