:root {
    --primary: #ff4d4d; /* Bright Osaka Red */
    --dark: #0f0f0f;
    --light: #ffffff;
    --gold: #d4af37;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.8;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('/img/osaka.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav {
    position: absolute;
    top: 0; width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
}

.logo { font-size: 1.8rem; font-weight: 700; color: white; text-decoration: none; letter-spacing: 5px; }

.nav-links a { color: white; text-decoration: none; margin-left: 30px; font-weight: 400; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1.1; margin-bottom: 20px; }

.btn {
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.4s ease;
}

.btn:hover { background: white; color: var(--dark); }

/* Gallery Section */
.gallery { padding: 100px 5%; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.card img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s ease; }

.card:hover img { transform: scale(1.1); }

.card-info {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transition: 0.3s;
}

.card-info h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }

/* Content Sections */
.content-section { padding: 100px 0; text-align: center; }
.container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 30px; }

footer { padding: 50px; text-align: center; border-top: 1px solid #333; font-size: 0.7rem; color: #777; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    nav { padding: 20px; }
}
/* Map & Footer styling */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.content-section { padding: 80px 0; text-align: center; }
.map-container { margin-top: 40px; border-radius: 20px; overflow: hidden; height: 400px; }
iframe { width: 100%; height: 100%; border: none; }
footer { text-align: center; padding: 40px; background: #111; font-size: 0.8rem; }