/*
Theme Name: Beyond Spirit Starter
Theme URI: https://beyond-spirit.com
Author: Geos BEYOND SPIRIT
Author URI: https://beyond-spirit.com
Description: Thème de base Beyond Spirit - Header avec menu, effets paranormaux (particules, orbes) - Créez vos pages dans WordPress
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: beyond-spirit-starter
Tags: paranormal, dark, custom-menu, one-page
*/

/* ===== VARIABLES ===== */
:root {
  --cyan: #8bf0ff;
  --mag: #ff6bd6;
  --lime: #9dffa1;
  --dark: #070a11;
  --muted: #cbd5e1;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY & FOND ===== */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--dark);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ARRIÈRE-PLAN ANIMÉ ===== */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: linear-gradient(135deg, #070a11 0%, #0a1628 50%, #070a11 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== PARTICULES FLOTTANTES ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float var(--duration) ease-in-out infinite;
  box-shadow: 0 0 10px var(--cyan);
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(var(--tx)) scale(1);
    opacity: 0;
  }
}

/* ===== ORBE FANTÔME ===== */
.ghost {
  position: fixed;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 240, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: ghostFloat 8s ease-in-out infinite;
}

@keyframes ghostFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-30px, -50px) scale(1.2); opacity: 0.5; }
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 240, 255, 0.1);
  padding: 1rem 0;
}

.site-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.site-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-title h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(135deg, var(--cyan), var(--mag));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  opacity: 0.8;
}

/* Navigation */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.main-navigation a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 20px;
  background: rgba(139, 240, 255, 0.05);
  border: 1px solid rgba(139, 240, 255, 0.2);
  transition: all 0.3s ease;
}

.main-navigation a:hover {
  background: rgba(139, 240, 255, 0.15);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 240, 255, 0.3);
}

/* ===== CONTENU PRINCIPAL ===== */
.site-content {
  margin-top: 120px;
  min-height: calc(100vh - 200px);
  padding: 2rem;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(7, 10, 17, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(139, 240, 255, 0.1);
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  color: var(--cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(139, 240, 255, 0.3);
}

.content-wrapper p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-wrapper a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.content-wrapper a:hover {
  border-bottom-color: var(--cyan);
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(7, 10, 17, 0.95);
  border-top: 1px solid rgba(139, 240, 255, 0.1);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    text-align: center;
  }
  
  .main-navigation ul {
    justify-content: center;
  }
  
  .content-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .site-content {
    padding: 1rem;
  }
}

/* ===== ÉDITEUR GUTENBERG ===== */
.wp-block {
  max-width: 100%;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

