/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #222;
}

/* Header */
.header {
    background: #0f9d58; /* Green */
    padding: 15px 0;
    color: white;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
}

.nav a:hover {
    text-decoration: underline;
}
/* SEARCH BAR SECTION */
.search-section {
    width: 100%;
    background: #f7f7f7;
    padding: 25px 0;
    margin-bottom: 20px;
}

.search-container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #0f9d58;  /* green border */
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

.search-input:focus {
    border-color: #0c7a45; /* darker green */
}

.search-btn {
    padding: 12px 25px;
    background: #0f9d58; /* green button */
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

.search-btn:hover {
    background: #0c7a45; /* darker hover */
}

/* Filter Bar */
.filters {
    background: #f4f4f4;
    padding: 15px 0;
    margin-bottom: 20px;
}

.filter-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.filters button {
    background: white;
    padding: 10px 18px;
    border: 2px solid #0f9d58;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.filters button:hover {
    background: #0f9d58;
    color: white;
}

/* Tour Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-info {
    padding: 15px;
}

.tour-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.rating {
    color: #ff9900;
    font-size: 14px;
    margin-bottom: 8px;
}

.price {
    color: #0f9d58;
    font-weight: bold;
    margin-bottom: 12px;
}

.book-btn {
    width: 100%;
    background: #0f9d58;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.book-btn:hover {
    background: #0c7a45;
}

/* Footer */
.footer {
    background: #0f9d58;
    color: white;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}
