.body{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h2{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 30px;
    padding: 10px;
    color: blue;
    text-align: center;
}
.destination-container{
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    grid-auto-rows: auto; /* Automatically adjust row height */
    gap: 20px; /* Add spacing between the cards */
    justify-content: center; /* Center the grid items */
    width: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to left, peachpuff, white); /* Add gradient from white to peach */
    padding: 20px;
    margin: 16px;
}
.destination-container img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: grid;
}
.destination-card {
    width: 200px; /* Set a fixed width for the cards */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: whitesmoke;
    margin: 10px; /* Add margin to separate the cards */
    padding: 12px;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 0.8s ease forwards; /* Apply the fade-in animation */
    color: blue;
    align-items: center;
    justify-content: center;
}

.destination-card:nth-child(1) {
    animation-delay: 0.2s; /* Delay for the first card */
}

.destination-card:nth-child(2) {
    animation-delay: 0.4s; /* Delay for the second card */
}

.destination-card:nth-child(3) {
    animation-delay: 0.6s; /* Delay for the third card */
}

.destination-card:nth-child(4) {
    animation-delay: 0.8s; /* Delay for the fourth card */
}

.destination-card:nth-child(5) {
    animation-delay: 1s; /* Delay for the fifth card */
}

.destination-card:nth-child(6) {
    animation-delay: 1.2s; /* Delay for the sixth card */
}
.destination-card h3 {
    font-size: 14px;


}   
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start slightly below */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}
body {
    background: linear-gradient(to left, peachpuff, white); /* Add gradient from white to peach */
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.hotel-button {
    display: flex;
    align-items: center;
    justify-content: center; /* Center-align the button and image */
    gap: 10px; /* Add spacing between the button and the image */
    margin-top: 20px; /* Add some margin above the button */
    font-size: 20px;
    padding-bottom: 10px;
}

.hotel-button button {
    background-color: #3582cf; /* Set a professional blue background */
    color: white; /* Set text color to white */
    border: none; /* Remove border */
    border-radius: 5px; /* Add rounded corners */
    padding: 10px 20px; /* Add padding for a larger button */
    font-size: 16px; /* Increase font size */
    font-weight: bold; /* Make the text bold */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background-color 0.3s ease; /* Add a hover effect */
    
    
}

.hotel-button button:hover {
    background-color: #2c6bb2; /* Darken the button on hover */
    transition: 0.2s;
    transform: scale(0.8);
}

.weather-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
    justify-content: center;
}

.weather-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    width: 200px;
    text-align: center;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* For tablets and smaller screens */
@media (max-width: 768px) {
    .destination-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    h2 {
        font-size: 24px; /* Adjust heading size */
        text-align: center; /* Center-align the heading */
    }

    .destination-card {
        margin: 10px auto; /* Center cards on smaller screens */
    }
}

/* For mobile screens */
@media (max-width: 480px) {
    .destination-container {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }

    h2 {
        font-size: 20px; /* Smaller heading size */
    }

    .destination-card {
        width: 90%; /* Make cards take up most of the screen width */
        margin: 10px auto; /* Center-align cards */
    }

    .hotel-button button {
        width: 100%; /* Full-width button for mobile */
        font-size: 16px; /* Adjust font size */
    }
}
.weather-detials{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 18px;
    color: blue;
}