/* ========================================== */
/* SYSTEME DE DESIGN PREMIUM - PHOTO/INSTAGRAM */
/* ========================================== */

/* 
  TABLE DES MATIERES
  1. Variables & Reset
  2. Typographie Premium
  3. Navigation Immersive
  4. Hero Section Cinématique
  5. Système de Cartes Évolué
  6. Boutons & Interactions
  7. Sections Thématiques
  8. Galerie Photo Avancée
  9. Effets Visuels Spéciaux
  10. Overlays & Modals
  11. Formulaires Haut-de-Gamme
  12. Pied de Page Luxe
  13. Animations Premium
  14. Overrides Bootstrap
  15. Responsive Design
  16. Utilitaires Spéciaux
*/

/* ==================== */
/* 1. VARIABLES & RESET */
/* ==================== */
:root {
	/* Couleurs fixes (logo) */
	--color-main: #fe6a2d; /* Orange vibrant */
	--color-second: #1d0191; /* Bleu profond */
	
	/* Nouvelle palette harmonieuse */
	--color-accent: #4ECDC4; /* Turquoise moderne */
	--color-accent-dark: #2a9d8f;
	--color-light: #f8f9fa;
	--color-light-2: #f1f3f5;
	--color-dark: #292f36;
	--color-darker: #1a1e23;
	--color-text: #333333;
	--color-text-light: #6c757d;
	--color-text-lighter: #adb5bd;
	
	/* Effets spéciaux */
	--shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 25px rgba(0,0,0,0.12);
	--shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
	--shadow-xl: 0 12px 50px rgba(0,0,0,0.2);
	--shadow-inset: inset 0 2px 4px rgba(0,0,0,0.05);
	--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
	--transition-fast: all 0.2s ease-out;
	--transition-slow: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
	
	/* Dégradés premium */
	--gradient-main: linear-gradient(135deg, var(--color-main), #ff8e53);
	--gradient-second: linear-gradient(135deg, var(--color-second), #3a0ca3);
	--gradient-accent: linear-gradient(135deg, var(--color-accent), #64f5d4);
	--gradient-dark: linear-gradient(135deg, var(--color-dark), #3d4551);
	--gradient-light: linear-gradient(135deg, var(--color-light), #ffffff);
	
	/* Espacements */
	--space-xxs: 0.25rem;
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 3rem;
	--space-xl: 4rem;
	--space-xxl: 6rem;
	
	/* Bordures */
	--border-radius-sm: 8px;
	--border-radius-md: 12px;
	--border-radius-lg: 16px;
	--border-radius-xl: 24px;
	--border-radius-pill: 50px;
	--border-radius-circle: 50%;
	
	/* Typographie */
	--font-base: 'Lora', serif;
	--font-heading: 'DM Serif Text', serif;
	--font-accent: 'Oswald', sans-serif;
	--font-mono: 'SF Mono', monospace;
	
	/* Z-index */
	--z-under: -1;
	--z-base: 1;
	--z-over: 10;
	--z-top: 100;
	--z-super: 1000;
  }
  
  /* Reset étendu */
  *,
  *::before,
  *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }
  
  html {
	scroll-behavior: smooth;
	font-size: 16px;
  }
  
  body {
	font-family: var(--font-base);
	color: var(--color-text);
	line-height: 1.7;
	overflow-x: hidden;
	background-color: var(--color-light);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	margin-top: 80px;
  }




  /* Icône Font Awesome chapeau */
body::before,
body::after {
    content: '\f19d';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.25);
    position: fixed;
    top: -150px;
    transform: translateX(-50%);
    z-index: var(--z-over);
    pointer-events: none;
    opacity: 0;
}

/* Position différente pour after */
body::before {
    left: 5%;
    animation: fallingHatBefore 15s linear infinite;
}

body::after {
    left: 90%;
    animation: fallingHatAfter 22s linear infinite;
}

/* Before : 0s à 30s */
@keyframes fallingHatBefore {
    0% {
        transform: translateX(-50%) translateY(-200px) scale(0.6) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    25% {
        transform: translateX(-60%) translateY(35vh) scale(2.5) rotate(90deg);
    }
    50% {
        transform: translateX(-40%) translateY(60vh) scale(3.2) rotate(180deg);
    }
    75% {
        transform: translateX(-50%) translateY(85vh) scale(1.8) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%) translateY(120vh) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

/* After : 30s à 60s */
@keyframes fallingHatAfter {
    0%, 49.9% {
        opacity: 0;
        transform: translateX(-50%) translateY(-200px) scale(0.6) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0px) scale(1.3) rotate(30deg);
    }
    60% {
        transform: translateX(-35%) translateY(20vh) scale(2) rotate(-45deg);
    }
    70% {
        transform: translateX(-65%) translateY(45vh) scale(2.8) rotate(-90deg);
    }
    85% {
        transform: translateX(-40%) translateY(80vh) scale(1.7) rotate(-180deg);
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%) translateY(120vh) scale(0.2) rotate(-270deg);
        opacity: 0;
    }
}

  
  ::selection {
	background-color: var(--color-main);
	color: white;
  }
  
  /* ==================== */
  /* 2. TYPOGRAPHIE PREMIUM */
  /* ==================== */
  h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: var(--space-sm);
	color: var(--color-dark);
  }
  
  h1, h2{ 
	font-size: 3.5rem;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: var(--space-md);
  }
  
  h2 {
	font-size: 2.25rem;
	font-weight: 400 !important;
	position: relative;
  }

  
  h3 {
	font-size: 2rem;
	color: var(--color-second);
  }
  
  h4 {
	font-size: 1.5rem;
	font-weight: 600;
  }
  
  h5 {
	font-size: 1.25rem;
	font-weight: 500;
  }
  
  h6 {
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
  }
  
  p {
	margin-bottom: var(--space-sm);
	font-size: 1.1rem;
	line-height: 1.8;
  }
  
  .lead {
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.6;
	color: var(--color-text-light);
  }
  
  .text-gradient {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
  }
  
  .text-accent {
	color: var(--color-accent);
  }
  
  /* ==================== */
  /* 3. NAVIGATION IMMERSIVE */
  /* ==================== */
  .navbar {
	position: sticky !important;
	backdrop-filter: blur(12px);
	background-color: rgba(255, 255, 255, 0.98) !important;
	box-shadow: var(--shadow-sm);
	padding: var(--space-sm) 0;
	transition: var(--transition);
	position: relative;
	z-index: var(--z-top);
  }
  
  .navbar.scrolled {
	box-shadow: var(--shadow-md);
	padding: var(--space-xs) 0;
  }
  
  .navbar-brand {
	display: flex;
	align-items: center;
	transition: var(--transition);
  }
  
  .navbar-brand img {
	height: 50px;
	transition: all 0.4s ease;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  }
  
  .navbar-brand:hover img {
	transform: scale(1.05) rotate(-2deg);
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  }
  
  .nav-link {
	position: relative;
	font-family: var(--font-accent);
	font-weight: 500;
	color: var(--color-dark) !important;
	padding: var(--space-xs) var(--space-sm) !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	transition: var(--transition-fast);
  }
  
  .nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--gradient-main);
	transition: var(--transition);
  }
  
  .nav-link:hover::before,
  .nav-link.active::before {
	width: calc(100% - 2rem);
  }
  
  .navbar-toggler {
	border: none;
	padding: var(--space-xs);
	transition: var(--transition);
  }
  
  .navbar-toggler:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(254, 106, 45, 0.3);
  }
  
  .navbar-toggler-icon {
	background-image: none;
	position: relative;
	width: 24px;
	height: 2px;
	background-color: var(--color-main);
	transition: var(--transition);
  }
  
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-main);
	transition: var(--transition);
  }
  
  .navbar-toggler-icon::before {
	top: -8px;
  }
  
  .navbar-toggler-icon::after {
	bottom: -8px;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-color: transparent;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
	transform: rotate(45deg);
	top: 0;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
  }
  
  /* Menu mobile */
  @media (max-width: 992px) {
	.navbar-collapse {
	  position: fixed;
	  top: 80px;
	  left: 0;
	  right: 0;
	  background: rgba(255, 255, 255, 0.98);
	  backdrop-filter: blur(20px);
	  padding: var(--space-md);
	  margin: 0 var(--space-md);
	  border-radius: var(--border-radius-lg);
	  box-shadow: var(--shadow-lg);
	  z-index: var(--z-top);
	  max-height: calc(100vh - 120px);
	  overflow-y: auto;
	  transform: translateY(20px);
	  opacity: 0;
	  visibility: hidden;
	  transition: all 0.4s ease;
	}
	
	.navbar-collapse.show {
	  transform: translateY(0);
	  opacity: 1;
	  visibility: visible;
	}
	
	.nav-item {
	  margin-bottom: var(--space-xs);
	}
	
	.nav-link {
	  padding: var(--space-sm) 0 !important;
	  border-bottom: 1px solid rgba(0,0,0,0.05);
	}
  }

  @media (max-width: 768px) {
    .nav-header .burger-menu {
        display: block;
    }

    .menu-links {
        display: none;
        flex-direction: column;
    }

    #burger-toggle:checked ~ .menu-links {
        display: flex;
    }
}
  
  /* ==================== */
  /* 4. HERO SECTION CINEMATIQUE */
  /* ==================== */
  .hero-section {
	position: relative;
	overflow: hidden;
	background: var(--gradient-second);
	color: white;
	padding: var(--space-xxl) 0;
	display: flex;
	align-items: center;
  }
  
  .hero-content {
	position: relative;
	z-index: var(--z-base);
  }
  
  .hero-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--space-md);
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  .hero-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: var(--space-lg);
	opacity: 0.9;
	max-width: 800px;
  }

  .certification-label {
	position: absolute;
	z-index: 99;
	bottom: -2rem;
	left: 0;
	background-color: white;
	color: #111827;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
}

