/* Estilos generales */
header{
  background-color: #388e3c;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}
footer{
  background-color: #388e3c;
}
/* Pantalla de inicio */
h1{
  color: #f5f5f5;
}
.inicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background-image: image('Bosque.png');
}

/* Botones de acceso a los foros */
.btn1 {
  padding: 15px 30px;
  margin: 10px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn1:hover {
  background-color: #388e3c;
}

.btn2 {
  padding: 15px 40px;
  margin: 10px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn2:hover {
  background-color: #388e3c;
}

/* Contenedor centrado */
.wrapper {
  display: flex;
  justify-content: center;
}

/* Estilos del foro */
.foro1 {
  max-width: 600px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f5f5f5;
  padding: 20px;
  box-sizing: border-box;
}

h2{
  color: rgb(255, 255, 255);
}
.foro2 {
  max-width: 600px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f5f5f5;
  padding: 20px;
  box-sizing: border-box;
}

/* Comentarios */
.comentarios {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  margin-bottom: 60px; /* Deja espacio para la barra fija */
}

.comentario {
  background:rgba(255, 255, 255, 0.8);

  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.comentario:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.comentario small {
  display: block;
  margin-top: 5px;
  color: #777;
}

.comentario button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 16px;
  color: #d00;
  cursor: pointer;
}

/* Área de entrada de comentarios */
.input-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  background: #f5f5f5;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 100;
}

.input-area input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border-radius: 0 10px 10px 0;
  border: 1px solid #ccc;
  outline: none;
}

.input-area button {
  background: #2196f3;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

/* Botón volver al inicio */
.volver {
  background: #555;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.volver:hover {
  background: #333;
}

/*Imagenes de fondo*/
.inicio {
  background-image: url('../Foro Ambiental/imagenes/Bosque.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.85);
}

#foro1 {
  background-image: url('../Foro Ambiental/imagenes/PASADO.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100vh; width: 500vh;
} 

#foro2 {
  background-image: url('../Foro Ambiental/imagenes/FUTURO.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100vh; width: 500vh;
}

/*Log in Admin*/
