* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #666; /* Softer gray for text */
}

header {
    background-color: darkblue;
    color: #ccc; /* Softer white for header text */
    padding: 15px 0;
    text-align: center;
}

nav {
    margin: 15px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ccc; /* Softer color for nav links */
    text-decoration: none;
    font-weight: bold;
}

nav ul li.active a {
    text-decoration: underline;
    color: #fff; /* White underline for active link */
}

.hero {
    background-image: url('/images/hokkaido-lake-fishing.jpg');
    background-size: cover;
    color: blue; /* Softer color for hero text */
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.highlights, .popular-destinations, .events, .testimonials {
    padding: 40px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #007BFF; /* Retain original for headings */
}

.highlight-grid, .destination-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.highlight, .destination {
    width: 30%;
    margin: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.highlight:hover, .destination:hover {
    transform: scale(1.05);
}

.highlight img, .destination img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background-color: #FF6F61;
    color: #000000; /* White text for buttons */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #FF4C3B;
}

.events {
    padding: 20px;
    color: #666; /* Softer gray for event text */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-item {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.event-item:hover {
    transform: scale(1.05);
}

.event-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.event-details {
    padding: 10px;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    display: block;
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

footer {
    background-color: darkblue;
    color: #ccc; /* Softer color for footer text */
    text-align: center;
    padding: 15px 0;
}

footer p {
    margin: 0;
}

.ending {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.055);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.about-img {
    height: 300px;
    width: auto;
}

.text-container {
    padding-left: 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 10px;
}
