/* GENENRAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Bebas Neue", sans-serif;
  background-color: #680303;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* EDAD Y COOKIES */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.show {
  opacity: 1;
  visibility: visible;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.popup h2 {
  color: #333;
}
.popup p {
  color: #666;
  margin-bottom: 20px;
}
.popup button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.popup button.accept {
  background: #4caf50;
  color: white;
}
.popup button.accept:hover {
  background: #45a049;
}
.popup button.reject {
  background: #f44336;
  color: white;
}
.popup button.reject:hover {
  background: #e53935;
}
/* CABECERA */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: #FF0000;
  height: 100px;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 10px;
  top: 0;
  z-index: 999;
}
.logo {
  height: 80px;
  width: auto;
  cursor: pointer;
 }
body h1 {
  text-align: center;
  font-size: 45px;
}
.menu {
  position: relative;
  display: flex;
  align-items: center;
}
.side {
  font-size: 60px;
  cursor: pointer;
  color: #ffffff;
  padding: 5px 20px;
}
.menu-items {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #000;
  width: 220px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgb(124, 231, 195);
  overflow: hidden;
  z-index: 1000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.menu-items.show {
  transform: scaleY(1); 
  display: block;
  opacity: 1;
  visibility: visible;
}
.menu-items a {
  font-family: "Oswald", sans-serif;
  display: flex;
  font-size: 20px;
  align-items: center;
  padding: 12px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #444;
  gap: 10px;
}
.menu-items a:hover {
  background-color: #410000;
}
.menu-items a:last-child {
  border-bottom: none;
}
.menu-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  margin-right: 15px;
}
/* CUERPO */
.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
  padding: 40px 20px;
  margin-top: 0;
  background-color: #660000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.contenedor1 {
  display: flex;
  justify-content: flex-start; 
  align-items: flex-start;  
  margin: 30px auto;  
  padding: 20px;
  background: linear-gradient(135deg, #696967 0%, #353534 100%);  
  border-radius: 16px;  
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);  
  width: 100%;  
  max-width: 1200px;  
  height: auto;  
  box-sizing: border-box;  
}
.contenedor1:hover {
  transform: translateY(-10px); 
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);  
}
.contenedor1 img {
  width: 100%;  
  max-width: 400px;  
  height: auto;  
  object-fit: cover;  
  border-radius: 12px;  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  
  flex-shrink: 0;  
}
.contenedor1 div {
  padding: 20px;
  padding-right: 30px;  
  flex: 1; 
  background-color: rgba(255, 255, 255, 0.9); 
  border-radius: 12px;  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
  max-height: 400px;  
  overflow-y: auto;  
}
.contenedor1 h1 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;  
  text-transform: uppercase;  
  letter-spacing: 1px;  
  word-wrap: break-word;  
}
.contenedor1 p {
  font-family: "Oswald"; 
  font-size: 18px;
  color: #030303; 
  text-align: justify;
  line-height: 1.6; 
  padding-top: 10px;
  word-wrap: break-word;  
}
/* MODAL ADMINISTRADOR */
.admin-modal {
  display: none;
  position: fixed;
  z-index: 2000; 
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.admin-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.modal-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.modal-buttons button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

#btnAceptar {
  background-color: #007bff;
  color: #fff;
}

#btnCancelar {
  background-color: #ccc;
}
/* PIE DE PAGINA */
footer {
  background-color: #333;
  color: #ffffff;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  margin-top: auto;
}
footer .row.primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: flex-start;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}
footer h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color:#FF0000 ;
  text-transform: uppercase;
}
footer .column {
  flex: 1;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
}
footer .column.about {
  flex: 1.5; 
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
}
footer .column.contact,
footer .column.subscribe,
footer .column.links {
  flex: 1;
  min-width: 200px;
}
footer .logo-text {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}
footer .logo-text img.logo {
  width: 80px; 
  height: auto;
  flex-shrink: 0;
}
footer .contact p {
  margin: 5px 0;
  font-size: 1rem;
}
footer .contact a {
  color: #f7c606;
  text-decoration: none;
}
footer .contact i {
  font-size: 1.5rem;
  margin-right: 5px;
  vertical-align: middle;
}
footer .social img {
  width: 40px;
  margin-right: 10px;
  cursor: pointer;
}
footer .social img:hover {
  opacity: 0.8;
}
footer .subscribe input {
  width: 80%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
footer .subscribe button {
  font-size: 1.1rem;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: #f7c606;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer .subscribe button:hover {
  background-color: #d4a505;
}
footer .column.links {
  text-align: center;
}
footer .column.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .column.links ul li {
  margin-bottom: 10px;
}
footer .column.links ul li a {
  color: #f7c606;
  text-decoration: none;
  font-size: 1rem;
}
footer .column.links ul li a:hover {
  text-decoration: underline;
}
footer .row.copyright {
  width: 100%;
  background-color: #25262e;
  padding: 15px 0;
  text-align: center;
}
footer .copyright p {
  font-size: 1rem;
  color: #e5d335;
}
/* RESPONSIVIDAD */
@media screen and (max-width: 768px) {
.header {
  flex-direction: column;
  height: auto;
  padding: 10px;
  text-align: center;
  }
.menu-items {
  position: static;
  width: 100%;
  border-radius: 0;
  max-height: none;
  overflow-y: auto;
  }
.contenedor1 {
  flex-direction: column;  
  align-items: center; 
  justify-content: center; 
  padding: 15px;  
  }
.contenedor1 img {
  width: 100%;  
  max-width: 400px;  
  }
.contenedor1 div {
  width: 100%;  
  padding: 10px;
  }
.contenedor1 h1 {
  font-size: 24px;  
  }
.contenedor1 p {
    font-size: 16px; 
  }
footer .row.primary {
  flex-direction: column;
  align-items: center;
  text-align: center;
  }
footer .column.about,
footer .column.contact,
footer .column.social,
footer .column.subscribe,
footer .column.links {
  max-width: 100%;
  margin-bottom: 20px;
  }
footer .logo-text {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  }
footer .logo-text img.logo {
  margin-bottom: 10px;
  }
}
