<?php

declare(strict_types=1);

require_once __DIR__ . '/includes/events.php';

$events = readEventsFromTextFile(__DIR__ . '/data/events.txt');
$upcomingEvents = getUpcomingEvents($events);
?>
<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Agenda • 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">Accueil</a>
        <a href="ressources.php">Ressources</a>
        <a href="agenda.php" class="active">Agenda</a>
      </nav>
    </div>
  </header>

  <main class="container agenda-page">
    <h2>Agenda</h2>
    <p>Nos prochains rendez-vous, répétitions et actions publiques.</p>

    <div class="agenda-list">
      <?php if (count($upcomingEvents) === 0): ?>
        <p>Aucun événement à venir pour le moment.</p>
      <?php else: ?>
        <?php foreach ($upcomingEvents as $event): ?>
          <article class="agenda-item">
            <span class="event-date"><?= htmlspecialchars(formatEventDateFr($event['date']), ENT_QUOTES, 'UTF-8') ?></span>
            <h3 class="event-title"><?= htmlspecialchars($event['title'], ENT_QUOTES, 'UTF-8') ?></h3>
            <p class="event-meta"><?= htmlspecialchars($event['time'], ENT_QUOTES, 'UTF-8') ?> • <?= htmlspecialchars($event['location'], ENT_QUOTES, 'UTF-8') ?></p>
            <?php if ($event['description'] !== ''): ?>
              <p><?= htmlspecialchars($event['description'], ENT_QUOTES, 'UTF-8') ?></p>
            <?php endif; ?>
          </article>
        <?php endforeach; ?>
      <?php endif; ?>
    </div>
  </main>

  <footer class="site-footer">
    <div class="container">
      <p>© 2026 Chorale Anarchiste de Genève</p>
    </div>
  </footer>
</body>
</html>
