/*
Theme Name: Travel Theme
Author: Syed Omer Ali
Description: A custom travel booking WordPress theme.
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: #1a73e8;
}

a:hover {
    color: #0056b3;
}

header {
    background-color: #0056b3;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header nav {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li:last-child {
    margin-right: 0;
}

header nav ul li a {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

header nav ul li a:hover {
    color: #ffd700;
}

/* Logo Styles */
header .logo img {
    height: 50px;
    width: auto;
}

/* Banner Styles */
.flight-banner img, .hotel-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Flight and Hotel Listings */
.flight, .hotel {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    max-width: 800px;
}

.flight h2, .hotel h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0056b3;
}

.flight h2 img, .hotel h2 img {
    vertical-align: middle;
    margin-right: 10px;
}

/* Buttons */
button, input[type="submit"] {
    background-color: #0056b3;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #0041a3;
}

/* Search Form */
.search-form {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
}

.search-form input[type="text"], .search-form select {
    padding: 10px;
    font-size: 16px;
    width: 48%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}
