/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: rgb(19, 19, 19);
    color: #fff;
}

/* Botón para abrir el menú */
.menu-btn {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    color: #FFD700;
    z-index: 1000;
}

/* Menú desplegable desde el costado */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-menu a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #FFD700;
}

.side-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: #FFD700;
}

/* Sección Hero (Inicio) */
.hero {
    background-image: url(photo-1474302770737-173ee21bab63.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    height: 600px;
}

.hero h1 {
    color: #ac9200;
    font-size: 48px;
    margin: 0;
    
}

.hero p {
    color: #fff;
    font-size: 24px;
}

/* Sección Flota, Reseñas, Servicios, Contacto */
section {
    padding: 50px 20px;
    text-align: center;
}

.about h2, .fleet h2, .reviews h2, .services h2, .contact h2 {
    color: #FFD700;
    font-size: 28px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

section p {
    color: #fff;
    font-size: 18px;
}

.fleet .jet-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fleet .jet-list img {
    width: 500px;
    border-radius: 10px;
}

/* Estilos para la sección de reseñas */
.reviews {
    text-align: center;
    padding: 40px 20px;
    background-color: rgb(19, 19, 19);
}

.reviews h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.review-card {
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto 20px auto; /* Centra los cuadros */
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.review-content {
    text-align: left;
}

.review-content p {
    font-style: italic;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.review-content span {
    display: block;
    font-size: 14px;
    color: rgb(0, 0, 0);
}

.reviews .review-content p {
    color: #FFD700;
}


/* Formulario de Reserva */
/* Formulario de Reserva */
.reservation {
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; /* Asegura que el contenedor use flexbox */
    justify-content: center; /* Centra el contenido horizontalmente */
    align-items: center; /* Centra el contenido verticalmente */
    text-align: center;
}

.reservation-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    color: #000;
    width: 300px;
    display: flex;
    flex-direction: column; /* Asegura que los elementos dentro del formulario estén alineados en columna */
    align-items: center; /* Centra los elementos en el eje horizontal */
}

.reservation-form h2 {
    margin-top: 0;
}

.reservation-form label {
    align-self: flex-start; /* Alinea las etiquetas a la izquierda */
    margin-bottom: 5px; /* Agrega espacio entre el label y el input */
}

.reservation-form input, .reservation-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del input */
}

.reservation-form button {
    background-color: #FFD700;
    border: none;
    cursor: pointer;
    font-size: 18px;
}


/* Contenedor de la imagen y el overlay */
.fleet .image-container {
    position: relative;
    display: inline-block;
    width: 500px; /* Ajusta el tamaño de la imagen */
    margin: 10px;
  }
  
  .fleet .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .fleet .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semi-transparente */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Oculto por defecto */
    transition: opacity 0.5s ease; /* Transición suave */
  }
  
  .fleet .image-container:hover .overlay {
    opacity: 1; /* Aparece de forma suave al pasar el cursor */
  }
  
  .fleet .overlay .text {
    font-size: 16px;
    text-align: center;
    padding: 10px;
  }
  
  .Over1 {
    font-size: 25px;
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
  }

  /* Estilos generales */
.about-section {
    background-color: rgb(19, 19, 19);
    padding: 40px;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Estilos iniciales de animación */
.history-section, .community-section {
    opacity: 0;
    transform: translateX(-100px); /* Inicia fuera del viewport */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Estilos para las imágenes */
.about-image {
    width: 500px; /* Ajusta el tamaño según prefieras */
    height: auto;
    margin: 10px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;

    /* Bordes redondeados y sombra */
    border-radius: 7%; /* Hace la imagen redonda */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 1); /* Sombra suave alrededor */
}


/* Cuando los elementos están visibles en el viewport */
.about-section.show .history-section,
.about-section.show .community-section,
.about-section.show .about-image {
    opacity: 1;
    transform: translateX(0); /* Se centra en la pantalla */
}

/*Esto es el codigo para las reseñas*/

/* Estilos para la sección de reseñas */
.reviews {
    text-align: center;
    padding: 60px 20px;
    background-color: rgb(19, 19, 19);
    color: #fff;
}

.reviews h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: start;
}

.review-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    color: white;
    background-image: url('Atardecer\ 1.jpg'); /* Reemplaza con la URL de tu imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Fija la imagen de fondo */
    background-blend-mode: multiply; /* Combina con el color de fondo */
    background-color: rgba(0, 0, 0, 0.7); /* Oscurece la imagen */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.review-card.hidden {
    opacity: 0;
    transform: translateY(30px);
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.review-content {
    text-align: center;
}

.review-content p {
    font-style: italic;
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-content span {
    display: block;
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 10px;
}

.client-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Estilos para la sección de servicios */
/* Overlay oculto inicialmente */
/* Contenedor principal de servicios */
.services {
    padding: 20px;
    text-align: center;
    background-color: #131313;
    color: #fff;
}

/* Disposición de las tarjetas */
.services-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

/* Estilo de la tarjeta */
.service-card {
    position: relative;
    width: 400px;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Contenido de texto de la tarjeta */
.card-content {
    padding: 20px;
}

/* Título y descripción */
.card-content h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin: 10px 0;
}

.card-content p {
    color: #aaa;
    font-size: 1em;
}

/* Imagen de la tarjeta que aparecerá en la parte superior */
.card-image {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: top 0.4s ease-in-out;
}

/* Efecto de desplazamiento de la imagen */

    /* Estilos para centrar el contenedor */
    .flight-tracker-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 25vh; /* Ocupa toda la pantalla para centrar verticalmente */
    }


.flight-tracker {
    background: linear-gradient(135deg, #cf6f00, #b39800);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 320px;
    text-align: center;
}

.flight-tracker h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.flight-tracker i {
    font-size: 48px;
    color: #ffdd57;
    margin-bottom: 15px;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

button {
    padding: 12px 20px;
    font-size: 18px;
    background-color: #ffdd57;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #ffd21c;
}

 /*bolsa*/

 .ticker {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.2em;
    padding: 10px;
}
.ticker span {
    display: inline-block;
    padding: 0 20px;
    animation: scroll 10s linear infinite;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}