/* Custom Professional Styles for Kyoto */
:root {
    --primary: #bc4749; /* Deep Imperial Red */
    --dark: #1e1e1e;
    --light: #fdfaf5; /* Creamier background for a paper feel */
    --accent: #6a994e; /* Bamboo Sage Green */
}

* { 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 */
.hero {
    height: 100vh;
    /* High-impact Kyoto Temple/Forest background */
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                      url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?auto=format&fit=crop&w=1920&q=80');
    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;
    z-index: 10;
}

.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; color: white; }

.btn {
    padding: 12px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 700;
}

.btn:hover { background: #9b3032; transform: translateY(-5px); box-shadow: 0 5px 15px rgba(188, 71, 73, 0.4); }

/* Grid Gallery */
.gallery { padding: 80px 20px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }

.card:hover img { transform: scale(1.1); }

.card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.card-info h3 { color: var(--light); font-size: 1.4rem; border-left: 3px solid var(--accent); padding-left: 10px; }

/* Sections */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.content-section { padding: 100px 0; text-align: center; }
.content-section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); }

.map-section { padding: 80px 0; background: #111; }
.map-container { margin-top: 40px; border-radius: 20px; overflow: hidden; height: 450px; border: 1px solid #333; }
iframe { width: 100%; height: 100%; border: none; }

footer { text-align: center; padding: 50px; background: #080808; font-size: 0.8rem; letter-spacing: 1px; }