html, body {
    /*overflow-x: hidden; */
    width: 100%;
    margin: 0;
    background-color: rgba(255,255, 240,1);
    overflow-x: hidden;
}
}

.main-content {
    flex: 1; /* Esto empuja el footer hacia abajo */
}

.hero {
    background-image: url('../assets/Xoriguers_Aeroport_guy1.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    height: 120vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    width: 100%;
}

.HeaderMessage {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Lora';
    color: rgba(107,92,88,1);
    text-align: center;
    position: absolute;
    top: 15%; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 10px;
    z-index: 2;
    max-width: 1000px;
}
.hero-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120%;
}
.Navbar {
    background-color:rgba(107,92,88,1);
    display: flex;
    align-items: center;  
    padding: 16px;
    color: white;
    position: absolute; 
    top: 0;
    right: 0;
    left: 0;
    z-index: 10; 
    transition: background-color 0.3s ease; 
}
/* Home link with the bird logo */
.Navbar__Brand {
    display: flex;
    align-items: center;
    padding-left: 120px;

}
.Navbar__Logo {
    width: 120px; 
    height: auto;
    margin-right: 10px;
}
.Navbar__Link-brand {
    font-size: 30px;
    font-family: "Lora";
    color:white;
    text-decoration: none; 
    white-space: nowrap;
    cursor: pointer;

}

.Navbar__Items {
    display: flex;
}

.Navbar__LinkWrapper {
    padding-right: 10px; 
    padding-left: 10px;   
}
.Navbar__Link {
    font-size: 17px;
    font-family: "Lora";
    color: white;  
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease, transform 0.3s ease;
}
.Navbar__Link2 {
    font-size: 17px;
    font-family: "Lora";
    color: white;  
    cursor: pointer;
    text-decoration: none;  /* Eliminamos el subrayado original */
    position: relative;
    transition: color 0.4s ease, transform 0.3s ease; 
    border-bottom: 3px solid white;  /* Subrayado más grueso */
}
.Navbar__LinkWrapper:last-child {
    padding-right: 120px; 
}

.Navbar__Link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: white;
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

.Navbar__Link:hover::after {
    width: 100%;
}

.Navbar__Link.active {
    color: white;  
}

.Navbar__Link.active::after {
    width: 100%;
    height: 2px; /* Asegura que la línea es visible */
    background-color: white;
    bottom: -2px; /* Ajusta la posición si es necesario */
    left: 0;
    position: absolute;
    content: '';
}


.Navbar__Link:hover {
    color: white;
    transform: scale(1.05);
}

.Navbar__Items--right {
    margin-left: auto;
}

.Navbar__Link-toggle {
    display: none;
    cursor: pointer;
    text-decoration: none;
}

/* Binoculars Logo */
.ScrollLogo {
    position: absolute;
    bottom: 60%; 
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    width: 300px; 
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ScrollLogo img {
    position: absolute;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
    padding: 0;
    margin: 0;
    display: block; 
}
.ScrollLogo__Img {
    opacity: 1; 
}
.ScrollLogo__ImgHover {
    opacity: 0; 
}
.ScrollLogo:hover .ScrollLogo__Img {
    opacity: 0;
}
.ScrollLogo:hover .ScrollLogo__ImgHover {
    opacity: 1;
}


/* ----- Pantallas pequeñas ----- */
@media only screen and (max-width: 900px) {
    .Navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }
    .HeaderMessage {
        font-size: 25px; 
        position: absolute;
        top: 20%; 
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 10px;
        z-index: 1; 
        color: rgba(107,92,88,1);
    }

    .Navbar__Brand {
        display: flex;
        align-items: center;
        padding-left: 0;
    }
    .Navbar__Items--right .Navbar__LinkWrapper:last-child {
        padding-right: 0px; 
    }
    .Navbar__Items {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color:rgba(107,92,88,1);
        padding: 16px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        justify-content: center; 
        align-items: center; 
    }
    .Navbar__Link {
        font-size: 20px;
        cursor: pointer;
        transition: color 0.4s ease, transform 0.3s ease;
    }
    .Navbar__Items.Navbar__ToggleShow {
        display: flex;
        opacity: 1;
        text-decoration: none;
        }

    .Navbar__Link-toggle {
        display: initial;
        font-size: 30px;
        margin-right: 20px;
        text-decoration: none;
    }
    
    .HeaderMessage {
        top: 20%; 
    
    }
    .ScrollLogo {
        width: 200px; 
        bottom: 60%; 
    }
    .ScrollLogo img {
        width: 100%;
    }
    .about-section .col-lg-6.text-center {
        text-align: left; /* Alineación del texto a la izquierda en pantallas pequeñas */
    }
    .col-md-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
      .row {
        flex-direction: column;
      }
    
      .row .col-md-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    
      .about-text {
        max-width: 100%;
        text-align: justify;
      }
    
      .img-container {
        margin-bottom: 15px;
      }
}


h1 {
    font-weight: 700; /* Negrita si lo deseas */
    font-family: 'Lora', sans-serif;
    text-align: center;
    color: #6B5C58;
}


h2 {
    text-align: center;
    font-weight: 400; /* Negrita si lo deseas */
    font-family: 'Lora', sans-serif;
    color: #6B5C58;
}

/*-------------About section------------*/
.about-section {
    background-color: #FFFFF0; /* Fondo crema */
}
.container-fluid {
    width: 100%;
    margin-top: 50px; 
    margin-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
}

