/**
 * Hero Section - White Text Styles
 * ヒーローセクションのテキストを白色に
 */

/* ヒーローセクション全体 */
.hero {
    color: white;
}

/* ヒーロータイトル */
.hero .hero-title,
.hero-title {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ヒーローサブタイトル */
.hero .hero-subtitle,
.hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ヒーロー内のすべてのテキスト */
.hero-content {
    color: white !important;
}

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-content span {
    color: white !important;
}

/* スクロールインジケーター */
.scroll-indicator {
    color: white !important;
}

.scroll-indicator .scroll-text {
    color: white !important;
    opacity: 0.8;
}

.scroll-indicator::before,
.scroll-indicator::after {
    background-color: white;
}

/* スプリットテキストアニメーション対応 */
.hero .split-text,
.hero .split-text span {
    color: white !important;
}

/* リンクがある場合 */
.hero a,
.hero-content a {
    color: white !important;
}

.hero a:hover,
.hero-content a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ボタンがある場合 */
.hero .btn,
.hero-content .btn {
    color: white;
    border-color: white;
}

.hero .btn:hover,
.hero-content .btn:hover {
    background-color: white;
    color: #333 !important;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .hero .hero-title,
    .hero-title {
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }
    
    .hero .hero-subtitle,
    .hero-subtitle {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}