body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f5; /* Light gray background */
}

/* Destinations Section */
.destinations {
    text-align: center;
    padding: 50px 15px; /* Generous padding */
    background-color: #ffffff; /* White background for contrast */
    border-radius: 10px; /* Slightly larger rounded corners */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Deeper shadow for a floating effect */
    max-width: 1200px; /* Limit maximum width */
    margin: auto; /* Center the section */
}

h1 {
    color: #2c3e50; /* Darker heading color */
    margin-bottom: 20px;
    font-size: 2.5em; /* Larger font size for emphasis */
}

.destination-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 30px; /* Space between destination cards */
    margin: 20px 0; /* Margin around the destination list */
}

.destination {
    background: #fff; /* White background for destination cards */
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Card shadow */
    overflow: hidden; /* Ensures rounded corners for images */
    transition: transform 0.3s, box-shadow 0.3s; /* Transition effects */
}

.destination:hover {
    transform: translateY(-4px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.destination-image {
    width: 100%;
    height: 150px; /* Fixed height for uniformity */
    object-fit: cover; /* Cover the area without distorting the image */
}

.learn-more-button {
    display: inline-block;
    margin: 10px 0;
    padding: 12px 18px;
    background-color: #3498db; /* Button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.learn-more-button:hover {
    background-color: #2980b9; /* Darker shade on hover */
}

.destination-info {
    margin-top: 40px;
    padding: 25px;
    background: #d9edf7; /* Light blue background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Shadow for emphasis */
}

.destination-info h2 {
    color: #2c3e50; /* Darker heading color */
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 800px) {
    .destination {
        margin: 0 auto; /* Center destination cards */
    }
}

@media (max-width: 500px) {
    .destinations {
        padding: 30px 10px; /* Reduced padding on smaller screens */
    }

    h1 {
        font-size: 2em; /* Adjust heading size */
    }
}