/*
Theme Name: Kadence Child - Bujinkan Montpellier
Theme URI: https://ninjutsu-montpellier.com
Description: Thème enfant Kadence pour le site Bujinkan Wakachiai Dojo Montpellier
Author: Nicolas
Template: kadence
Version: 1.0.0
Text Domain: kadence-child
*/

/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #6d28d9;
  --color-primary-light: #a78bfa;
  --color-secondary: #1f2937;
  --color-violet-50: #faf5ff;
  --color-violet-100: #f3e8ff;
  --color-violet-600: #7c3aed;
  --color-violet-700: #6d28d9;
  --color-violet-900: #4c1d95;
  --color-purple-700: #7e22ce;
  --color-purple-900: #581c87;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --color-white: #ffffff;
  --color-green-500: #10b981;
  --color-green-600: #059669;
}

/* ========================================
   RESET & GLOBAL
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-secondary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ========================================
   LAYOUT
   ======================================== */
.section-padding {
  padding: 4rem 1rem;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   GRILLES
   ======================================== */
.grid-1,
.grid-2,
.grid-3 {
  display: grid;
  gap: 2rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(109, 40, 217, 0.9), rgba(124, 58, 237, 0.8));
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.hero-title {
  color: white !important;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

@media (min-width: 640px) {
  .hero-section { min-height: 600px; }
  .hero-buttons { flex-direction: row; }
  .hero-info { flex-direction: row; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.25rem; }
}

/* ========================================
   HERO SIMPLE (sans image background)
   ======================================== */
.hero-simple {
  position: relative;
  background: linear-gradient(to bottom right, var(--color-violet-600), var(--color-purple-700));
  padding: 5rem 1rem;
  text-align: center;
}

.hero-simple h1,
.hero-simple p {
  color: white;
}

.hero-kanji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: white;
}

@media (max-width: 768px) {
  .hero-kanji { font-size: 3rem; }
}

/* ========================================
   HERO IMAGE (avec background image)
   ======================================== */
.hero-image {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(76, 29, 149, 0.9), rgba(109, 40, 217, 0.8));
  z-index: 10;
}

.hero-image-content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 56rem;
}

.hero-image h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-image-icon {
  margin-bottom: 1rem;
  color: white;
}

/* ========================================
   BOUTONS
   ======================================== */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
  border: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

