/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #000000;
}

/* Navigation */
/* Asegúrate de que el contenedor de la navegación ocupe todo el ancho */
.nav {
  width: 100%;
  display: flex;
  justify-content: center; /* Centra horizontalmente el contenido */
  position: fixed; /* Asegúrate de que el menú esté fijo en la parte superior */
  top: 0;
  left: 0;
  background: #000000; /* Opcional: Fondo blanco para que el menú sea más visible */
  padding: 10px 0; /* Ajusta el padding según tus necesidades */
  z-index: 1000; /* Asegúrate de que el menú esté por encima de otros elementos */
}

.menu {
  display: flex;
  gap: 15px; /* Espacio entre los elementos del menú */
}

.menu a {
  text-decoration: none;
  color: #000; /* Color del texto del menú */
  font-weight: bold; /* Opcional: Para hacer el texto más visible */
}

.menu a:hover {
  color: #f39c12; /* Color al pasar el mouse por encima del enlace */
}

/* Ajusta el estilo del logo si es necesario */
.logo {
  /* Añade tus estilos personalizados aquí */
}


.menu h5 {
  margin: 0 30px;
  text-transform: uppercase;
  float: left;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 2px;
  position: relative;
  z-index: 999;
  color: #FEFFFF;
}

.logo-img {
  width: 80px;
  height: auto;
}

label {
  margin: 0 20px 0 0;
  font-size: 26px;
  line-height: 70px;
  display: none;
  width: 26px;
  float: right;
  color: #354757;
}

#toggle {
  display: none;
}

#toggle:checked + .menu {
  display: block;
}

/* Photo Section */
.photo {
  width: 100%;
  height: auto;
  position: relative;
  background: url('./img/LOGOO.png') center;
  background-size: cover;
  overflow: hidden;
}

.photo-text {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 200vh;
  top: 0;
  left: 0;
  background: rgba(60, 63, 114, 0);
}

.photo h4 {
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #e7a7ff;
  margin: 10px;
  cursor: pointer;
  position: relative;
  z-index: 998;
}

.photo p {
  width: 60%;
  text-align: center;
  letter-spacing: 1.5px;
  color: #D7DADE;
  position: relative;
  z-index: 998;
}

/* Content Section */
.content {
  width: 100%;
  min-height: 800px;
  position: relative;
  z-index: 1;
}

.content:before {
  content: '';
  width: 50%;
  height: 110px;
  position: absolute;
  top: -48px;
  left: 0;
  background: linear-gradient(180deg, #5c5c5c,#333333,#000000,#000000,#000000);
  transform: skewY(5.5deg);
}

.content:after {
  content: '';
  width: 50%;
  height: 110px;
  position: absolute;
  top: -48px;
  right: 0;
  background: linear-gradient(180deg, #5c5c5c,#333333,#000000,#000000,#000000);
  transform: skewY(-5.5deg);
}

.grand-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
  width: 60%;
  min-height: 100px;
  padding: 0;
  margin: 0 auto;
}

.grand-title h4 {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1.2px;
  margin: 30px;
  color: #de49ff;
}

.grand-title h4:after {
  content: '';
  display: block;
  width: 5%;
  height: 3px;
  margin: 25px auto;
  border: 0;
  background: #E58859;
}

.text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -10px;
  position: relative;
  z-index: 999;
}

.inner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  margin: 10px;
  transition: all 450ms ease;
}

.inner-text:hover {
  cursor: pointer;
  box-shadow: -1px 6.5px 15px rgb(151, 255, 117);
}

.text-box {
  text-align: center;
}

.text-box h5 {
  color: #b458ff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.text-box p {
  color: #ffffff;
}



/*Portafolio*/


/*FOOTER*/
.footer {
  position:static;
  top:-15REM;
  padding: 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #ffe1ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #000000, 0 0 30px #adff7a;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.flex-outer {
  list-style-type: none;
  padding: 0;
}

.flex-outer li {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.rect {
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  background-color: #222;
  color: #ff00ff;
}

.rect:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.center {
  text-align: center;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ff00ff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #fffdff;
}

.contact-info {
  margin-top: 20px;
}

.contact-info h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f889f8b6;
}

.social-media {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-media li {
  display: inline-block;
}

.social-media a {
  color: #e7e7e7;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.social-media a i {
  margin-right: 5px;
}

.social-media a:hover {
  color: #ff66ff;
}
.containerr {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  background-color: #0000005f;
  border-radius: 0.5em;
  top: -5rem;
  
}

header > h1 {
  margin-top: 0;
  font-family: 'Catamaran', sans-serif;
  font-size: 2.5rem;
  border-bottom: 1px solid #eee;
}

.gallery {
  display: grid;
  margin: 3em 0;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-template-rows: 1fr;
  grid-gap: 1em;
  grid-auto-flow: dense;
}

figure {
  display: flex;
  margin: 0;
}

img {
  flex: 1;
  max-width: 100%;
  object-fit: cover;
}
