/* Auxiliary Pages Styles - Harvest Loop Japan */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FEFCF8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    line-height: 1.2;
    font-weight: 600;
}

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

/* Header */
.header {
    background-color: #FEFCF8;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 24px;
    color: #2D5016;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2D5016;
}

.nav-links .phone {
    color: #1E3A8A;
    font-weight: 500;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 48px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E7EB;
}

.page-header h1 {
    font-size: 36px;
    color: #2D5016;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 32px;
}

.hero-image {
    margin-top: 24px;
}

.about-hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

/* Content Blocks */
.content-block {
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.content-block h2 {
    font-size: 28px;
    color: #2D5016;
    margin-bottom: 24px;
    text-align: center;
}
    text-align: center;

.content-block p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 16px;
    line-height: 1.7;
    text-align: center;
    text-align: center;
}

.content-block a {
    color: #1E3A8A;
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

/* About Page Specific Styles */
.content-image {
    margin: 32px 0;
}

.about-content-image {
    width: 100%;
    max-width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.values-illustration {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.hub-illustration {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

/* Values Grid (About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-card {
    background: #FEFCF8;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: #F0F9E8;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card h3 {
    font-size: 20px;
    color: #2D5016;
    margin-bottom: 16px;
}

.value-card p {
    color: #4B5563;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-brand .logo-section {
    margin-bottom: 16px;
}

.footer-brand .brand-name {
    color: #FEFCF8;
    font-size: 18px;
}

.footer-brand p {
    color: #9CA3AF;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #FEFCF8;
    font-size: 16px;
    margin-bottom: 16px;
}

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

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

.footer-column ul li a {
    color: #9CA3AF;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #FEFCF8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9CA3AF;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    color: #FEFCF8;
    padding: 16px 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-link {
    color: #9CA3AF;
    text-decoration: underline;
    font-size: 14px;
    margin-left: 8px;
}

.cookie-link:hover {
    color: #FEFCF8;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: #2D5016;
    color: #FEFCF8;
}

.cookie-accept:hover {
    background-color: #1F3A0F;
}

.cookie-settings {
    background-color: transparent;
    color: #FEFCF8;
    border: 1px solid #4B5563;
}

.cookie-settings:hover {
    background-color: #374151;
}

.cookie-decline {
    background-color: transparent;
    color: #9CA3AF;
    border: 1px solid #4B5563;
}

.cookie-decline:hover {
    background-color: #374151;
    color: #FEFCF8;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #FEFCF8;
    padding: 32px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #2D5016;
    margin-bottom: 24px;
    font-size: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 8px;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2D5016;
}

.cookie-label input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category p {
    color: #4B5563;
    font-size: 14px;
    margin: 0;
    margin-left: 30px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
}

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

    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        gap: 16px;
    }

    .brand-name {
        font-size: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .content-block h2 {
        font-size: 24px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-modal-content {
        padding: 24px;
        margin: 16px;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 32px 0;
    }

    .page-header {
        margin-bottom: 32px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .content-block {
        margin-bottom: 32px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}