/*
Theme Name: YUKI PRO MUSIC Official Theme
Author: YUKI PRO
Version: 1.1.0
Description: 洗練されたダークモード基調の音楽レーベルテーマ。
*/

/* --- 全体のリセットと共通設定 --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #0b0c10; /* 深い漆黒 */
    color: #c5c6c7; /* 明るいグレー（文字用） */
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- セクションタイトル --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 4px;
}
/* タイトルの下にスタイリッシュな光るライン */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #45f3ff, #ff007f);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- 1. ヒーローセクション（近未来感のあるデザイン） --- */
.hero-banner {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1f2833 0%, #0b0c10 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(69, 243, 255, 0.6);
    letter-spacing: 6px;
    margin-bottom: 10px;
}
.hero-banner p {
    font-size: 1.2rem;
    color: #45f3ff; /* ネオンブルー */
    text-transform: uppercase;
    letter-spacing: 8px;
}

/* --- 各セクションの余白 --- */
.section-artists, .section-releases {
    padding: 100px 0;
}
.section-releases {
    background-color: #0f1115; /* セクションごとに微細な色の変化 */
}

/* --- 2. ARTISTS セクション（スタイリッシュなカード型） --- */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.artist-card {
    background: #1f2833;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(69, 243, 255, 0.2);
}
.artist-img {
    width: 100%;
    aspect-ratio: 4 / 3; /* 横長でスマートな比率 */
    overflow: hidden;
}
.artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.artist-card:hover .artist-img img {
    transform: scale(1.05); /* ホバー時に画像が少し拡大 */
}
.artist-info {
    padding: 20px;
    text-align: center;
}
.artist-info h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

/* --- 3. RELEASES セクション（正方形ジャケットアート） --- */
.jacket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.jacket-card {
    transition: transform 0.3s ease;
}
.jacket-card:hover {
    transform: translateY(-5px);
}
.jacket-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 完全な正方形（CDジャケット） */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
}
/* ジャケットにホバーした時、薄く光るマスクをかける */
.jacket-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 127, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.jacket-card:hover .jacket-img::after {
    opacity: 1;
}
.jacket-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jacket-info {
    margin-top: 15px;
    padding: 0 5px;
}
.jacket-info h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 文字が長すぎたら「...」にする */
}