/* --- Modernisation légère du site Guy Legendre --- */

/* Police plus moderne et lisible */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fafafa;
}

/* Titres plus élégants */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  color: #222;
}

/* Barre de navigation modernisée */
.navbar-inverse {
  background-color: #1a1a1a;
  border: none;
  font-size: 16px;
}
.navbar-inverse .navbar-nav > li > a {
  color: #f5f5f5;
  transition: color 0.3s ease;
}
.navbar-inverse .navbar-nav > li > a:hover {
  color: #ffd700; /* doré artistique */
}

/* Sections */
.section {
  padding: 60px 0;
}
.section.gray {
  background: #f0f0f0;
}

/* Bouton contact plus moderne */
.btn-theme {
  background: linear-gradient(135deg, #ffd700, #e6b800);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background: linear-gradient(135deg, #e6b800, #cc9900);
  color: #fff;
}

/* Galerie : images avec ombre douce et zoom au survol */
#grid img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Pied de page */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 30px 0;
}
footer p {
  margin: 0;
  font-size: 14px;
}
