body, html {
	height: 100%;
	margin: 0;
	font-family: "Source Sans 3", sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    clear: both;
    font-family: "Bitter", serif;
    line-height: 1.3;
	font-weight: bold;
}

a {
    color: #ca3c08;
    text-decoration: none;
}

a:hover {
    color: #ca3c08;
    text-decoration: underline;
}

.entry-title {
    font-weight: normal;
    font-size: 48px;
}

.text-rouge {
    color: #ca3c08 !important;
}

#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 1500;
}

#scrollTopBtn:hover {
    background: #333333;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header {
  background: url(/img/cropped-1311904-Balle_de_tennis_et_filet.jpg) no-repeat scroll top;
  background-size: 1600px auto;
}

@media (max-width: 767px) {
  .site-header {
    background-size: 768px auto;
  }
}

@media (max-width: 359px) {
  .site-header {
    background-size: 360px auto;
  }
}

.site-title, .site-description {
  color: #ffffff;
}

.site-description {
    font: 300 italic 24px "Source Sans 3", sans-serif;
    margin: 0;
}

.site-title {
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.navbar, .footer {
    background-color: #f7f5e7 !important;
}

.nav-link {
    color: #141412 !important;
    font-size: 15px;
    text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #ca3c08 !important;
}

.navbar-nav {
  align-items: stretch;
}

.navbar .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.25rem;
  color: #141412;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background-color: #000;
  text-decoration: none;
  color: #fff !important;
}

.bord {
	border: 1px solid #f7f5e7;
}

.grid {
  display: flex;
  margin-left: -15px; /* gutter horizontal */
  flex-wrap: wrap;
}

.grid-sizer,
.grid-item {
  width: 33.333%; /* 3 colonnes par défaut */
  padding-left: 15px;
  margin-bottom: 15px; /* gutter vertical */
}

@media (max-width: 768px) {
  .grid-sizer,
  .grid-item {
    width: 50%; /* 2 colonnes sur tablette */
  }
}

@media (max-width: 480px) {
  .grid-sizer,
  .grid-item {
    width: 100%; /* 1 colonne sur mobile */
  }
}

.grid-item img {
  display: block;
  width: 100%;
  height: auto;
}