/*Feuille css pour page d'accueil */

@font-face {
font-family: "land";
src: url('font/land.otf');

font-family: "slim";
src: url('font/slim.ttf');

font-family: "teton";
src: url('font/teton.ttf');
font-display: swap;

font-family: "celt";
src: url('font/celt.ttf');
font-display: swap;
}


.video{
 border-radius: 20px;
max-width: 40%;
}



body {
background: black;
margin:auto; 
padding:auto; 
text-align: center;
background-repeat: repeat;
background-size: cover;
width: 100%;
}


h1{
margin-left: auto;
margin-right: auto;
color:gold;
text-align: center;
font-size: 2.1em;
font-family: celt;
top: 65px;
}

h2{

color: gold;
text-align: center;
font-size: 1.5em;
margin-left: auto;
margin-right: auto;
font-family: celt;
}


h3,h4{
font-family: celt;
color: gold;
font-size: 1.5em;
}

strong{
font-family: celt;
color: #FF7F50;
}

p{
font-family: land;
font-size: 1.4em; 
color: #65FF00;
text-align: center;
}

p a{
font-family: celt;
color: #FF7F50;
text-decoration: none;
font-size: 1.3em;
padding: 0.2rem 0.2rem;
}

p a:hover{
color: black;
background-color: #1df1ad;
border-radius: 6px;
}

.cookie-box {

  margin-left: auto;
  margin-right: auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  background: whitesmoke;
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.cookie-box--hide {
  opacity: 0;
  display:none;
 visibility:hidden;
}

.cookie-button {
  
  cursor: pointer;
  padding: 0.2rem 0.2rem;
  margin-top: 2px;
  margin-left: 0.45rem;
  color: black;
  font-size: 1em;
  letter-spacing: 1px;
  background-image: linear-gradient(62deg, #32CD32 0%, #00FF00 100%);
  border-radius: 5px;
}



.containerspitch {
margin-left: auto;
margin-right: auto;
max-width: 95%;
background-color: #110502;
border-radius: 20px;
}


.imgnew{
float: left;
}


.imgnew2{
display: inline-block;
margin-left: auto;
margin-right: auto;
}


.imgnew3{
float: right;
border-radius: 6px;

}

.image-row {
  display: flex;
  justify-content: center; /* centre le groupe */
  gap: 20px; /* espace entre les images */
  width: 100%;
  margin: 1.5em 0;
}

.image-row a {
  flex: 0 0 auto; /* taille fixe, pas de flex-grow */
  width: 240px;   /* largeur fixe égale aux autres images */
  display: block;
}

.image-row img {
  width: 240px;  /* même largeur fixe */
  height: 240px; /* même hauteur fixe */
  display: block;
  object-fit: contain; /* préserve les proportions */
}


.testimonials {
  margin: 2em 0;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  background-color: #1a0a0f;
  border-radius: 12px;
  padding: 1rem;
  max-width: 280px;
  text-align: center;
  color: #65FF00;
  font-family: land;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.testimonial-name {
  font-family: celt;
  font-weight: bold;
  color: gold;
  margin-bottom: 0.3em;
}

.testimonial-rating {
  color: #FF7F50;
  margin-bottom: 0.5em;
}

.testimonial-comment {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

.testimonial-date {
  font-size: 0.9em;
  color: #AAAAAA;
}

/* Bouton CTA pour toutes les sections */
.cta-button {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.6rem 1.2rem;
    background-image: linear-gradient(62deg, #32CD32 0%, #00FF00 100%);
    color: black;
    font-family: celt;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    color: #fff;
    background-image: linear-gradient(62deg, #FF7F50 0%, #FF4500 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}


@media (max-width: 960px) {

.cookie-box {
width: initial;
}

.image-row {
    flex-direction: row;
    gap: 2px; /* espace entre les images */
  }
  .image-row a {
    max-width: 115px;
    margin-bottom: 1em;
}
.image-row img {
  width: 115px;  /* même largeur fixe */
  height: 115px; /* même hauteur fixe */
  display: block;
  object-fit: contain; /* préserve les proportions */
}

.imgnew{
  width: 145px;
  height: 145px;
  
}

.imgnew2{
  width: 145px;
  height: 145px;
}


.imgnew3{
width: 145px;
height: 145px;
}

h1{
font-size: 1.55em;
width: 100%;
}

h2{
font-size: 1.15em;
}

h3,h4{
font-size: 1.1em;
}

p{
font-size: 1.1em;
}

.containerspitch {
margin-left: auto;
margin-right: auto;
max-width: 98%;

}

.testimonial-grid {
  flex-direction: column;
  gap: 1em;
}

.testimonial-card {
  max-width: 95%;
}


}

