/* ========================================
   CARTES
   ======================================== */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-shadow-lg {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-shadow-xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* ========================================
   BLOCS AVEC ICÔNES
   ======================================== */
.icon-block {
  text-align: center;
  padding: 1.5rem;
}

.icon-circle {
  width: 4rem;
  height: 4rem;
  background: var(--color-violet-100);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.icon-circle svg {
  width: 2rem;
  height: 2rem;
}

.icon-box-lg {
  width: 4rem;
  height: 4rem;
  background: var(--color-violet-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* ========================================
   ACTUALITÉS
   ======================================== */
.news-card {
  background: linear-gradient(to bottom right, var(--color-violet-50), #f3e8ff);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ========================================
   TÉMOIGNAGES
   ======================================== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: #fbbf24;
}

.testimonial-text {
  color: #e5e7eb;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary-light);
}

/* ========================================
   GALERIE
   ======================================== */
.gallery-item {
  position: relative;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ========================================
   CARTE INFO
   ======================================== */
.info-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--color-violet-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ========================================
   CARTE MAP
   ======================================== */
.map-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.map-placeholder-content {
  text-align: center;
}

/* ========================================
   BACKGROUNDS
   ======================================== */
.bg-white { background-color: white; }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-gray-900 { background-color: var(--color-gray-900); color: white; }

.bg-gradient-violet {
  background: linear-gradient(to bottom right, var(--color-violet-50), #f3e8ff);
}

.bg-gradient-purple {
  background: linear-gradient(to bottom right, var(--color-violet-600), var(--color-purple-700));
}

.bg-gradient-green {
  background: linear-gradient(to bottom right, #f0fdf4, #d1fae5);
}

/* ========================================
   BORDURES
   ======================================== */
.border-violet {
  border: 2px solid var(--color-primary);
}

.border-green {
  border: 2px solid var(--color-green-500);
}

.border-white-20 {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.border-gray-200 {
  border: 1px solid var(--color-gray-200);
}

/* ========================================
   ROUNDED
   ======================================== */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ========================================
   SPACING - MARGINS
   ======================================== */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* ========================================
   SPACING - PADDING
   ======================================== */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* ========================================
   TEXT
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }

.text-white { color: white; }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }

.text-violet { color: var(--color-primary); }
.text-violet-300 { color: #c4b5fd; }
.text-violet-600 { color: var(--color-violet-600); }
.text-violet-700 { color: var(--color-violet-700); }

.text-green-600 { color: var(--color-green-600); }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.italic { font-style: italic; }

/* ========================================
   FLEX
   ======================================== */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ========================================
   POSITION
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }

/* ========================================
   OVERFLOW
   ======================================== */
.overflow-hidden { overflow: hidden; }

/* ========================================
   WIDTH / HEIGHT
   ======================================== */
.w-full { width: 100%; }
.h-full { height: 100%; }

.aspect-video {
  aspect-ratio: 16/9;
}

/* ========================================
   MAX WIDTH
   ======================================== */
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }

/* ========================================
   SHADOW
   ======================================== */
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

/* ========================================
   BACKDROP
   ======================================== */
.backdrop-blur {
  backdrop-filter: blur(10px);
}

/* ========================================
   OPACITY
   ======================================== */
.opacity-90 {
  opacity: 0.9;
}

/* ========================================
   SPACE-Y (Gap vertical)
   ======================================== */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ========================================
   PROSE (Typography)
   ======================================== */
.prose {
  max-width: 65ch;
  line-height: 1.75;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose-lg {
  font-size: 1.125rem;
}

/* ========================================
   LIENS
   ======================================== */
a.text-violet {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a.text-violet:hover {
  color: var(--color-primary-dark);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:p-10 {
    padding: 2.5rem;
  }
  
  .md\:p-12 {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   TRANSITIONS
   ======================================== */
.transition {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-shadow {
  transition: box-shadow 0.3s ease;
}

/* ========================================
   OBJECT FIT
   ======================================== */
.object-cover {
  object-fit: cover;
}

/* ========================================
   POSITION ABSOLUTE HELPERS
   ======================================== */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ========================================
   Z-INDEX
   ======================================== */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

/* ========================================
   CURSOR
   ======================================== */
.cursor-pointer { cursor: pointer; }

/* ========================================
   FLEX SHRINK
   ======================================== */
.flex-shrink-0 { flex-shrink: 0; }

/* ========================================
   MIN HEIGHT
   ======================================== */
.min-h-80 { min-height: 20rem; }
.min-h-96 { min-height: 24rem; }

/* ========================================
   BORDER LEFT
   ======================================== */
.border-l-4 {
  border-left: 4px solid var(--color-primary);
}

/* ========================================
   PADDING LEFT
   ======================================== */
.pl-4 { padding-left: 1rem; }

/* ========================================
   INLINE FLEX
   ======================================== */
.inline-flex {
  display: inline-flex;
}

/* ========================================
   DISPLAY BLOCK
   ======================================== */
.block { display: block; }

/* ========================================
   TEXT DECORATION
   ======================================== */
.no-underline { text-decoration: none; }

/* ========================================
   CLASSES TAILWIND MANQUANTES
   ======================================== */

/* Position */
.absolute { position: absolute !important; }
.relative { position: relative !important; }

/* Inset */
.inset-0 {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

/* Backgrounds avec gradients */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
}

/* From colors avec opacité */
.from-violet-900\/90 {
  --tw-gradient-from: rgba(76, 29, 149, 0.9) !important;
  --tw-gradient-to: rgba(76, 29, 149, 0) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.from-violet-600 {
  --tw-gradient-from: #7c3aed !important;
  --tw-gradient-to: rgba(124, 58, 237, 0) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.from-violet-50 {
  --tw-gradient-from: #faf5ff !important;
  --tw-gradient-to: rgba(250, 245, 255, 0) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

/* To colors avec opacité */
.to-purple-900\/80 {
  --tw-gradient-to: rgba(88, 28, 135, 0.8) !important;
}

.to-purple-700 {
  --tw-gradient-to: #7e22ce !important;
}

.to-purple-50 {
  --tw-gradient-to: #f3e8ff !important;
}

/* Z-index */
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }

/* Width/Height */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.h-64 { height: 16rem !important; }
.h-80 { height: 20rem !important; }
.h-96 { height: 24rem !important; }

/* Min height */
.min-h-96 { min-height: 24rem !important; }

/* Object fit */
.object-cover { object-fit: cover !important; }

/* Flex */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

/* Items */
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }

/* Justify */
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }

/* Space */
.space-x-2 > * + * { margin-left: 0.5rem !important; }
.space-x-3 > * + * { margin-left: 0.75rem !important; }
.space-y-4 > * + * { margin-top: 1rem !important; }
.space-y-6 > * + * { margin-top: 1.5rem !important; }
.space-y-8 > * + * { margin-top: 2rem !important; }

/* Gap */
.gap-2 { gap: 0.5rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }

/* Padding */
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }

/* Margin */
.mt-2 { margin-top: 0.5rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-12 { margin-top: 3rem !important; }

.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Text colors */
.text-white { color: white !important; }
.text-gray-300 { color: #d1d5db !important; }
.text-gray-600 { color: #4b5563 !important; }
.text-gray-700 { color: #374151 !important; }
.text-violet-300 { color: #c4b5fd !important; }
.text-violet-600 { color: #7c3aed !important; }
.text-violet-700 { color: #6d28d9 !important; }

/* Text size */
.text-sm { font-size: 0.875rem !important; }
.text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }

/* Text align */
.text-center { text-align: center !important; }

/* Font */
.italic { font-style: italic !important; }
.not-italic { font-style: normal !important; }

/* Backgrounds */
.bg-white { background-color: white !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-gray-200 { background-color: #e5e7eb !important; }
.bg-gray-900 { background-color: #111827 !important; }
.bg-violet-50 { background-color: #faf5ff !important; }
.bg-violet-600 { background-color: #7c3aed !important; }

.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1) !important; }

/* Borders */
.border { border: 1px solid #e5e7eb !important; }
.border-l-4 { border-left: 4px solid var(--color-primary) !important; }
.border-violet-600 { border-color: #7c3aed !important; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2) !important; }

/* Border radius */
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Shadow */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important; }

/* Hover */
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important; }
.hover\:bg-violet-700:hover { background-color: #6d28d9 !important; }

/* Transitions */
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease !important; }
.transition-shadow { transition: box-shadow 0.3s ease !important; }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; }

/* Grid */
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr) !important; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16/9 !important; }

/* Max width */
.max-w-none { max-width: none !important; }
.max-w-4xl { max-width: 56rem !important; margin-left: auto !important; margin-right: auto !important; }
.max-w-6xl { max-width: 72rem !important; margin-left: auto !important; margin-right: auto !important; }

/* Prose */
.prose { max-width: 65ch !important; }
.prose-lg { font-size: 1.125rem !important; }
.prose p { margin-bottom: 1.25rem !important; }

/* Display */
.block { display: block !important; }
.inline-flex { display: inline-flex !important; }

/* Padding left */
.pl-4 { padding-left: 1rem !important; }

/* RESPONSIVE - Medium screens (768px+) */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row !important; }
  .md\:items-start { align-items: flex-start !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
  .md\:col-span-1 { grid-column: span 1 / span 1 !important; }
  .md\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .md\:p-10 { padding: 2.5rem !important; }
  .md\:p-12 { padding: 3rem !important; }
  .md\:h-\[500px\] { height: 500px !important; }
}

/* RESPONSIVE - Large screens (1024px+) */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ========================================
   WIDTH/HEIGHT SPÉCIFIQUES
   ======================================== */
.w-8 { width: 2rem !important; }
.w-12 { width: 3rem !important; }
.w-16 { width: 4rem !important; }

.h-8 { height: 2rem !important; }
.h-12 { height: 3rem !important; }
.h-16 { height: 4rem !important; }

/* ========================================
   FONT
   ======================================== */
.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }

/* ========================================
   TEXT SIZE SPÉCIFIQUES
   ======================================== */
.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }

/* ========================================
   ROUNDED-FULL
   ======================================== */
.rounded-full { border-radius: 9999px !important; }

/* ========================================
   PADDING SPÉCIFIQUES
   ======================================== */
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }

/* ========================================
   MARGIN TOP
   ======================================== */
.mt-3 { margin-top: 0.75rem !important; }

/* ========================================
   TEXT OPACITY
   ======================================== */
.text-white\/90 {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ========================================
   MAX WIDTH
   ======================================== */
.max-w-3xl { 
  max-width: 48rem !important; 
  margin-left: auto !important; 
  margin-right: auto !important; 
}