/* Reset et variables CSS */
:root {
  --primary-color: #cead8a;
  /* Beige chaleureux */
  --primary-dark: #143171;
  /* Bleu profond */
  --secondary-color: #64748b;
  /* Gris bleuté neutre */
  --accent-color: #4d7c0f;
  /* Vert désaturé/olive */
  --background-light: #f8fafc;
  --background-dark: #172440;
  --text-primary: #505a6a;
  --text-secondary: #64748b;
  --white: #ffffff;
  --border-color: #e2e8f0;

  /* Hovers/états */
  --primary-hover: #b28f6d;
  --accent-hover: #3f660a;

  /* Shadow */
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --border-radius: 0.75rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  min-height: 100vh;
}

a {
  display: block;
  width: 100vw;
  height: 100vh;
  margin: auto;
}

img {
  display: block;
  max-height: 100vh;
  max-width: 100vw;
  margin: auto;
}

@media screen and (orientation: portrait) {
  a {
    height: auto;
  }

  img {
    height: auto;
  }
}