.certification-label-icon {
	background-color: var(--qualiopi);
	color: #FFF;
	text-align: center;
	display: flex;
	align-items: center;
	aspect-ratio: 1 / 1;
	height: 100%;
	padding: 0.5rem;
	border-radius: 50%;
	margin-right: 0.5rem;
}
.certification-label-icon i{
	
}
  
  /* Éléments de fond animés */
  .hero-bg-element {
	position: absolute;
	border-radius: var(--border-radius-circle);
	filter: blur(80px);
	opacity: 0.2;
	animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	animation-iteration-count: infinite;
	animation-direction: alternate;
  }
  
  .hero-bg-element-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	left: -100px;
	background: var(--color-main);
	animation-name: float-1;
	animation-duration: 12s;
  }
  
  .hero-bg-element-2 {
	width: 600px;
	height: 600px;
	bottom: -150px;
	right: -150px;
	background: var(--color-accent);
	animation-name: float-2;
	animation-duration: 15s;
  }
  
  .hero-bg-element-3 {
	width: 300px;
	height: 300px;
	top: 50%;
	right: 10%;
	background: white;
	animation-name: float-3;
	animation-duration: 10s;
  }
  
  @keyframes float-1 {
	0% { transform: translate(0, 0) rotate(0deg); }
	100% { transform: translate(50px, 50px) rotate(5deg); }
  }
  
  @keyframes float-2 {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-100px, -50px) scale(1.05); }
	100% { transform: translate(0, 0) scale(1); }
  }
  
  @keyframes float-3 {
	0% { transform: translate(0, 0); }
	50% { transform: translate(30px, -30px); }
	100% { transform: translate(0, 0); }
  }
  
  /* Forme décorative */
  .hero-shape {
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: 0;
	left: 0;
	background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23f8f9fa' opacity='.25'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23f8f9fa' opacity='.5'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23f8f9fa'/%3E%3C/svg%3E");
	background-size: cover;
	background-repeat: no-repeat;
	z-index: var(--z-base);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.hero-section {
	  min-height: auto;
	  padding: var(--space-xl) 0;
	  text-align: center;
	}
	
	.hero-title {
	  font-size: 2.5rem;
	}
	
	.hero-subtitle {
	  font-size: 1.2rem;
	}
	
	.hero-bg-element {
	  display: none;
	}
  }
  
  /* ==================== */
  /* 5. SYSTEME DE CARTES EVOLUE */
  /* ==================== */
  .card {
	border: none;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	position: relative;
	background-color: white;
	margin-bottom: var(--space-md);
  }
  
  .card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
  }
  
  .card-img-top {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: var(--transition-slow);
  }
  
  .card:hover .card-img-top {
	transform: scale(1.05);
  }
  
  .card-body {
	padding: var(--space-md);
  }
  
  .card-title {
	font-size: 1.5rem;
	margin-bottom: var(--space-sm);
	color: var(--color-dark);
  }

  .card-title::before,
	.card-title::after {
		content: none !important;
		display: none !important;
	}


  .card-text {
	color: var(--color-text-light);
	margin-bottom: var(--space-md);
  }
  
  .card-footer {
	background: transparent;
	border-top: 1px solid rgba(0,0,0,0.05);
	padding: var(--space-md);
  }
  
  /* Variantes de cartes */
  .card-featured {
	border-top: 4px solid var(--color-main);
  }
  
  .card-featured .card-title {
	color: var(--color-main);
  }
  
  .card-testimonial {
	background: var(--color-dark);
	color: white;
  }
  
  .card-testimonial .card-text {
	color: rgba(255,255,255,0.8);
  }
  
  .card-overlay {
	position: relative;
	color: white;
  }
  
  .card-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	z-index: var(--z-base);
  }
  
  .card-overlay .card-body {
	position: relative;
	z-index: var(--z-over);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
  }
  
  /* Cartes de formation spécifiques */
  .card-formation {
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: 1px solid rgba(0,0,0,0.05);
  }
  
  .card-formation:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  }
  
  .card-formation-instagram {
	border-top: 4px solid #E1306C;
  }
  
  .card-formation-photo {
	border-top: 4px solid #4ECDC4;
  }
  
  .card-formation-immobilier {
	border-top: 4px solid var(--color-second);
  }
  
  /* Badges de cartes */
  .card-badge {
	position: absolute;
	top: var(--space-sm);
	right: var(--space-sm);
	background: var(--gradient-main);
	color: white;
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--border-radius-pill);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: var(--shadow-sm);
	z-index: var(--z-over);
  }
  
  /* ==================== */
  /* 6. BOUTONS & INTERACTIONS */
  /* ==================== */
  .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--border-radius-pill);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
  }
  
  .btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
  }
  
  .btn:active {
	transform: translateY(1px);
  }
  
  .btn-primary {
	background: var(--gradient-main);
	margin: 2rem 0 !important;
	color: white;
  }
  
  .btn-primary:hover {
	background: linear-gradient(135deg, #ff5e1a, #ff8e53);
	color: white;
  }
  
  .btn-secondary {
	background: var(--gradient-second);
	color: white;
  }
  
  .btn-secondary:hover {
	background: linear-gradient(135deg, #1a0a91, #3a0ca3);
	color: white;
  }
  
  .btn-accent {
	background: var(--gradient-accent);
	color: var(--color-dark);
  }
  
  .btn-accent:hover {
	background: linear-gradient(135deg, #3dd5c8, #6df7e5);
  }
  
  .btn-outline {
	background: transparent;
	border: 2px solid var(--color-main);
	color: var(--color-main);
  }
  
  .btn-outline:hover {
	background: var(--color-main);
	color: white;
  }
  
  .btn-lg {
	padding: var(--space-md) var(--space-lg);
	font-size: 1.1rem;
  }
  
  .btn-sm {
	padding: var(--space-xs) var(--space-sm);
	font-size: 0.8rem;
  }
  
  .btn-icon {
	display: inline-flex;
	align-items: center;
  }
  
  .btn-icon i {
	margin-right: var(--space-xs);
  }
  
  /* Effet de vague au survol */
  .btn-wave::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	border-radius: 100%;
	transform: scale(1, 1) translate(-50%, -50%);
	transform-origin: 50% 50%;
  }
  
  .btn-wave:hover::after {
	animation: wave 0.6s ease-out;
  }
  
  @keyframes wave {
	0% {
	  transform: scale(1, 1) translate(-50%, -50%);
	  opacity: 0.5;
	}
	100% {
	  transform: scale(20, 20) translate(-50%, -50%);
	  opacity: 0;
	}
  }
  
  /* ==================== */
  /* 7. SECTIONS THEMATIQUES */
  /* ==================== */
  .section {
	padding: var(--space-xxl) 0;
	position: relative;
  }
  
  .section-title {
	text-align: center;
	margin-bottom: var(--space-xl);
  }
  
  .section-title h2 {
	display: inline-block;
  }
  
  .section-title h2::after {
	left: 50%;
	transform: translateX(-50%);
  }
  
  .section-dark {
	background: var(--color-dark);
	color: white;
  }
  
  .section-dark h2,
  .section-dark h3,
  .section-dark h4 {
	color: white;
  }
  
  .section-dark p {
	color: rgba(255,255,255,0.8);
  }
  
  .section-light {
	background: var(--color-light);
  }
  
  .section-accent {
	background: var(--gradient-accent);
	color: var(--color-dark);
  }
  
  .section-main {
	background: var(--gradient-main);
	color: white;
  }
  
  .section-second {
	background: var(--gradient-second);
	color: white;
  }
  
  .section-parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
  }
  
  .section-parallax::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: var(--z-base);
  }
  
  .section-parallax .container {
	position: relative;
	z-index: var(--z-over);
  }
  
  /* Section spécifique pour Instagram */
  .section-instagram {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	color: white;
  }
  
  /* Section spécifique pour Photo */
  .section-photo {
	background: linear-gradient(135deg, #4b6cb7, #182848);
	color: white;
  }

  /*=======================================================
			CONTENU:
========================================================*/



.block-contenu * {
    /* margin: 0; */
    box-sizing: border-box;
}

.block-contenu {
    background-color: #fdf6ea;
    color: #000;
    line-height: 1.6;
	padding: 0 !important;
}

.block-contenu h2{
	font-weight: 400 !important;
}

.block-contenu p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
}

