*{
  box-sizing: border-box;
}
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px;
  }
  .logo {
    max-width: 300px;
    height: auto;
  }
  .subscribe-button {
    background-color: #FF3366;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .ad-banner {
    max-width: 728px;
    height: auto;
    display: block;
    margin: 10px auto;
  }
  .ad-banner.small {
    max-width: 300px;
  }

.menu {
    display: flex;
    justify-content: center; /* Centra los botones horizontalmente */
    /*background-color: #e60d0d;*/
    color: white;
    padding: 10px;
  }

  .menu-button {
    background-color: #FF3366;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px; /* Espacio entre botones */
  }

  h1{
    text-align: center;
  }








  @media screen and (max-width: 414px) {

    .ad-banner {
      max-width: 300px;
    }
  }

  @media screen and (max-width: 412px) and (orientation: portrait) {
    .room {
      width: calc(90%);
    }

  }

  @media screen and (max-width: 768px) {
    .ad-banner.small {
    display: block;
    }
    .ad-banner {
    display: none;
    }



    }

    @media screen and (min-width: 769px) {
    .ad-banner.small {
    display: none;
    }
    .ad-banner {
    display: block;
    }
  }




         

/* css galeria start */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-item {
    margin: 10px;
    text-align: center;
    flex: 1;
    max-width: 100%; /* Asegura que las imágenes no se salgan de la pantalla */
    box-sizing: border-box;
}
.gallery-item img {
    max-width: 100%;
    height: auto;
}
.gallery-item p {
    margin: 5px 0;
}

/* Media query para laptops */
@media (min-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(25% - 20px); /* Cuatro imágenes por columna */
    }
}

/* Media query para dispositivos móviles */
@media (max-width: 767px) {
    .gallery-item {
        flex: 0 0 calc(100% - 20px); /* Una imagen por columna */
    }
}
/* css galeria end */



          /*Menu flotante start */
  /* Estilos para el icono de hamburguesa */
  .menu-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
}

.bar {
  width: 30px;
  height: 5px;
  background-color: #fff;
}

/* Estilos para el menú móvil */
.mobile-menu {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #333;
  flex-direction: row;
  z-index: 1;
}

.column {
  flex: 1;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  padding: 10px 0;
}

/* Mostrar el menú al hacer clic en el icono de hamburguesa */
.menu-toggle.active + .mobile-menu {
  display: flex;
  flex-direction: row;
}

  /*Menu flotante end */







  /* agregar aca css rooms de alan start*/



/* Container for the models */
.models-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

/* Style for each model card */
.model-card {
  width: calc(20% - 20px); /* Five cards in a row for desktop screens */
  margin: 2px;
  padding: 2px;
  box-shadow: inset 0px 0px 0px 2px rgba(0,0,0,0.1);
  /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
  border-radius: 8px;
  text-align: center;
}


@media (min-width: 1025px) {
  .model-card {
      width: calc(16.66% - 20px);  /* Six cards in a row for desktop screens */
  }
}

/* Responsive: Two cards in a row for mobile screens and tablets */
@media (max-width: 1024px) {
  .model-card {
      width: calc(50% - 20px); /* Two cards in a row for small and tablet screens */
  }
}

/* Style for the model image */
.model-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Style for the text fields in the model card */
.model-card h3,
.model-card p, 
.model-card a {
  margin: 1px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 21px;
  color: #0a5a83;
  text-decoration: none;
}

/* Limit text length for location and viewers */
.model-card p {
  max-width: 95%;
  font-size: 13px;
  text-align: left;
  margin: 0px 0 0 8px;
  color: grey;
}

/* style for the bytton "more cams..."*/
button{
display: inline-block;
margin:20px 0px 0px 0px;
padding: 8px 20px;
font-size: 18px;
font-weight: bolt;
color:#fff;
background-color: #282829;
border: none;
border-radius: 5px;
cursor:pointer;
transition: background-color 0.3sease;
}

button:hover {
  background-color: #444;
}
/* agregar aca css rooms de alan end*/


.row{
  display: flex;
  flex-wrap: wrap;
}

/* Estilo de la barra lateral */
aside {
  background-color: #666;
  color: white;
  padding: 10px;
/*  width: 20%;*/
  flex: 30px;
  float: right;
  text-align: center;
}

.chat{
  flex: 60%;
  /*background-color: #cfcfd4;*/
  padding: 20px;
}





/* pie de pagina  */
/* Estilos generales del pie de página */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  display: flex; /* Utiliza flexbox para distribuir las secciones */
  justify-content: space-around; /* Distribuye las secciones uniformemente */
  flex-wrap: wrap; /* Permite que las secciones se envuelvan en pantallas más pequeñas */
}

/* Estilos de las secciones en el pie de página */
footer section {
  flex: 1; /* Distribuye el espacio de manera uniforme entre las secciones */
  margin: 10px; /* Añade un pequeño margen entre las secciones */
}

/* Estilos de las listas de enlaces */
footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: #96fd07;
  text-decoration: none;
  font-weight: bold;

}

/* Estilos de la imagen */
footer img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

footer h3{
  color: #FF3366;
}



