/* css/styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #030303;
    /* Deep dark background */
    color: #fff;
    overflow: hidden;
    /* Prevent scrolling for single page hero */
}

/* ヒーローセクション */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/hero-punk-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* グラデーションオーバーレイ（テキストを読みやすくしつつ雰囲気を出す） */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 画面下部をより暗くして重厚感を演出 */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(3, 3, 3, 0.85) 100%);
    z-index: 1;
}

/* コンテンツエリア */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
}

/* エモーショナルなタイトル */
.title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: #fff;
    /* 少し荒々しく強い輝き */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 2.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* サブタイトル */
.subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    /* より力強く */
    letter-spacing: 0.25em;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1);
    /* コントラストを強調 */
}

/* モバイル用改行の設定 */
.sp-br {
    display: none;
    /* デフォルトでは非表示 */
}

/* レスポンシブ対応 (SP向け) */
@media (max-width: 768px) {
    .sp-br {
        display: block;
    }

    .title {
        letter-spacing: 0.1em;
    }

    .subtitle {
        letter-spacing: 0.2em;
    }
}

/* アニメーションキーフレーム */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
