a {
    color: #e2e8f0;
    text-decoration: none;
}

a:visited {
    color: #e2e8f0;
}

a:hover {
    text-decoration: none;
}

p {
    margin: 10px;
}

h1 {
    text-align: center;
}

body {
    background: linear-gradient(135deg, #1e3a5f, #4c1d95, #334155, #064e3b);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue, sans-serif;
    color: #e2e8f0;
}

footer {
    text-align: center;
}

.location-card {
    display: flex;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card-content {
    flex: 1;
}

.card-image {
    flex: 0 0 300px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#nights-badge {
    display: block;
    width: fit-content;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    margin: 5px auto;
}

#city, #accommodation {
    text-align: center;
}

#drive-time {
    font-size: 0.9em;
    color: #cbd5e1;
    margin: 10px 15px;
    font-style: italic;
}

@media (max-width: 768px) {
    .location-card {
        flex-direction: column;
    }

    .card-image {
        flex: 0 0 auto;
    }
}

