<?php

declare(strict_types=1);

require_once __DIR__ . '/includes/events.php';

$events = readEventsFromTextFile(__DIR__ . '/data/events.txt');
$upcomingEvents = getUpcomingEvents($events);
$nextEvent = $upcomingEvents[0] ?? null;
?>
<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Chorale Anarchiste de Genève</title>
  <link rel="icon" type="image/x-icon" href="img/anarchy-symbol-handwritten.ico" />
  <link rel="stylesheet" href="styles.css" />
</head>
<body>
  <header class="site-header">
    <div class="container">
      <div class="site-brand">
        <img src="img/anarchy-symbol-handwritten.svg" alt="Logo anarchiste" class="site-logo" />
        <h1>Chorale Anarchiste de Genève</h1>
      </div>
      <nav class="main-nav" aria-label="Navigation principale">
        <a href="index.php" class="active">Accueil</a>
        <a href="ressources.php">Ressources</a>
        <a href="agenda.php">Agenda</a>
      </nav>
    </div>
  </header>

  <main>
    <section class="hero container">
      <h2>Voix rebelles, harmonies insoumises</h2>
      <p>
        Nous faisons vivre les chants de solidarité, d'émancipation et de résistance.
        Rejoins-nous pour répéter, chanter dans la rue et faire vibrer Genève.
      </p>
      <a class="cta" href="agenda.php">Voir l'agenda</a>
    </section>

    <section class="container next-event-section">
      <h2>Prochain événement</h2>
      <article class="event-card">
        <?php if ($nextEvent === null): ?>
          <p>Aucun événement à venir pour le moment.</p>
        <?php else: ?>
          <span class="event-date"><?= htmlspecialchars(formatEventDateFr($nextEvent['date']), ENT_QUOTES, 'UTF-8') ?></span>
          <h3 class="event-title"><?= htmlspecialchars($nextEvent['title'], ENT_QUOTES, 'UTF-8') ?></h3>
          <p class="event-meta"><?= htmlspecialchars($nextEvent['time'], ENT_QUOTES, 'UTF-8') ?> • <?= htmlspecialchars($nextEvent['location'], ENT_QUOTES, 'UTF-8') ?></p>
          <?php if ($nextEvent['description'] !== ''): ?>
            <p><?= htmlspecialchars($nextEvent['description'], ENT_QUOTES, 'UTF-8') ?></p>
          <?php endif; ?>
        <?php endif; ?>
      </article>
    </section>

    <section class="container values">
      <h2>Notre esprit</h2>
      <ul>
        <li>Autogestion</li>
        <li>Solidarité</li>
        <li>Action collective</li>
        <li>Culture populaire</li>
      </ul>
    </section>
  </main>

  <footer class="site-footer">
    <div class="container">
      <p>© 2026 Chorale Anarchiste de Genève</p>
    </div>
  </footer>
</body>
</html>
