
body {
    background-color: #222;
    color: white;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    padding: 15px;
}

.navbar-title {
    color: #fff;
    font-size: 24px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.header {
    text-align: center;
    margin-top: 50px;
}

.main-title {
    font-size: 36px;
    animation: fadeIn 2s ease-in-out;
}

.sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}


.travel-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
}


.travel-card {
    background-color: #333;
    padding: 0;
    border-radius: 10px;
    width: 300px;
    flex-shrink: 0;
}

.image-container {
    height: 150px;
    overflow: hidden;
}

.half-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details {
    padding: 10px 15px;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.button-container {
    text-align: center;
}

.participate-button {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.participate-button:hover {
    background-color: #0056b3;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
