@charset "UTF-8";
/* ===== PRESENTATION PAGE CSS - VERSION V2 MODERNE ===== */
/* Variables CSS personnalisées - Cohérentes avec la homepage */
:root {
  --presentation-primary: #007bff;
  --presentation-secondary: #7004bc;
  --presentation-accent: #3264f5;
  --presentation-bg-light: #ffffff;
  --presentation-bg-hover: #f9fafb;
  --presentation-bg-gradient: linear-gradient(135deg, #007bff 0%, #7004bc 50%, #3264f5 100%);
  --presentation-text-dark: #404854;
  --presentation-text-muted: #696969;
  --presentation-border: #e2e8f0;
  --presentation-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --presentation-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --presentation-shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Section de présentation générale */
/* Utilisation de la classe .section existante */
/* Conteneur principal */
.presentation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grille responsive */
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .presentation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
/* Contenu textuel */
.presentation-content {
  order: 2;
}

@media (min-width: 768px) {
  .presentation-content {
    order: 1;
  }
  .presentation-content.alternate {
    order: 2;
  }
}
.presentation-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--presentation-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.presentation-content h2 .highlight {
  font-weight: 500;
}

.presentation-content .subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.presentation-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--presentation-text-muted);
  margin-bottom: 1.5rem;
}

.presentation-content p:last-child {
  margin-bottom: 2rem;
}

/* Images et visuels */
.presentation-visual {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .presentation-visual {
    order: 2;
  }
  .presentation-visual.alternate {
    order: 1;
  }
}
.presentation-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--presentation-shadow-large);
  transition: all 0.3s ease;
}

.presentation-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Galerie d'images */
.presentation-gallery {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--presentation-shadow-large);
}

.presentation-gallery img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.presentation-gallery:hover img {
  transform: scale(1.05);
}

/* Boutons d'action - Utilisation des classes existantes de la homepage */
/* Les styles sont déjà définis dans base.css et main.css */
/* Section spéciale avec fond dégradé */
.section.gradient {
  background: var(--presentation-bg-gradient);
  color: white;
}

.section.gradient .presentation-content h2 {
  color: white;
  font-weight: 300;
}

.section.gradient .presentation-content h2 .highlight {
  font-weight: 500;
}

.section.gradient .presentation-content p {
  color: white;
}

.section.gradient .presentation-content .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.section.gradient .presentation-features li {
  color: rgba(255, 255, 255, 0.9);
}

.section.gradient .presentation-features li::before {
  color: white;
}

/* Animations d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.section:nth-child(2) {
  animation-delay: 0.1s;
}

.section:nth-child(3) {
  animation-delay: 0.2s;
}

.section:nth-child(4) {
  animation-delay: 0.3s;
}

.section:nth-child(5) {
  animation-delay: 0.4s;
}

.section:nth-child(6) {
  animation-delay: 0.5s;
}

/* Responsive design */
@media (max-width: 768px) {
  .presentation-content h2 {
    font-size: 2rem;
  }
  .presentation-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .presentation-content h2 {
    font-size: 1.75rem;
  }
  .presentation-grid {
    gap: 2rem;
  }
}
/* Effets de survol pour les images */
.presentation-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.presentation-visual:hover::before {
  opacity: 1;
}

/* Liste des fonctionnalités */
.presentation-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.presentation-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--presentation-text-muted);
  font-size: 1.05rem;
}

.presentation-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--presentation-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Section spéciale pour les templates */
.presentation-templates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.presentation-template {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--presentation-shadow);
  transition: all 0.3s ease;
}

.presentation-template:hover {
  transform: translateY(-4px);
  box-shadow: var(--presentation-shadow-hover);
}

.presentation-template img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.presentation-template h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--presentation-text-dark);
  margin-bottom: 0.5rem;
}

.presentation-template p {
  font-size: 0.95rem;
  color: var(--presentation-text-muted);
  margin: 0;
}

/*# sourceMappingURL=presentation.css-kQCniNE.map */
