/* status_styles.css の内容 */

/* Hero Section (運行状況表示に特化) - 通常のstyle.cssのスタイルを上書き */
.hero {
    background-color: #36454F;
    /* ダークトーンの背景色を設定 */
    color: #fff;
    text-align: center;
    padding: 10rem 0;
    /* 運行状況が目立つように高さを強調 */
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

/* 背景のロゴ画像 - パスは status_styles.css から見て設定 */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    /* status_styles.cssの場所(/omiyarailway/open/)から見たパス: 2つ上に戻る */
    background-image: url('../../logo_background.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    /* 透明度を強めにして文字を読みやすく */
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* オーバーレイを濃くして文字を強調 */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #00c8c8;
    /* 見出しを水色に */
}

/* 運行状況の表示スタイル */
#current-status-display {
    font-size: 80px;
    font-weight: 900;
    display: block;
    margin-top: 40px;
    transition: color 0.5s;
}

.update-time {
    font-size: 1rem;
    color: #a0a0a0;
    margin-top: 15px;
}

/* Media Queries for Responsiveness (heroセクションに特化) */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    #current-status-display {
        font-size: 50px;
    }
}