/* 基本設定 */
body {
    background-color: #000; /* 真っ黒な背景 */
    color: #fff;
    /* 日本語の明朝体を優先して適用 */
    font-family: 'Noto Serif JP', 'Cinzel', serif; 
    margin: 0;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.6;
}

/* ナビゲーション */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent); /* グラデーションで自然に */
    z-index: 100;
    padding: 20px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    font-family: 'Cinzel', serif; /* メニューは英語フォントでカッコよく */
    font-size: 14px;
    letter-spacing: 0.1em;
}

/* トップ画像エリア（ヒーロー） */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* ↓ 背景画像URL。ここにメンバー写真を指定すると一気に完成します */
    background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=1920&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 画像を暗くするフィルター（文字を読みやすくする） */
#hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.band-name {
    /* 日本語バンド名用の設定 */
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 4rem; /* スマホ等で大きすぎる場合は調整 */
    margin: 0 0 10px 0;
    letter-spacing: 0.2em; /* 文字の間隔を広げて高級感を出す */
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    white-space: nowrap; /* 折り返し防止 */
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #aaa;
    letter-spacing: 0.4em;
    margin: 0;
    text-transform: uppercase;
}

/* 各セクション共通 */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px; /* 余白を多めにとってロックバンドらしく */
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 60px;
    letter-spacing: 0.2em;
    display: block;
    color: #ccc;
}

/* NEWSリスト */
.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    border-bottom: 1px solid #222;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: background 0.3s;
}

.news-list li:hover {
    background: #0a0a0a;
}

.news-list .date {
    font-family: 'Cinzel', serif;
    color: #666;
    margin-right: 20px;
    font-size: 0.9rem;
    width: 100px;
}

.news-list .category {
    background: #fff;
    color: #000;
    padding: 2px 10px;
    font-size: 0.7rem;
    margin-right: 20px;
    font-weight: bold;
}

/* LIVEリスト */
.live-item {
    background: #080808; /* 背景よりわずかに明るい黒 */
    border: 1px solid #1a1a1a;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-date {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ddd;
    letter-spacing: 0.05em;
}

.live-venue {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.live-title {
    font-size: 1.4rem;
    margin: 15px 0 30px;
    font-weight: 500;
}

.btn {
    border: 1px solid #555;
    padding: 12px 40px;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: all 0.3s;
}

.btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* フッター */
footer {
    text-align: center;
    padding: 80px 0;
    font-size: 0.7rem;
    color: #444;
    border-top: 1px solid #111;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
}

/* アニメーション関連 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* スマホ対応 */
@media (max-width: 600px) {
    .band-name { font-size: 2.2rem; letter-spacing: 0.1em; }
    .subtitle { font-size: 0.8rem; letter-spacing: 0.2em; }
    .news-list .date { width: 100%; margin-bottom: 5px; }
    .news-list .category { margin-bottom: 5px; }
}