

header {
  width: 100%;
  height: auto;
  background-color: #bd22636b;
}

/* Logo dans le header */
.logo {
  position: absolute;
  top: 10px;
  left: 20px;
}
   
.logo img {
  width: 74px;
  height: auto;
}

.navbar {
  padding: 5px 10px; 
  height: 60px; 
  font-size: 0.9rem; 
}

.navbar-brand img {
  height: 40px; 
}

.navbar-nav .nav-link {
  padding: 5px 10px; 
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin-top: 5%;
}


@media (max-width: 768px) {
  .navbar-nav {
    justify-content: flex-start;
    background-color: rgb(189, 34, 99)
  }
}

.title {
  font-size: 3rem;
  color: #bd2263;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
}

.subtitle {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
}

.chat-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.chat-card:hover {
  transform: scale(1.05);
}

.chat-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.chat-info {
  padding: 15px;
  text-align: center;
}

.chat-info h3 {
  color: #bd2263;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.chat-info p {
  margin: 5px 0;
  font-size: 1em;
}


.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}


.video-background video {
  width: 100vw;  
  height: 100vh; 
  object-fit: cover; 
}



@media screen and (max-width: 768px) {
  .content {
      font-size: 1.5rem; 
      margin-top: 30%;
  }

  .video-background video {
      height: auto;
      min-height: 100vh;
  }
}


h1, p {
  text-align: center;
}

h1 {
  color: #bd2263;
  font-size: 2.5rem;
  margin-top: 20px;
}

p {
  font-size: 1.2rem;
  color: #555;
}


/* Bouton ajouter un chat */
a[href="table1_new_form.php"] {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 10px;
  background-color: #bd2263;
  color: white;
  text-align: center;
  border-radius: 25px;
  font-size: 1rem;
}

a[href="table1_new_form.php"]:hover {
  background-color: #e4007f;
  transition: background-color 0.3s;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: rgba(189, 34, 99, 0.7); 
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}


.cta-button:hover {
  transform: scale(1.05);
  background: rgba(189, 34, 99, 0.9); 
}

* Conteneur de tableau */
table {
  width: 90%;
  margin: 20px auto;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #bd2263;
  color: white;
  font-weight: bold;
}

td {
  background-color: #fff;
}

td img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  margin: 5px;
}




.footer {
  background-color: #bd22636b; 
  color: white; 
  text-align: center; 
  padding: 15px 0; 
  font-size: 16px; 
  position: fixed; 
  bottom: 0;
  width: 100%;
}
/* Styles globaux */




/* Responsive adjustments */
@media (max-width: 768px) {
  table {
    width: 100%;
  }

  td img {
    width: 80px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}
