/* Custom Professional Styles */
:root {
    --primary: #e63946;
    --dark: #1a1a1a;
    --light: #f1faee;
    --accent: #457b9d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: var(--dark);
    color: var(--light);
    scroll-behavior: smooth;
}

/* Hero Section with high-impact background */
.hero {
    height: 100vh;
    background-image: url('/img/tokyo.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: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: bold; text-decoration: none; color: white; letter-spacing: 3px; }

.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 20px; }

.btn {
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover { background: #b32a35; transform: translateY(-5px); }

/* Grid Gallery with Cards */
.gallery { padding: 80px 20px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.card:hover img { transform: scale(1.1); }

.card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* 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; }