/**
 * Front Page Specific Styles
 * ヒーローセクションのテキストカラー設定
 */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Title - White Text */
.hero-title {
    color: white !important;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.08em;
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
}

/* Hero Subtitle - White Text */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.06em;
    font-family: 'Noto Serif JP', 'Shippori Mincho', serif;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-text {
    color: white !important;
    font-family: 'Outfit', sans-serif;
}

/* Ensure all hero text is white */
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero span,
.hero a {
    color: white !important;
}

/* Hero buttons */
.hero .btn {
    color: white;
    border: 2px solid white;
    background: transparent;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.4;
        letter-spacing: 0.05em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.7;
    }
    
    .hero-content {
        padding: 1rem;
    }
}