/* Company Page Specific Styles */

/* Reuse variables from main.css */

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Page Hero */
.page-hero {
    height: 400px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 100px; /* Offset fixed header */
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title-en {
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: sans-serif;
}

.page-title-ja {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f5f5f5;
    padding: 15px 10%;
    font-size: 12px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    margin-right: 5px;
}

.breadcrumbs a:hover {
    color: var(--gold-primary);
}

.breadcrumbs span {
    margin-right: 5px;
}

/* Message Section */
.message-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.message-image {
    flex: 1;
    height: 500px;
    position: relative;
}

.message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.message-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    z-index: -1;
}

.message-text {
    flex: 1;
}

.message-heading {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--dark-gray);
    border-left: 4px solid var(--gold-primary);
    padding-left: 20px;
}

.message-text p {
    margin-bottom: 20px;
    line-height: 2;
    text-align: justify;
    color: #555;
}

.message-signature {
    margin-top: 40px;
    text-align: right;
}

.message-signature .position {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.message-signature .name {
    font-size: 20px;
    font-weight: 500;
    font-family: serif;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 3px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top-color: var(--gold-primary);
}

.ph-icon {
    font-size: 14px;
    font-weight: bold;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.ph-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold-primary);
    margin: 10px auto 0;
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.philosophy-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Profile Section */
.profile-list {
    border-top: 1px solid #eee;
}

.profile-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.profile-row dt {
    width: 200px;
    background: #f9f9f9;
    padding: 20px;
    font-weight: bold;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.profile-row dd {
    flex: 1;
    padding: 20px 40px;
    color: #333;
}



/* Access Section */
.access-map {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.access-info {
    text-align: center;
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .message-content {
        flex-direction: column;
        gap: 40px;
    }

    .message-image {
        width: 100%;
        height: 300px;
    }

    .message-image::after {
        display: none;
    }

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

    .profile-row {
        flex-direction: column;
    }

    .profile-row dt {
        width: 100%;
        background: #f5f5f5;
        padding: 15px;
    }

    .profile-row dd {
        padding: 15px;
    }
}
