/*
Theme Name: Spirythm Theme
Theme URI: https://spirythm.com/
Author: Spirythm Development
Description: Thème sur-mesure pour Spirythm Agency - Design modern, responsive & RTL.
Version: 1.0.0
Text Domain: spirythm-theme
*/

:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-color: #1e293b;
  --card-bg: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

/* Support RTL pour l'Arabe */
body.rtl {
  direction: rtl;
  text-align: right;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Grid Bandas */
.bandas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.banda-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.banda-card:hover {
  transform: translateY(-5px);
}

.banda-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.banda-content {
  padding: 20px;
}

.banda-title {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
}

/* Formulaire Lead Generation AJAX */
.lead-form-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-sizing: border-box;
}

.btn-submit {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}

.form-response {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  display: none;
}

.form-response.success {
  background: #dcfce7;
  color: #166534;
  display: block;
}

.form-response.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}