body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fdfdfd;
  color: #333;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #feda75, #d62976, #962fbf);
  color: white;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.input-section {
  margin-top: 1rem;
}

input[type="text"] {
  padding: 0.5rem;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  background-color: #d62976;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #a1235d;
}

.error {
  color: red;
  margin-top: 1rem;
}

.stories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.story-card {
  width: 160px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.story-card img,
.story-card video {
  width: 100%;
  height: auto;
}

.story-card a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: #d62976;
  font-size: 0.85rem;
}

footer {
  background: #f1f1f1;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.8rem;
}

.faq-section {
  max-width: 1000px; /* ou plus large selon ce que tu veux */
  width: 100%;
  margin: 3rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d62976;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: #f9f9f9;
  border: none;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  color: #000;
}

.faq-question:hover {
  background-color: #d62976;
}

.faq-answer {
  padding: 1rem;
  display: none;
  background: white;
  border-top: 1px solid #ddd;
  color: #000; 
}
footer {
  background: #f1f1f1;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d62976;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d62976;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #d62976; /* Couleur rose Instagram */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.profile-section {
  margin: 2rem auto;
  padding: 1rem;
  max-width: 600px;
  text-align: center;
}

.profile-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.profile-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  justify-content: center;
}

.profile-meta {
  font-size: 0.9rem;
  color: #333;
  text-align: left;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none; /* pas de soulignement */
  color: white;          /* garde la couleur de ton header */
  cursor: pointer;       /* affiche le doigt */
}

.logo:hover {
  opacity: 0.8;          /* petit effet visuel au hover */
}
.seo-text-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.seo-text-section h2 {
  color: #d62976;
  margin-bottom: 1rem;
}

.seo-text-section h3 {
  margin-top: 2rem;
  color: #333;
}

.seo-text-section p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.6;
}

.seo-text-section ul {
  padding-left: 1.5rem;
  color: #555;
}

.seo-text-section li {
  margin-bottom: 0.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
  text-align: left;
}

.blog-content h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.blog-content a {
  text-decoration: none;
  color: #d62976;
}

.blog-content .read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #d62976;
}
