/*!
Theme Name: bookmarket
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bookmarket
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bookmarket is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/* --- RESET --- 
---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter 18pt', sans-serif;
  background: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}

a:before,
a:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}

ul { list-style: none; }


/* --- VARIABLES --- 
-------------------- */
:root {
/* Color */
  --color-bleufonce: #1E2A38;
  --color-bleu:		 #2563EB;
  --color-orange:    #F97316;
  --color-beige:     #f5f1e8;
  --color-gris:      #f3f4f6;
  --color-text:      #111827;
  --color-white:	 #fff;

  --color-btn-hover: #0d3fa2;

  /* Borders */
  --radius-sm:    4px;
  --radius-md:    8px;
}


* --- TYPOGRAPHY ---
--------------------- */
h1 {
	font-family: 'Playfair Display', sans-serif;
	font-size: 48px;
	line-height: 56px;
	font-weight: bold;
}

h2 {
	font-family: 'Playfair Display', sans-serif;
	font-size: 36px;
	line-height: 44px;
	font-weight: 600;
}

h3 {
	font-family: 'Playfair Display', sans-serif;
	font-size: 28px;
	line-height: 36px;
	font-weight: 500;
}

p {
	font-family: 'Inter 18pt', sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
}


/* --- CONTAINER --- 
------------------ */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ////
slide 
//// */
.wrap_slide {
  max-width: 1920px;
  margin: 0 auto;
}



/* --- BUTTONS --- 
------------------ */
.btn {
  display: inline-block;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap; /* texte sur une seule ligne */
}

.btn--primary {
  border: 2px solid var(--color-bleu);
  background: var(--color-bleu);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-btn-hover);
  color: var(--color-white);
  border: 2px solid var(--color-bleu);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-bleu);
  border: 2px solid var(--color-bleu);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-btn-hover);
  border: 2px solid var(--color-btn-hover);
}

