/* style.css – Thème cinéma d'auteur clair (2 colonnes galerie) */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #18120d;
  background: #faf5ee;
}

header {
  background: #fffaf3;
  color: #18120d;
  padding: 1rem 0;
  border-bottom: 1px solid #e2d3c4;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .site-title {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #18120d;
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem 0 3rem;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1.2rem;
}

.hero {
  background: radial-gradient(circle at top, #fff0d9 0, #faf5ee 60%);
  padding: 1.8rem;
  border-radius: 0.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #ebdccb;
}

.hero p {
  max-width: 40rem;
}

.featured-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border: 1px solid #e0d3c4;
}

.small-note {
  font-size: 0.85rem;
  color: #6e5a48;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  border: 1px solid #e0d3c4;
}

.card {
  background: #fffaf3;
  padding: 1.2rem 1.3rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid #ebdccb;
}

.card p {
  margin-bottom: 0.8rem;
}

.card ul {
  padding-left: 1.2rem;
}

a {
  color: #b04b3b;
}

a:hover {
  color: #d0614f;
}

footer {
  background: #fffaf3;
  color: #6e5a48;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #e2d3c4;
}

footer a {
  color: #b04b3b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mise en page plus simple sur petits écrans */
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
