/*
Theme Name: Recruitment LP Theme
Theme URI: https://example.com
Author: Representative Sakamoto
Author URI: https://example.com
Description: A High-Heat Recruitment Landing Page Theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
    --bg-color: #111111;
    --text-color: #f0f0f0;
    --accent-color: #ff4500;
    /* Orange Red */
    --accent-gradient: linear-gradient(135deg, #ff4500, #ff8c00);
    --secondary-bg: #1a1a1a;
    --highlight-bg: rgba(255, 69, 0, 0.1);
    --font-heading: 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-padding {
    padding: 80px 0;
}

/* Utilities */
.text-body {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.highlight-text {
    color: #ffffff;
}

.text-emphasis {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 2px;
    margin-bottom: 1.5rem;
}

.text-danger {
    color: #ff6b6b;
    font-weight: 700;
}

.mt-large {
    margin-top: 3rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    /* Almost full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #222222, #000000);
    padding: 100px 20px;
}

.hero-title {
    font-size: 2.5rem;
    /* Mobile default */
}

.hero-title .highlight-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.hero-title .impact-text {
    display: block;
    font-size: 4rem;
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0px 4px 20px rgba(255, 69, 0, 0.4);
}

/* Intro Section */
.intro-lead {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

/* Story Section */
.story-header {
    margin-bottom: 3rem;
}

.story-highlight {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    border-radius: 4px;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    display: block;
    margin: 1rem 0;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--secondary-bg);
}

/* Conditions Section */
.conditions-list {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

.condition-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.condition-label {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0.5rem;
}

.condition-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.reason-box {
    margin-top: 3rem;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 8px;
}

/* Vision Section */
.vision-message {
    text-align: center;
    margin: 3rem 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), #220a00);
}

.cta-lead {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gradient);
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 2rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.cta-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.cta-main {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.cta-note {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 1rem;
}

.cta-warning {
    font-size: 0.8rem;
    color: #666666;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #444444;
    border-top: 1px solid #222;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-title .highlight-text {
        font-size: 2rem;
    }

    .hero-title .impact-text {
        font-size: 6rem;
    }

    .conditions-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .condition-item {
        align-items: center;
        text-align: center;
    }
}