body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.travelandleisureasia.com/wp-content/uploads/sites/3/2023/05/08123739/lake-como-1.jpeg');
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00; 
}


.destinations {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
}

.destination-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}


.about-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://th.bing.com/th/id/OIP.zVkAogJA72XxjGX1OuAAWwHaEK?o=7rm=3&rs=1&pid=ImgDetMain&o=7&rm=3') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.about-content {
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-content section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.about-content section:hover {
    transform: scale(1.02);
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 5%;
}

.contact-form-section, .contact-details-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-basis: 400px;
    flex-grow: 1;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #337ab7;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #286090;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    font-size: 24px;
    color: #333;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #337ab7;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        justify-content: center;
    }
    .hero-banner {
        padding: 80px 20px;
    }
    .featured-destinations, .contact-container {
        flex-direction: column;
    }
}