body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    background-image: url(/images/hakodate_Cherry.webp);
    background-attachment: fixed;
}

h2 {
    background: darkblue;
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

header {
    background: darkblue;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}
.logo h1 {
    margin: 0;
}

h3 {
    background-color: darkblue;
    padding: 10px;
    border-radius: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.section {
    padding: 20px;
}

.destination-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.destination {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 15px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Add transition for hover effect */
}

.destination:hover {
    transform: scale(1.05); /* Scale effect on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.destination-img {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 5px;
}

.details {
    margin-top: 10px;
}



footer {
    background-color: darkblue;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background-color: darkblue;
    color: white; /* White text for buttons */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: darkblue;
}
h3 { color: white; }
