/* Basic resets */
.banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura completa de la ventana */
    overflow: hidden;
    margin-top: 60px; /* Ajusta según la altura de tu menú */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
    padding: 20px;
    border-radius: 10px; /* Bordes redondeados */
    display: inline-block;
}

.banner-content h1 {
    font-size: 3rem;
    font-family: 'SangBleu Kingdom', serif;
    color: #fff; /* Color blanco para el texto */
}

.banner-content p {
    font-size: 1.2rem;
    color: #fff; /* Color blanco para el texto */
}

.banner-content .btn-find-your-trip {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f28a21;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem; /* Ajuste de tamaño responsivo */
    transition: background-color 0.3s, color 0.3s;
}

.banner-content .btn-find-your-trip:hover {
    background-color: #0b3868; /* Color al pasar el cursor */
}

