<?php
/* =========================================================
   Fichier : index.php
   Version : V1.0 - 2025-11-08
   Projet  : ia.leterrain.info
   Auteur  : Mustapha
   ========================================================= */
?>
<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>IA Le Terrain - Accueil</title>
  <style>
    body { font-family: Arial, sans-serif; background-color: #f4f4f4; color: #002f3f; text-align: center; padding-top: 10%; }
    h1 { color: #99cf16; }
    .info { margin-top: 20px; background: white; border-radius: 12px; padding: 30px; display: inline-block; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
  </style>
</head>
<body>
  <div class="info">
    <h1>Bienvenue sur le serveur IA Le Terrain</h1>
    <p>Votre environnement IIS + PHP + SSL est opérationnel ✅</p>
    <p>Adresse : <strong><?php echo $_SERVER['SERVER_NAME']; ?></strong></p>
    <p>Version PHP : <strong><?php echo phpversion(); ?></strong></p>
  </div>
</body>
</html>
