/*
Theme Name:  RV Petitbon 2
Theme URI:
Author:
Author URI:
Description: Thème de photographie haut de gamme — RV Petitbon.
Version:     1.0
License:     GNU General Public License v2 or later
Text Domain: rv-petitbon
*/

/* ===========================
   Variables globales
=========================== */
:root {
  --color-bg: #F9F7EE;
  --color-black:  #1C1C1C;
  --color-muted:  #7A7470;
  --color-border: #DDD6C9;
  --font-primary: 'Jost', sans-serif;
  --header-height: 64px;
  --max-width:    1340px;
  --gutter:       60px;
}

/* ===========================
   Reset & base
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-black);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;

}

a {
  color: var(--color-black);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: inherit;
  color: var(--color-black);
}

/* ===========================
   Container global
=========================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ===========================
   Utilitaires
=========================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .container {
    padding-inline: 30px;
  }
}