.about-title {
    font-size: 2rem;
    font-weight: bold;
    font-family: "Lora";

}

.about-text {
    font-size: 1.2rem;
    color: #333;
    font-family: "Lora";
    text-align: justify;
    
}

.img-fluid {
    max-width: 100%;
    height: auto;
    box-shadow: none;
}

.btn-primary{
    background-color: #6B5C58;
    border-color: #4b4746 !important; 
}
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #4b4746  !important; /* Un tono más oscuro para efecto hover */
    border-color: #4b4746  !important;
    color: white !important;
}
/* Guide section */
/* ----- SLIDER ----- */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
  }
  
.arrow {
    background-color: #9b9b7d;
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: #7b7b5a;
}
  
  .image-display {
    margin: 0 20px;
    text-align: center;
  }
  
  .image-display img {
    max-width: 400px; /* Establecer el tamaño de la imagen */
    height: auto;
  }
  


/* ----- SECCIONES ----- */
.section {
    display: none;
    margin-top: 20px;
}

.row_photo {
    margin-top: 15px;
    margin-bottom: 15px;
}
.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-family: "Lora";
    font-weight: bold;
    margin-bottom: 20px;
}

.section-content {
    display: grid;
    grid-template-columns: auto auto; 
    gap: 20px;
}
.section img {
    width: 100%;
    max-width: 100%; 
    border-radius: 10px;
}

.text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
 
  }
  
  .img-fluid {
    transition: transform 0.5s ease; 
    width: 100%; 
    height: auto;
    border-radius: 10px;
  }
    .img-container:hover .img-fluid {
    transform: scale(1.4) translate(-10%, -10%); 
    border-radius: 10px;

  }
/* all image hovers*/
/* fredaluga*/
  .img-container.img1:hover .img-fluid {
    transform: scale(1.45) translate(-15%, 0%); 
  }
  /* cigonyes*/
  .img-container.img2:hover .img-fluid {
    transform: scale(2.5) translate(-10%, -2%);
  }
  /* cotxa fumada*/
  .img-container.img3:hover .img-fluid {
    transform: scale(1.4) translate(10%, 0%); 
  }
  /* espkugabous */
  .img-container.img4:hover .img-fluid {
    transform: scale(1.2) translate(2%, -2%);
  }
   /* mila negre */
  .img-container.img5:hover .img-fluid {
    transform: scale(1.6) translate(0%, 0%); 
  }
   /* mila reial */
  .img-container.img6:hover .img-fluid {
    transform: scale(1.3) translate(-5%, 2%);
  }
   /* mosquiter */
  .img-container.img7:hover .img-fluid {
    transform: scale(1.3) translate(-8%, 0%); 
  }
   /* mussol */
  .img-container.img8:hover .img-fluid {
    transform: scale(1.3) translate(8%, 0%);
  }
   /* pinsa */
  .img-container.img9:hover .img-fluid {
    transform: scale(2.2) translate(0%, 0%); 
  }
   /* cruixidell */
  .img-container.img10:hover .img-fluid {
    transform: scale(1.4) translate(-10%, 10%);
  }
    /* aufrany */
  .img-container.img11:hover .img-fluid {
    transform: scale(1.8) translate(5%, 0%);
  }
    /* repicatalons */
  .img-container.img12:hover .img-fluid {
    transform: scale(2.5) translate(-5%, -4%);
  }
    /* abellarol */
  .img-container.img13:hover .img-fluid {
    transform: scale(1.8) translate(-5%, 5%);
  }
    /* aguila pescadora */
  .img-container.img14:hover .img-fluid {
    transform: scale(1.5) translate(15%, 0%);
  }
    /* aligot */
  .img-container.img15:hover .img-fluid {
    transform: scale(1.7) translate(-2%, 5%);
  }
    /* alosa */
  .img-container.img16:hover .img-fluid {
    transform: scale(1.8) translate(15%, 0%);
  }
    /* arpella */
  .img-container.img17:hover .img-fluid {
    transform: scale(1.8) translate(10%, 0%);
  }
    /* astor */
  .img-container.img18:hover .img-fluid {
    transform: scale(1.6) translate(0%, 0%);
  }
    /* bitxac */
  .img-container.img19:hover .img-fluid {
    transform: scale(3) translate(0%, 2%);
  }
    /* boxi */
  .img-container.img20:hover .img-fluid {
    transform: scale(1.6) translate(10%, 15%);
  }
     /* cogullada */
  .img-container.img21:hover .img-fluid {
    transform: scale(1.6) translate(0%, 10%);
  }
     /* merla */
  .img-container.img22:hover .img-fluid {
    transform: scale(1.4) translate(12%, 0%);
  }
     /* papamosques */
  .img-container.img23:hover .img-fluid {
    transform: scale(1.7) translate(-5%, 0%);
  }
     /* calçada */
  .img-container.img24:hover .img-fluid {
    transform: scale(1.45) translate(0%, 2%);
  }
      /* orenetes */
      .img-container.img25:hover .img-fluid {
        transform: scale(1) translate(0%, 0%);
      }

/* CLUSTAL-O */
/* Form-specific styles without overriding base container and button styles */
.hidden {
  display: none;
}
.alignment-container {
  font-family: "Courier New", monospace; /* Fuente monoespaciada */
  font-size: 14px;
  font-weight: bold; 
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  padding: 15px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: auto;
}

.clustal-title {
  font-size: 2.2rem;
  font-weight:bold;
  font-family: "Lora";

}
