/* Auxiliary Pages Stylesheet for ShineCraft Japan */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2D3748;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2D3748;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2D3748;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

a {
    color: #4A5568;
    text-decoration: none;
}

a:hover {
    color: #2D3748;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #4A5568;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #2D3748;
    border-bottom-color: #4A5568;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-hero {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding: 80px 0 60px;
}

.page-hero h1 {
    margin-bottom: 1rem;
    text-align: center;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text h1 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-text p {
    text-align: left;
    margin: 0;
}

.hero-visual .image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    border: 2px dashed #A0AEC0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #718096;
    font-weight: 500;
}

.about-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-mission-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.content-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mission-visual .image-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    border: 2px dashed #A0AEC0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #718096;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #F7FAFC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: #2D3748;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4A5568;
    margin: 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer .brand-name {
    color: #ffffff;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #CBD5E0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #4A5568;
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .navigation {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .content-section {
        padding: 40px 0;
    }

    .hero-content-about {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1,
    .hero-text p {
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2 {
        text-align: center;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-text h2 {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .policy-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .navigation {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .policy-content {
        margin: 0;
        border-radius: 8px;
    }
}