* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Sans", sans-serif;
    background: #ffe4b5;
    color: #8b4513;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(139, 69, 19, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: #ffd700;
    font-weight: bold;
}

.header nav {
    display: flex;
    gap: 30px;
}

.header nav a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
}

.header nav a:hover {
    color: white;
}

.hero-kumamoto {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    position: relative;
}

.hero-kumamoto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
}

.spots-section {
    padding: 100px 0;
}

.spots-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8b4513;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.spot-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
    transition: all 0.3s;
    border: 2px solid #ffd700;
}

.spot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.4);
}

.spot-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.spot-card h3 {
    padding: 20px;
    font-size: 1.5rem;
    color: #8b4513;
}

.spot-card p {
    padding: 0 20px 20px;
    color: #666;
}

footer {
    background: #654321;
    color: #ffd700;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}
