body {
    font-family: 'Arial', sans-serif;
}
.hero {
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.hero div {
    background-color: rgba(25, 25, 25, 0.75);
}
.section-title {
    margin-bottom: 2rem;
    text-align: center;
    color: #4CAF50; /* Green color for titles */
    font-weight: bold;
}
.footer {
    text-align: center;
    padding: 20px 0;
}
.logo {
    width: 60px;
    height: 60px;
    animation: rotate 5s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.badge-popular {
    background-color: #ff6347; /* Tomato color for popular destinations */
    color: white;
}
.badge-adventure {
    background-color: #ffd700; /* Gold color for adventure destinations */
    color: black;
}
.card {
    transition: transform 0.3s;
    background-color: rgba(225, 225, 225, 0.8);
}
.card:hover {
    transform: scale(1.05);
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact {
    background-image: url("assets/plane.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.download-section {
    background-image: url(assets/guide.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30vh 0px;
    text-align: center;
}