@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
/*variables couleurs racines */
:root {
  --texte-principal: #efefef;
  --texte-button: navy; 
  --content-width: 1392px;

}

/*
  styles css préalables globaux. Nous utilisons le selecteur universel *
  afin d'appliquer ces styles à absolument TOUS les éléments du document HTML
*/

/* HEADER */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(88.96deg, #051039 33.47%, #003165 99.14%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
}

.logo-group {
  display: flex;
  align-items: center;
}

.logo-group img {
  height: 80px;
  margin-right: 10px; /* Espace entre les logos */
}

/* Menu */
.navbar .menu {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar .scroll {
  display: flex;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
}

.navbar .scroll:hover {
  opacity: 0.8; /* Effet subtil */
}

.navbar .scroll p {
  margin: 0 10px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none; /* Masqué par défaut */
  flex-direction: column;
  position: absolute;
  top: 100px; /* Juste sous la navbar */
  right: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  z-index: 11;
}

/* Menu visible */
.visible {
  display: block;
}

/* Liens du menu */
.nav-links li {
  margin: 10px 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #00aaff; /* Couleur au survol */
}

/* Video container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header Content */
.header-content {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 2;
  color: white;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.header-content .bottom-right-logo {
  width: 200px;
  height: 80px;
  transition: transform 0.3s ease;
}

.header-content .bottom-right-logo:hover {
  transform: scale(1.2); /* Effet d'agrandissement progressif */
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
  .nav-links {
    top: 70px; /* Ajuste la position */
    right: 10px;
  }

  .navbar .menu {
    font-size: 1.2rem; /* Ajuste la taille pour mobiles */
  }
}


/* FOOTER */

footer {
  background: linear-gradient(88.96deg, #051039 33.47%, #003165 99.14%);
  color: white;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-section {
  display: flex;
  justify-content: space-around;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-column {
flex: 1;
padding: 0 20px;
}

.footer-column h3 {
font-size: 16px;
margin-bottom: 10px;
}

.footer-column h3:hover {
font-size: 32px;
margin-bottom: 10px;
}

.footer-column ul {
list-style: none;
padding: 0;
}

.footer-column ul li {
margin-bottom: 5px;
}

.footer-column ul li a {
color: white;
text-decoration: none;
}

.footer-column ul li a:hover {
text-decoration: underline;
}

.footer-column img:hover {
height: 100px;
width: auto;
}

.social-logos {
margin-top: 20px;
}

.social-logos .logo-footer {
font-size: 24px;
margin-right: 10px;
color: white;
}

.social-logos .logo-footer:hover {
color: #cccccc;
font-size: 40px;
}

.footer-bottom {
text-align: center;
padding: 10px 0;
}

.footer-bottom ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: 20px;
}

.footer-bottom ul li a {
color: white;
text-decoration: none;
}

.footer-bottom ul li a:hover {
text-decoration: underline;
}

.footer-bottom p {
margin-top: 10px;
color: #cccccc;
}

.btn {
  text-decoration: none;
}

.btn:focus, .btn:active {
  outline: none;
}

*, 
*::before, 
*::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
  outline: none;
}

/* GLOBAL CONFIGURATION */

ul {
    list-style: none;
}

/* COMMON CLASSES */

.flex {
    display: flex;
}


.wrap {
  flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
   justify-content: center;   /* centré les élements */
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.wrap { 
    flex-wrap: wrap;
}



/* PADDING */

.p-1 {
    padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.m-1 {
    margin: 1rem 0;
}

.m-4 {
  margin: 4rem 0;
}

.m-8 {
  margin: 8rem 0;
}

.m-20 {
  margin: 20rem 0;
}


.w-100 {
    width: 100%;
  }
  .w-50 {
    width: 50%;
  }
  .w-33 {
    width: 33.33333336%;
  }
  .w-25 {
    width: 25%;
  }
  .h-100 {
    height: 100%;
  }
  .h-100vh {
    min-height: 100vh;
  }


/*
  styles d'initialisation sur les éléments html et body
  .On annule les marges interieures et exterieures
  .on force la hauteur de ces élements à 100% et au minimum à la
  hauteur de la zone visible sur l'écran (le viewport)
  .on force un style de scroll progressif sur tous les
  navigateurs sauf ceux de microsoft qui n'implémentent pas cette commande.
*/
html {
  font-size: 100%;
}

html, body {
  height: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
}
/*
  reglage du body - styles par defaut:
  . type de police
  . taille de police
  . couleur arriere plan
  . couleur du texte
*/
body {
  font-family: Lato, sans-serif;
  background: var(--body-background);
  color: var(--texte-principal);
}
/*
  styles du conteneur principal site
  . Pas de marges
  . marge top et bottom à 0, left et right à 100px
  . Tout dépassement des limites de l'élément sera caché.
*/
#app-container {
  min-height: 100%;
  overflow-x: hidden;
}
/*
  Classe clearfix, permet de retablir l'afficache normal une fois
  hors du conteneur qui possède des enfants flottés
*/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
/*
  classe permettant d'empeche un élément d'être sélectionné
*/
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
        supported by Chrome, Edge, Opera and Firefox */
}
/*
  conteneur structurel
  etablissant la zone de contenu
*/
.container-struct {
  width: var(--content-width);
  max-width: 100%;
  border: var(--border-mockup);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*
  conteneur en ligne pleine largeur 100%
*/
.container-row {
  width: 100%;
  border: var(--border-mockup);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
/*
  conteneur colonne pleine largeur 100%
*/
.container-col {
  width: 100%;
  border: var(--border-mockup);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

