/*
Theme Name: Theme APDA
Author: Arnaud DELBERGHE
Description: thème wordpress pour le site auparadisdesanimaux
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 1024px;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(#0e3f82, #0e3f82 125px, #a4dce9 470px,  #b2d5e9 600px, #f8f8f6 900px);
}

a, a:visited {
    color: #1050c5;
    text-decoration: none;
}

h3 {
    margin-top: 35px;
}

ul li, p {
    line-height: 1.6em;
}

#content {
  width: 1280px;
  margin: 0 auto;
}

div#container {
  padding: 20px 30px;
  margin: 0 200px;
  text-justify: auto;
}

/* HEADER */
#img {
  width: 952px;
  margin: 0 auto;
}

#fond-img {
  position: absolute;
  top: 65px;
  z-index: -1;
}

header {
  height: 400px;
}

/* NAVIGATION */
header nav {
  display: flex;
  justify-content: center;
}

header ul {
  display: flex;
  flex-direction: row;
  margin: 0;
}

header ul li {
  display: inline;
  border: solid 1px #0051c5;
  padding: 10px 0;
  background: linear-gradient(180deg, #005cc2 50%, #004ca1 50%);
}

header ul li:first-child {
  border-radius: 6px 0 0 6px;
}

header ul li:last-child {
  border-radius: 0 6px 6px 0;
}

header ul li:hover {
  background: #002865;
  border-color: #002865;
}

header ul li a, header ul li a:visited {
  color: white;
  font-weight: 300;
  font-size: 0.95em;
  text-decoration: none;
  padding: 10px 15px;
}

/* FOOTER */
div#content > footer#site__footer {
  border-top: 2px solid #e4e4e4;
  margin: 20px 0 50px 50px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  font-size: 0.8em;
}

div#content > footer#site__footer nav#footer-nav ul {
  display: flex;
  flex-direction: row-reverse;
}

div#content > footer#site__footer nav#footer-nav li {
  list-style: none;
  margin: 0 10px;
  padding: 0;
}

div#content > footer#site__footer nav#footer-nav a {
  padding: 0;
  margin: 0;
}

/* Buttons */

.btn-primary a {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary a:hover{
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn a {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    text-decoration: none;
}

/* Margins */

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}