/* ===== STYLES POUR LA PAGE D'ACCUEIL - VERSION SIMPLIFIÉE ===== */

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body pour la page d'accueil */
body.home-page {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: url('imagefond.png') center center/cover no-repeat fixed;
  color: #000000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Animation du gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animations de base */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Particules flottantes */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(74, 144, 226, 0.6);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 40%; left: 60%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1s; }
.particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 3s; }

/* Header principal */
.hero {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  text-align: center;
  animation: slideInUp 1s ease-out;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FFD700 50%, #FF8C00 75%, #FFD700 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.hero .subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #000000;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero .description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Boutons d'action principaux */
.main-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.main-btn {
  background: linear-gradient(135deg, #000080 0%, #1a1a8a 100%);
  color: #FFFFFF;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 128, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.8s ease-out;
  border: 2px solid #FFD700;
}

.main-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 128, 0.5);
  border-color: #FFA500;
  background: linear-gradient(135deg, #1a1a8a 0%, #000080 100%);
}

/* Bouton de reprise de lecture */
.resume-btn {
  background: linear-gradient(135deg, #000080 0%, #1a1a8a 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(0, 0, 128, 0.3) !important;
  border: 2px solid #FFD700 !important;
  animation: pulse 2s infinite;
}

.resume-btn:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 128, 0.5) !important;
  border-color: #FFA500 !important;
  background: linear-gradient(135deg, #1a1a8a 0%, #000080 100%) !important;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Bouton rapide de reprise */
.resume-quick-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  border: 3px solid #2ecc71 !important;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.resume-quick-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.resume-quick-btn i {
  color: #2ecc71 !important;
}

/* Section verset du jour */
.verse-section {
  max-width: 1400px;
  margin: 20px auto;
  padding: 70px;
  position: relative;
  animation: slideInUp 1s ease-out 0.3s both;
}

.verse-card {
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  border: 3px solid #e8b923;
}

.verse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.verse-badge {
  background: linear-gradient(135deg, #e8b923, #d4af37);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1em;
  box-shadow: 0 8px 25px rgba(232, 185, 35, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.verse-reference {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

.verse-text {
  font-size: 1.8em;
  line-height: 2.2;
  color: #ffffff;
  text-align: center;
  margin: 40px 0;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 3px solid #e8b923;
  position: relative;
  font-style: italic;
  font-weight: 400;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 1;
  text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0    0   3px #000000;
  backdrop-filter: blur(10px);
}

.verse-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  margin-top: 50px;
}

.verse-detail {
  background: rgba(255, 255, 255, 0.15);
  border: 4px solid;
  border-radius: 0px;
  padding: 60px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  min-height: 350px;
}

/* Arrondir seulement les coins extérieurs */
.verse-detail:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.verse-detail:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.verse-detail:nth-child(1) { border-color: #ff6b6b; }
.verse-detail:nth-child(2) { border-color: #4ecdc4; }
.verse-detail:nth-child(3) { border-color: #9b59b6; }

.verse-detail:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.verse-detail:hover h4 {
  color: #2c3e50;
  text-shadow: none;
}

.verse-detail:hover p {
  color: #1a1a1a;
  text-shadow: none;
}

.verse-detail h4 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0    0   4px #000000;
}

.verse-detail h4 i {
  font-size: 2rem;
}

.verse-detail:nth-child(1) h4 { color: #ffcccb; }
.verse-detail:nth-child(2) h4 { color: #b3e5fc; }
.verse-detail:nth-child(3) h4 { color: #d7bde2; }

.verse-detail p {
  color: #ffffff;
  line-height: 2.0;
  font-size: 1.3rem;
  text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0    0   3px #000000;
}

/* Boutons d'action pour le verset */
.verse-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Note de disclaimer */
.verse-disclaimer {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.verse-disclaimer p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0    0   2px #000000;
}

.verse-disclaimer i {
  color: #f39c12;
  margin-right: 8px;
}

/* Responsive pour les cartes du verset du jour */
@media (max-width: 1200px) {
  .verse-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
  }
  
  .verse-detail:last-child {
    border-radius: 30px;
    grid-column: 1 / -1;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .verse-section {
    padding: 40px 25px;
  }
  
  .verse-details {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  
  .verse-detail {
    min-height: 280px;
    padding: 45px;
    border-radius: 30px !important;
    margin-bottom: 20px;
  }
  
  .verse-detail h4 {
    font-size: 1.6rem;
  }
  
  .verse-detail h4 i {
    font-size: 1.8rem;
  }
  
  .verse-detail p {
    font-size: 1.2rem;
  }
}

.verse-action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(74, 144, 226, 0.3);
  color: #4A90E2;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verse-action-btn:hover {
  background: rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.6);
  transform: translateY(-2px);
}

.verse-action-btn.primary {
  background: linear-gradient(135deg, #4A90E2, #87CEEB);
  color: #000000;
  border-color: #4A90E2;
}

/* Section fonctionnalités */
.features-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  animation: slideInUp 1s ease-out 0.6s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 3px solid;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1) { border-color: #ff6b6b; }
.feature-card:nth-child(2) { border-color: #4ecdc4; }
.feature-card:nth-child(3) { border-color: #45b7d1; }
.feature-card:nth-child(4) { border-color: #96ceb4; }
.feature-card:nth-child(5) { border-color: #feca57; }
.feature-card:nth-child(6) { border-color: #ff9ff3; }

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card:nth-child(1) .feature-icon { color: #ff6b6b; }
.feature-card:nth-child(2) .feature-icon { color: #4ecdc4; }
.feature-card:nth-child(3) .feature-icon { color: #45b7d1; }
.feature-card:nth-child(4) .feature-icon { color: #96ceb4; }
.feature-card:nth-child(5) .feature-icon { color: #feca57; }
.feature-card:nth-child(6) .feature-icon { color: #ff9ff3; }

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-description {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-btn {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(135, 206, 235, 0.2));
  color: #4A90E2;
  border: 2px solid rgba(74, 144, 226, 0.3);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-btn:hover {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.8), rgba(135, 206, 235, 0.8));
  color: #000000;
  transform: translateY(-2px);
}

/* Boutons rapides */
.quick-actions {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
  animation: slideInUp 1s ease-out 0.9s both;
}

.quick-actions h3 {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #4A90E2;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.quick-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quick-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  border: 3px solid;
  border-radius: 15px;
  padding: 20px;
  text-decoration: none;
  color: #000000;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.quick-btn:nth-child(1) { border-color: #ff6b6b; }
.quick-btn:nth-child(2) { border-color: #4ecdc4; }
.quick-btn:nth-child(3) { border-color: #45b7d1; }
.quick-btn:nth-child(4) { border-color: #96ceb4; }
.quick-btn:nth-child(5) { border-color: #feca57; }
.quick-btn:nth-child(6) { border-color: #ff9ff3; }
.quick-btn:nth-child(7) { border-color: #9b59b6; }
.quick-btn:nth-child(8) { border-color: #e67e22; }
.quick-btn:nth-child(9) { border-color: #2ecc71; }

.quick-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.quick-btn i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.quick-btn:nth-child(1) i { color: #ff6b6b; }
.quick-btn:nth-child(2) i { color: #4ecdc4; }
.quick-btn:nth-child(3) i { color: #45b7d1; }
.quick-btn:nth-child(4) i { color: #96ceb4; }
.quick-btn:nth-child(5) i { color: #feca57; }
.quick-btn:nth-child(6) i { color: #ff9ff3; }
.quick-btn:nth-child(7) i { color: #9b59b6; }
.quick-btn:nth-child(8) i { color: #e67e22; }
.quick-btn:nth-child(9) i { color: #2ecc71; }

.quick-btn span {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  margin-top: 60px;
  position: relative;
}

/* ===== MODAL POUR AJOUTER UNE NOTE ===== */
.note-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.note-modal-content {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
  border-radius: 25px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(232, 185, 35, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 3px solid #e8b923;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.note-modal-header {
  background: linear-gradient(135deg, #e8b923, #d4af37);
  color: white;
  padding: 25px 30px;
  border-radius: 22px 22px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(232, 185, 35, 0.3);
}

.note-modal-header h3 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.note-modal-header h3 i {
  font-size: 1.2em;
}

.note-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.note-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.note-modal-body {
  padding: 30px;
}

.verse-preview {
  background: linear-gradient(135deg, 
    rgba(232, 185, 35, 0.1) 0%, 
    rgba(232, 185, 35, 0.05) 100%);
  border: 2px solid #e8b923;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.verse-preview-reference {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.verse-preview-text {
  font-size: 1.2rem;
  color: #1a1a1a;
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.note-input-section {
  margin-bottom: 25px;
}

.note-input-section label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.note-input-section textarea {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  border: 2px solid #e8b923;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.note-input-section textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(232, 185, 35, 0.2);
  background: white;
}

.note-tags label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1rem;
}

.note-tags input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8b923;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.note-tags input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(232, 185, 35, 0.2);
  background: white;
}

.note-modal-footer {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%, 
    rgba(255, 255, 255, 0.6) 100%);
  padding: 25px 30px;
  border-radius: 0 0 22px 22px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  border-top: 1px solid rgba(232, 185, 35, 0.2);
}

.note-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.note-btn-cancel {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  color: white;
  box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

.note-btn-cancel:hover {
  background: linear-gradient(135deg, #7f8c8d, #95a5a6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
}

.note-btn-save {
  background: linear-gradient(135deg, #e8b923, #d4af37);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 185, 35, 0.3);
}

.note-btn-save:hover {
  background: linear-gradient(135deg, #d4af37, #e8b923);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.4);
}

.note-btn i {
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  .main-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .main-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .verse-details {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .note-modal-content {
    width: 95%;
    margin: 20px;
  }

  .note-modal-header {
    padding: 20px 25px;
  }

  .note-modal-header h3 {
    font-size: 1.2rem;
  }

  .note-modal-body {
    padding: 25px;
  }

  .note-modal-footer {
    padding: 20px 25px;
    flex-direction: column;
  }

  .note-btn {
    width: 100%;
  }
}

/* ===== STYLES POUR LA SECTION DERNIÈRES ACTIVITÉS ===== */

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Section informations personnelles */
.personal-info-section {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.personal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.personal-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInScale 0.6s ease-out;
}

.personal-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.personal-info-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.personal-info-card:hover::before {
  transform: scaleX(1);
}

.personal-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.personal-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.personal-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFD700;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.personal-info-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.personal-info-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.personal-info-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.personal-info-time,
.personal-info-reference {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.personal-info-btn {
  padding: 8px 15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.personal-info-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* Carte de statistiques spéciale */
.stats-card {
  grid-column: span 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animation de chargement */
.loading-small {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-top: 2px solid #FFD700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive pour les cartes d'informations personnelles */
@media (max-width: 768px) {
  .personal-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-card {
    grid-column: span 1;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .personal-info-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .personal-info-details {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .personal-info-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .personal-info-section {
    padding: 40px 15px;
  }
  
  .personal-info-card {
    padding: 20px;
  }
  
  .personal-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .personal-info-title {
    font-size: 1.1rem;
  }
}