/* General Styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-weight: 700;
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Placeholder aspect ratio */
.placeholder {
    min-height: 300px;
}
