/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
} */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url('background.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}

header {
    background-image: url('background.jpg');
    color: rgb(23, 23, 23);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2rem;
    letter-spacing: 2px;
}

nav {
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: rgb(18, 18, 18);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.search-box {
    margin: 20px auto;
}

.search-box input {
    padding: 10px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.destinations {
    margin: 20px 0;
    border-style: dotted;
    padding: 20px;
}

.destination-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.destination {
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
    transition: transform 0.3s;
}

.destination img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #333; 
}

.destination:hover {
    transform: scale(1.05);
}

.about {
    background-color: skyblue;
    padding: 30px;
}

footer {
    background: #222;
    color: white;
    padding: 20px;
}

footer h2 {
    margin-bottom: 10px;
}