/* Section Styles */
.block-contenu section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Advanced Background Shapes */
.block-contenu section {
    position: relative;
    overflow: hidden;
}

section > div{
	max-width: 1600px;
	margin: auto !important;
}

.block-contenu .image-text img {
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.block-contenu .image-text img:hover {
    transform: scale(1.01);
}

img[style*="border-radius: 50%"] {
    aspect-ratio: 1 / 1;
    height: 100%;
    width: auto;
    object-fit: cover;
}


.block-contenu .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}



.block-contenu .col-lg-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 15px;
}

.block-contenu .col-lg-12{
    margin: auto 20px;
}


  
  /* ==================== */
  /* 8. GALERIE PHOTO AVANCEE */
  /* ==================== */
  .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--space-md);
	margin: var(--space-lg) 0;
  }
  
  .gallery-item {
	position: relative;
	border-radius: var(--border-radius-md);
	overflow: hidden;
	aspect-ratio: 4/3;
	transition: var(--transition);
  }
  
  .gallery-item:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg);
  }
  
  .gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
  }
  
  .gallery-item:hover .gallery-img {
	transform: scale(1.1);
  }
  
  .gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--space-md);
	opacity: 0;
	transition: var(--transition);
  }
  
  .gallery-item:hover .gallery-overlay {
	opacity: 1;
  }
  
  .gallery-title {
	color: white;
	font-size: 1.2rem;
	margin-bottom: var(--space-xs);
	transform: translateY(20px);
	transition: var(--transition);
  }
  
  .gallery-item:hover .gallery-title {
	transform: translateY(0);
  }
  
  .gallery-meta {
	color: rgba(255,255,255,0.8);
	font-size: 0.9rem;
	transform: translateY(20px);
	transition: var(--transition);
	transition-delay: 0.1s;
  }
  
  .gallery-item:hover .gallery-meta {
	transform: translateY(0);
  }
  
  /* Effet polaroïd */
  .gallery-polaroid {
	background: white;
	padding: var(--space-sm) var(--space-sm) var(--space-xl);
	box-shadow: var(--shadow-md);
	transform: rotate(-2deg);
  }
  
  .gallery-polaroid:hover {
	transform: rotate(0deg) scale(1.03);
  }
  
  .gallery-polaroid::after {
	content: attr(data-title);
	position: absolute;
	bottom: var(--space-sm);
	left: 0;
	width: 100%;
	text-align: center;
	font-family: var(--font-heading);
	color: var(--color-text);
  }
  
  /* ==================== */
  /* 9. EFFETS VISUELS SPECIAUX */
  /* ==================== */
  /* Hover effect with shine */
  .hover-shine {
	position: relative;
	overflow: hidden;
  }
  
  .hover-shine::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
	  90deg,
	  rgba(255, 255, 255, 0) 0%,
	  rgba(255, 255, 255, 0.3) 50%,
	  rgba(255, 255, 255, 0) 100%
	);
	transition: var(--transition-slow);
  }
  
  .hover-shine:hover::before {
	left: 100%;
  }
  
  /* Floating effect */
  .floating {
	animation: floating 3s ease-in-out infinite;
  }
  
  @keyframes floating {
	0% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0); }
  }
  
  /* Gradient text animation */
  .text-gradient-animate {
	background: linear-gradient(90deg, var(--color-main), var(--color-accent), var(--color-second));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradientText 3s linear infinite;
  }
  
  @keyframes gradientText {
	0% { background-position: 0% center; }
	100% { background-position: 200% center; }
  }
  
  /* Photo filter effects */
  .photo-filter {
	transition: var(--transition);
  }
  
  .photo-filter:hover {
	filter: brightness(1.05) contrast(1.1) saturate(1.2);
  }
  
  .filter-warm {
	filter: sepia(0.2) brightness(1.05) contrast(0.95);
  }
  
  .filter-cool {
	filter: brightness(1.05) hue-rotate(5deg) saturate(1.1);
  }
  
  .filter-dramatic {
	filter: contrast(1.2) brightness(0.9) saturate(1.1);
  }
  
  /* ==================== */
  /* 10. OVERLAYS & MODALS */
  /* ==================== */
  .modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--z-super);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
  }
  
  .modal-overlay.active {
	opacity: 1;
	visibility: visible;
  }
  
  .modal-content {
	background: white;
	border-radius: var(--border-radius-lg);
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(50px);
	transition: var(--transition);
	position: relative;
  }
  
  .modal-overlay.active .modal-content {
	transform: translateY(0);
  }
  
  .modal-close {
	position: absolute;
	top: var(--space-sm);
	right: var(--space-sm);
	width: 40px;
	height: 40px;
	border-radius: var(--border-radius-circle);
	background: rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
  }
  
  .modal-close:hover {
	background: var(--color-main);
	color: white;
  }
  
  /* Lightbox gallery */
  .lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: var(--z-super);
  }
  
  .lightbox-content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
  }
  
  .lightbox-img {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
  }
  
  .lightbox-close {
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	color: white;
	font-size: 2rem;
	cursor: pointer;
  }
  
  .lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 2rem;
	cursor: pointer;
	background: rgba(0,0,0,0.5);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius-circle);
  }
  
  .lightbox-prev {
	left: var(--space-md);
  }
  
  .lightbox-next {
	right: var(--space-md);
  }
  
  /* ==================== */
  /* 11. FORMULAIRES HAUT-DE-GAMME */
  /* ==================== */
  .form-control {
	padding: var(--space-sm);
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: var(--border-radius-md);
	transition: var(--transition);
	font-family: var(--font-base);
  }
  
  .form-control:focus {
	border-color: var(--color-main);
	box-shadow: 0 0 0 3px rgba(254, 106, 45, 0.2);
	outline: none;
  }
  
  .form-group {
	margin-bottom: var(--space-md);
  }
  
  .form-label {
	display: block;
	margin-bottom: var(--space-xs);
	font-weight: 500;
  }
  
  .form-check-input:checked {
	background-color: var(--color-main);
	border-color: var(--color-main);
  }
  
  /* Formulaire de contact premium */
  .contact-form {
	background: white;
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-md);
  }
  
  .contact-form .form-control {
	font-size: 1.1rem;
	color: #FFF;
  }
  
  /* ==================== */
  /* 12. PIED DE PAGE LUXE */
  /* ==================== */
  .site-footer {
	background: var(--color-dark);
	color: white;
	padding: var(--space-xxl) 0 0;
	position: relative;
  }
  
  .footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-xl);
	margin-bottom: var(--space-xl);
  }
  
  .footer-logo img {
	max-width: 180px;
	margin-bottom: var(--space-md);
  }
  
  .footer-about {
	margin-bottom: var(--space-md);
	opacity: 0.8;
  }
  
  .footer-title {
	font-size: 1.2rem;
	margin-bottom: var(--space-md);
	position: relative;
	padding-bottom: var(--space-xs);
  }
  
  .footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--color-main);
  }
  
  .footer-links {
	list-style: none;
  }
  
  .footer-links li {
	margin-bottom: var(--space-xs);
  }
  
  .footer-link {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: var(--transition);
	position: relative;
	transition: var(--transition);
  }
  
  .footer-link:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-main);
	transition: var(--transition);
  }
  
  .footer-link:hover {
	color: var(--color-main);
  }
  
  .footer-link:hover:after {
	width: 100%;
  }
  
  /* ==================== */
  /* RESPONSIVE */
  /* ==================== */
  @media (max-width: 992px) {
	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
	
	.navbar-collapse {
	  background: rgba(255, 255, 255, 0.98);
	  backdrop-filter: blur(10px);
	  padding: var(--space-md);
	  margin-top: var(--space-sm);
	  border-radius: 12px;
	  box-shadow: var(--shadow-sm);
	}
	
	.hero-section {
	  text-align: center;
	}
	
	.image-frame {
	  transform: none;
	  margin-bottom: var(--space-lg);
	}
	
	.image-frame:after {
	  display: none;
	}

	.block-contenu .row{
		gap: 25px;
	  }
	  .row [class*="col-"] {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
	  }
	
  }
  
  /* ==================== */
  /* ANIMATIONS SUBTILES */
  /* ==================== */
  @keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
  }
  
  .animate-fadein {
	animation: fadeIn 0.8s ease forwards;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  
  /* ==================== */
  /* OVERRIDES BOOTSTRAP */
  /* ==================== */
  .container {
	max-width: 1600px;
	margin: auto;
  }
  
  .row {
	margin-bottom: var(--space-md);
  }
  
  /* ==================== */
  /* ELEMENTS SPECIFIQUES */
  /* ==================== */
  .contact-button {
	position: fixed;
	bottom: var(--space-md);
	right: var(--space-md);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--color-main);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	z-index: 1000;
	transition: var(--transition);
	animation: pulse 2s infinite;
  }
  
  .contact-button:hover {
	transform: scale(1.1) rotate(10deg);
	animation: none;
  }
  
  @keyframes pulse {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254, 106, 45, 0.7); }
	70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(254, 106, 45, 0); }
	100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254, 106, 45, 0); }
  }

  .contact-button a{
	color: #FFF !important;
  }
  
  /* ==================== */
  /* EFFETS PHOTO */
  /* ==================== */
  .photo-filter {
	filter: brightness(0.98) contrast(1.05) saturate(1.1);
	transition: var(--transition);
  }
  
  .photo-filter:hover {
	filter: brightness(1.02) contrast(1.1) saturate(1.2);
  }