/* =====================
全体
===================== */
body {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    background: #eeeaf7; /* ← 少し紫に */
}

/* タイトル */
.ballet-title {
    font-family: "Ballet", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    margin: 0;
}

h1 {
    font-family: 'Cinzel', serif;
}

/* =====================
ヘッダー
===================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgb(255, 255, 255);
}

/* メニュー */
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-family: 'Cinzel', serif;
}

nav a:hover {
    color: #b9a6d6;
}

/* =====================
最初の画面
===================== */
.hero {
    height: 100vh; /* ← 画面中央 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f7f5fb;
}

.hero-text h2 {
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: 20px; /* ← 余白 */
}

.hero-text p {
    margin-bottom: 30px;
    color: #5a5a5a;
}

/* =====================
ボタン
===================== */
/* 診断スタートボタン */
.hero .btn {
    padding: 16px 32px;
    background: #b9a6d6;
    color: white;
    border: none;
    border-radius: 999px; /* ← 完全な丸 */
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hero .btn:hover {
    opacity: 0.8;
}
.btn {
    padding: 14px 28px;
    background: #b9a6d6;
    color: white;
    border: none;
    border-radius: 30px; /* ← 丸く */
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

/* =====================
診断カード
===================== */
.quiz {
    display: none;
    text-align: center;
    padding: 40px;
    max-width: 500px;
    margin: 80px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.question {
    font-size: 20px;
    margin-bottom: 30px;
}

/* 回答ボタン */
.answers button {
    margin: 10px;
    padding: 12px 24px;
    border-radius: 20px;
    background: #b9a6d6;
    color: white;
    border: none;
    cursor: pointer;
}

/* =====================
結果
===================== */
.result {
    display: none;
    text-align: center;
    padding: 40px;
    max-width: 500px;
    margin: 80px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}