body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-family: 'Noto Sans', sans-serif;
    font-size: 26px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero */
#hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 0 10px black;
}

.hero-text h2 {
    font-size: 48px;
}

/* About Japan */
.about-japan {
    padding: 40px;
    text-align: center;
}

.about-text {
    width: 70%;
    margin: auto;
    font-size: 18px;
}

.japan-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.japan-gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Spots */
.spot-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

.spot-card {
    width: 300px;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.spot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Info */
.info-box {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}

/* Contact */
form {
    width: 80%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.submit-btn {
    background: #ff4b4b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e63a3a;
}