* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins','Noto Sans JP', sans-serif;
}

body {
    color: #333;
    line-height: 1.7;
}

/* =========================
   Background Video
========================= */
.video-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* =========================
   Layout
========================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-weight: 700;
    color: #e63946;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

/* =========================
   Hero
========================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.btn {
    background: #e63946;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}

/* =========================
   Sections
========================= */
.spots,
.contact {
    padding: 80px 0;
    
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* =========================
   Cards
========================= */
.spot-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.spot-card {
    flex: 1;
    min-width: 280px;
    
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.spot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.spot-card h3 {
    padding: 15px;
}

.spot-card p {
    padding: 0 15px 10px;
}

/* Google Map */
.map iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

/* =========================
   Contact
========================= */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form button {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
}

/* =========================
   Footer
========================= */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
}