/* styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #004080;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5em;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

.search-bar {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.search-bar input[type="text"] {
    padding: 5px;
    border-radius: 4px;
    border: none;
    width: 200px;
}

.search-bar button {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #003366;
    color: white;
}

.hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero button {
    background-color: #ff6600;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.hero button:hover {
    background-color: #e65c00;
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    margin: 0 10px;
    font-size: 1.5em;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    color: #ffcc00;
}

.travel-intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.travel-images {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.travel-images img {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.results {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.recommendation-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    background-color: white;
    text-align: center;
}

.recommendation-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.recommendation-card h3 {
    margin: 10px 0;
}

.recommendation-card p {
    padding: 0 10px 15px 10px;
    font-size: 0.9em;
    color: #333;
}

.about-us-container, .contact-us-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.team-members {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 200px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member h3 {
    margin-top: 10px;
}

.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.contact-banner {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

form button {
    background-color: #004080;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #003366;
}
