body {
    font-family: 'Poppins', sans-serif;
    background-color: lightblue;
    background-image: url('../Images/fondo_destinos2.jpg');
    margin: 0;
    padding: 0;
    width: 100%;
}

h1, h2, h4, p {
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

h4 {
    margin-bottom: 40px;
}

.destino {
    position: relative;
    width: 100%; 
    height: 500px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.destino .card-body {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.card-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-text, .card ul {
    font-size: 18px;
    margin-bottom: 10px;
}

.card ul {
    padding-left: 0;
}

.card p {
    font-size: 20px;
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px 25px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .destino {
        height: 400px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-text {
        font-size: 16px;
    }

    .btn-primary {
        padding: 10px 20px;
    }
}