* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Patua One';
  margin: 0px;
  padding: 0px;
}

header {
  background: 
      linear-gradient(
          to bottom,
          rgba(0, 2, 91, 0) 0%,
          rgba(0, 2, 91, 0) 49%,
          #00025B 92%,
          #000016 100%
      ),
      url('../assets/Fondo.png');
  background-size: cover;
  background-position: center;
  height: 1024px;
  padding: 2rem;
  box-sizing: border-box;
  margin: 0px;
  color: white;
}


.header-container {

  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; 
}

#logonav img {
  height: 140px;
}

nav {
  padding-left: 150px;
  display: flex;
  gap: 2rem;
  color: white;
  font-size: 25px;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: #add8e6;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}


.social-icons img {
  height: 40px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.cta-wrapper {
  position: relative;
  display: inline-block;
}

.cta-button {
  background-color: #00264d;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: inline-block;
  font-size: 25px;
}



.domicilio {
  display: none;
  position: absolute;
  background-color: #00264d;
  padding: 10px;
  width: 225px;
}

.domicilio a {
  display: inline-flex;
  align-items: center;
  gap: 50px; 
  text-decoration: none;
  color: white; 
  font-weight: 500;
  margin-right: 15px;
  padding-left: 15px;
}

.food-icons {
  width: 30px;
  height: auto;
  object-fit: contain;
}


.cta-wrapper:hover .domicilio {
  display: block;
}


.domicilio{
  display: none;
}

.cta-button:hover {
  background-color: #00264d;
}


.hero-text {
  padding-top: 100px;
  text-align: left;
  font-family: 'Patua One';
  font-size: 110px;
  line-height: 1.1;
  position: relative;
  width: 700px;
}



#segundo{
  height: 1024px;
  background-color: #000016;
  margin: 0px;
  position: relative;
}


#historia{
  padding-top: 60px;
  z-index: 1;
  font-size: 25px;
  color: white;
}

#historia h2{
  color: #7BC3FF;
  font-size: 90px;
  text-align: left;
  width: 742px;
  float: middle;
  margin: 0 auto;
  padding-top: 100px;
}

#animatedText {
overflow: hidden;
font-weight: bold;
}

#animatedText span {
opacity: 0;
transform: translateY(20px);
animation: riseUp 0.4s forwards;
}

@keyframes riseUp {
to {
  opacity: 1;
  transform: translateY(0);
}
}

#animatedTitle {
  overflow: hidden;
  font-weight: bold;
}

#animatedTitle span {
  opacity: 0;
  transform: translateY(20px);
  animation: riseUp 0.4s forwards;
}

#textcont{
  text-align: left;
  width: 742px;
  margin: 0 auto;
}
#historia p{
  font-family: 'Pathway Extreme';
  font-size: 24px;
}

#barcosuperior {
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  z-index: 1;
}

#barcoinferior {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 500px;
  z-index: 1;
}

.collage {
  background: 
  linear-gradient(
      to bottom,
      rgba(0, 2, 91, 0) 0%,
      rgba(0, 2, 91, 0) 78%,
      #307CC6 100%
  );
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* mantenemos 4 columnas */
  grid-template-rows: repeat(4, 240px);  /* 4x256 = 1024px */
  gap: 10px;
  padding: 20px;
  width: 100%;        /* ocupamos todo el ancho */
  height: 1024px; /* respetamos altura */
  box-sizing: border-box;
}


.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.img1 { grid-column: span 2; grid-row: span 2; }
.img2 { grid-column: 3 / span 1; grid-row: 1 / span 1; }
.img3 { grid-column: 4 / span 1; grid-row: 1 / span 1; }
.img4 { grid-column: 3 / span 2; grid-row: 2 / span 1; }
.img5 { grid-column: 1 / span 1; grid-row: 3 / span 1; }
.img6 { grid-column: 2 / span 1; grid-row: 3 / span 1; }
.img7 { grid-column: 3 / span 1; grid-row: 3 / span 2; }
.img8 { grid-column: 1 / span 2; grid-row: 4 / span 1; }
.img9 { grid-column: 4 / span 1; grid-row: 3 / span 2; }

.collage img:hover {
  transform: scale(1.05);
}

#video-container{
  background-color: #307CC6;
  height: auto;
}


.footer {
  background: #000016;
  padding: 40px 20px;
  font-family: 'Patua One';
  color: white;
  font-size: 20px;
}

.footer-container {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
}

.footer .crab-img img {
  height: 150px;
  
}



.footer .section {
  margin-bottom: 20px;
}

.footer .label {
  background-color: rgba(48, 124, 198);
  color: white;
  display: inline-block;
  padding: 4px 10px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 5px;
}

.footer a {
  color: #d1d1ff;
  text-decoration: underline;
}

.footer a:hover {
  color: #ffffff;
}

.footer p {
  margin: 5px 0;
  font-weight: 500;
}

.footer .copyright {
  padding-right: 40px;
  text-align: center;
  font-size: 0.9em;
  color: white;
  font-family: 'Patua One';
}



.footer .left-column{
  flex: 1;
  min-width: 220px;
  padding-left: 30px;
}

.footer .right-column {
  flex: 1;
  min-width: 220px;
  padding-left: 60px;
}

/* ==== Sección Eventos ==== */
#eventos {
  padding: 60px 50px;
  background-color: #ffffff;
  height: auto;
}

.eventos-container {
  display: flex;
  align-items: center;
  justify-content: center;
}


.pescado-bg {
  background-image: url('../assets/pescaditos.png');
  background-size: cover;
  background-position: center;
  padding: 50px;
  border-radius: 8px;
  height: 672px;
  width: 671px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.pescado-bg h2 {
  padding-top: 120px;
  font-family: 'Patua One';
  font-size: 60px;
  color: #000000;
  margin-bottom: 20px;
}

.pescado-bg p {
  padding-top: 50px;
  font-family: 'Pathway Extreme';
  font-size: 24px;
  font-weight: bolder;
  line-height: 1.6;
  color: #000016;
}

.image-section {
  width: 45%;
}

.image-section img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.flechas-eventos {
  display: flex;
  justify-content: center;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}


.flechas-eventos #prevBtn{
  background-color: #D9D9D9;
  border: none;
  padding: 15px;
  cursor: pointer;
}

.flechas-eventos #prevBtn:hover{
  background-color: #000020;
}

.flechas-eventos #prevBtn:hover img{
  filter: invert(1);
}

.flechas-eventos #nextBtn:hover {
  background-color: #D9D9D9;

}

.flechas-eventos #nextBtn:hover img {
  filter: invert(1);

}

.flechas-eventos #nextBtn {
  background-color: #000020;
  border: none;
  padding: 15px;
  cursor: pointer;
}

.flechas-eventos button img {
  width: 50px;
  height: 50px;
}

.text-section{
  position: relative;
}
.langosta{
  margin-top: -100px;
  height: 300px;
  position: absolute;
}

@media (max-width: 1754px) {
    #barcoinferior,#barcosuperior{
        display: none;
    }
}
  

  
