/*
*@colors
*/
:root{
  --atlantic-bleu:#000267;
  --atlantic-jaune:#f4df0f;
  --atlantic-light:#f1f3f8;
}

/*
  ####  ###### #    # ###### #####    ##   #
 #    # #      ##   # #      #    #  #  #  #
 #      #####  # #  # #####  #    # #    # #
 #  ### #      #  # # #      #####  ###### #
 #    # #      #   ## #      #   #  #    # #
  ####  ###### #    # ###### #    # #    # ######
*/

body{
  color:#000;
  font-family: 'Poppins', sans-serif;
}

b, strong, a{
  color:var(--atlantic-bleu);
}

a.nostyle{
  color:inherit;
  text-decoration:none;
  font-weight: normal;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6, .btn{
  font-family: 'Oswald', sans-serif;
  font-weight:700;
  color:var(--atlantic-bleu);
}

h1, .h1{
  text-transform: uppercase;
}

.btn-al{
  background-color: var(--atlantic-jaune);
  border:1px solid var(--atlantic-jaune);
  color:var(--atlantic-bleu);
  font-weight:700;
  font-family: 'Oswald', sans-serif;
  padding:8px 35px;
  margin-bottom:10px;
  font-size:1.2rem;
}
.btn-al:hover{
  background-color: #fff;
  border-color: var(--atlantic-jaune);
  color:var(--atlantic-bleu);
}

.oswald{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

/*
 #    # ###### #    # #    #
 ##  ## #      ##   # #    #
 # ## # #####  # #  # #    #
 #    # #      #  # # #    #
 #    # #      #   ## #    #
 #    # ###### #    #  ####
*/
.navbar{
  background-color: var(--atlantic-jaune);
  /* z-index 3 to be above bootstrap form floating labels */
  z-index:3;
}

.nav-link{
  color:var(--atlantic-bleu);
  font-weight:700;
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
}

/*
  ####   ####  #    # ##### ###### #    # #    #
 #    # #    # ##   #   #   #      ##   # #    #
 #      #    # # #  #   #   #####  # #  # #    #
 #      #    # #  # #   #   #      #  # # #    #
 #    # #    # #   ##   #   #      #   ## #    #
  ####   ####  #    #   #   ###### #    #  ####
*/

.hero{
  background-image:url('../images/atlanticloisirs-hero.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 200px;
}
.hero .hero-text{
  color: var(--atlantic-bleu);
  background-color: #fff;
  text-transform: uppercase;
  padding:0 15px;
}

.floating-box{
  background-color: var(--atlantic-light);
  padding:50px;
  display:flex;
  flex-direction: column;
  gap:25px;
}

.bg-bleu{
  background-color: var(--atlantic-bleu);
  color:#fff;
}
.bg-bleu h4{
  color:#fff;
}
.bg-bleu .h1,
.bg-bleu h1,
.bg-bleu .h2,
.bg-bleu h2,
.bg-bleu .h3,
.bg-bleu h3{
  color:#fff;
}
.accueil .bg-bleu .h2,
.accueil .bg-bleu .h2 a{
  color:var(--atlantic-jaune);
  text-transform: uppercase;
  text-decoration: none;
}

.bg-bleu .h2:after{
  content:"";
  bottom:-15px;
  background-image:url('../images/titre-after.png');
  background-repeat: no-repeat;
  width:119px;
  height:11px;
  left:calc(50% - 119px/2);
  display: block;
  position: relative;
}

.product-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: end;
  color:#fff;
}
.product-card .h2,
.product-card .h1,
.product-card a{
  color:#fff;
  text-decoration: none;
}
.product-bateau{
  background-image: url('../images/produits-equipement-bateau.jpg');
}
.product-marin{
  background-image: url('../images/produits-equipement-marin.jpg');
}
.product-catalogue{
  background-image: url('../images/produits-catalogue.jpg');
}

/* Filtre bleu semi-transparent */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 100, 0.6) 20%, rgba(0, 0, 100, 0) 60%);
  z-index: 1;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 100, 0.8) 40%, rgba(0, 0, 100, 0) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.bg-gris{
	background-color:#dedede;
}
.marque .white{
	background-color:#fff;
	height:140px;
	padding:20px;
	display:flex;
	flex-direction:column;
}
.marque .white img{
	max-height:100px;
	margin:auto;
}

/*
 ######  ####   ####  ##### ###### #####
 #      #    # #    #   #   #      #    #
 #####  #    # #    #   #   #####  #    #
 #      #    # #    #   #   #      #####
 #      #    # #    #   #   #      #   #
 #       ####   ####    #   ###### #    #
*/

footer{
  background-color:var(--atlantic-jaune);
  color: #000;
}
footer a{
  text-decoration:none;
  font-weight: bold;
}
footer .btn{
  background-color: #fff;
  color:var(--atlantic-bleu);
}
footer .btn:hover{
  background-color: var(--atlantic-bleu);
  color:#fff;
}
footer .oswald{
  font-size:1.2rem;
}
/*
 #####  ######  ####  #####   ####  #    #  ####  # #    # ######
 #    # #      #      #    # #    # ##   # #      # #    # #
 #    # #####   ####  #    # #    # # #  #  ####  # #    # #####
 #####  #           # #####  #    # #  # #      # # #    # #
 #   #  #      #    # #      #    # #   ## #    # #  #  #  #
 #    # ######  ####  #       ####  #    #  ####  #   ##   ######
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero{
    min-height: 500px;
    padding-bottom:100px;
  }
  .hero .hero-text{
    color:var(--atlantic-bleu);
    background-color: #fff;
    text-transform: uppercase;
    display: inline;
    line-height:5rem;
  }
  .floating-box{
    margin-top:-100px;
    margin-bottom:-100px;
  }
  .accueil .bg-bleu{
    padding-top:100px;
  }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}
