* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: darkblue;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header .logo {
    font-size: 2em;
    margin-bottom: 10px;
}

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        header {
            background: darkblue;
            color: white;
            padding: 20px;
            text-align: center;
        }
        form {
            max-width: 600px; /* Limit the width of the form */
            margin: auto; /* Center the form */
            padding: 20px; /* Add some padding */
            border: 1px solid #ccc; /* Light border */
            border-radius: 10px; /* Rounded corners */
            background-color: #f9f9f9; /* Light background color */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        }
        
        label {
            margin-top: 15px; /* Space between labels and inputs */
            font-weight: bold; /* Bold labels for emphasis */
            display: block; /* Labels on their own line */
        }
        
        input, select, textarea {
            width: 100%; /* Full width */
            padding: 10px; /* Padding inside inputs */
            margin-top: 5px; /* Space between label and input */
            border: 1px solid #ccc; /* Light border */
            border-radius: 5px; /* Rounded corners */
            transition: border-color 0.3s; /* Smooth transition for focus */
        }
        
        input:focus, select:focus, textarea:focus {
            border-color: darkblue; /* Change border color on focus */
        }
        
        button {
            background-color: darkblue; /* Green background */
            color: white; /* White text */
            padding: 10px 15px; /* Button padding */
            border: none; /* No border */
            border-radius: 5px; /* Rounded corners */
            cursor: pointer; /* Pointer cursor on hover */
            margin-top: 15px; /* Space above button */
            transition: background-color 0.3s; /* Smooth transition */
            width: 100%; /* Full width button */
        }
        
        button:hover {
            background-color: #45a049; /* Darker green on hover */
        }
        
        nav ul {
            list-style-type: none;
            padding: 0;
        }
        nav ul li {
            display: inline;
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
        }
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: url('images/hokkaido-landscape.jpg') no-repeat center center/cover;
            color: white;
        }
        .section {
            margin: 20px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .thumbnail {
            width: 100%;
            height: auto;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .thumbnail:hover {
            transform: scale(1.05);
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .gallery img {
            width: calc(33% - 10px);
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .quiz {
            background-color: #e9ecef;
            padding: 20px;
            border-radius: 8px;
        }
        footer {
            text-align: center;
            padding: 20px;
            background: darkblue;
            color: white;
        }
        /* Responsive Styles */
        @media (max-width: 768px) {
            .gallery img {
                width: calc(50% - 10px);
            }
        }
        @media (max-width: 480px) {
            .gallery img {
                width: 100%;
            }
        }
    
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('/images/mount\ fuji\ cherry.webp') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.accommodation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.accommodation-item {
    flex: 1 1 calc(30% - 20px);
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.accommodation-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.accommodation-item img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.5s;
}

.accommodation-info {
    padding: 15px;
    background-color: white;
}

.accommodation-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.cta-button {
    background: #ffb703;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ffb70388;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: darkblue;
}

.destination-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.destination {
    border: 1px solid #ddd;
    padding: 20px;
    width: 250px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.destination:hover {
    transform: scale(1.05);
}

footer {
    background-color: darkblue;
    color: white;
    text-align: center;
    padding: 15px 0;
}

footer p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .destination-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        height: 300px;
    }
}

.outdoor-activities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.outdoor-activity-item {
    flex: 1 1 calc(30% - 20px);
    margin: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.outdoor-activity-item:hover {
    transform: scale(1.05);
}

.activity-img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid darkblue;
}

.transportation-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.transportation-item {
    flex: 1 1 calc(30% - 20px);
    margin: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.transportation-item:hover {
    transform: scale(1.05);
}

.transport-img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid darkblue;
}

.season-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.season-item {
    flex: 1 1 calc(45% - 20px);
    margin: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.season-item:hover {
    transform: scale(1.05);
}

.season-img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid darkblue;
}
