/*
Theme Name: Jumo Spirite Theme
Theme URI: https://www.jumo-spirite.fr
Author: Jumo Spirite
Author URI: https://www.jumo-spirite.fr
Description: Un thème épuré et lumineux pour Jumo Spirite, avec fond spirituel discret
Version: 1.1
License: GPLv2 or later
*/

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fond spirituel en overlay léger */
body {
  background-color: #001f3f;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/themes/jumo-spirite-theme/assets/images/etoile_7_archanges.png') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

/* Logo */
.site-logo img {
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

/* En-tête */
header {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
header .header-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5em;
  color: #2c3e50;
  margin-top: 15px;
}

/* Conteneurs principaux */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

section p,
section ul {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  color: #2c3e50;
}

section ul {
  list-style: none;
}

section ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}
section ul li:last-child {
  border-bottom: none;
}

/* Boutons */
.button {
  display: inline-block;
  background-color: #2c3e50;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 600;
  z-index: 2;
  position: relative;
}
.button:hover {
  background-color: #1a242f;
}

/* Pied de page */
footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  color: #555555;
  font-size: 0.9em;
  position: relative;
  z-index: 2;
}
