/* Base styles */
:root {
    --primary: #2d4a22;
    --primary-light: #4a7c3a;
    --primary-dark: #1a2f15;
    --accent: #e9b949;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --font-heading: "Noto Serif JP", serif;
    --font-body: "Noto Sans JP", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
}

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

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo i {
    color: var(--white);
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(-15deg);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle i {
    color: var(--white);
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar.scrolled .logo {
    color: var(--primary-dark);
}

.navbar.scrolled .logo i {
    color: var(--primary-dark);
}

.navbar.scrolled .nav-menu a {
    color: var(--gray-800);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary);
}

.navbar.scrolled .nav-menu a::after {
    background-color: var(--primary);
}

.navbar.scrolled .menu-toggle i {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.section {
    padding: 6rem 0;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 0.75rem;
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Highlight Section */
.highlight-section {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.highlight-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.highlight-content p {
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Seasonal Section */
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.seasonal-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seasonal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.seasonal-item:hover img {
    transform: scale(1.1);
}

.seasonal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.seasonal-item:hover .seasonal-content {
    transform: translateY(-10px);
}

.seasonal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.seasonal-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    color: var(--white);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Company Page Styling */
.company-table {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
    overflow-x: auto;
}

.company-table table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th {
    text-align: left;
    padding: 1.25rem;
    width: 25%;
    min-width: 160px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
    background-color: var(--gray-50);
}

.company-table td {
    padding: 1.25rem;
    color: var(--gray-700);
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.8;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-table li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-table li:last-child {
    margin-bottom: 0;
}

.company-table li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.company-map {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-top: 2rem;
}

.company-map h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.company-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 450px;
}

/* Contact Form Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 2rem;
}

.company-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.company-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.info-item i {
    color: var(--primary);
}

.info-item span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 74, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        color: var(--gray-800);
        font-size: 0.9rem;
        padding: 0.75rem;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background-color: var(--gray-50);
        color: var(--primary);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features-grid,
    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-table {
        padding: 1rem;
        margin: 0 -1rem;
        border-radius: 0;
        box-shadow: none;
    }

    .company-table th {
        padding: 1rem;
        min-width: 120px;
    }

    .company-table td {
        padding: 1rem;
    }

    .company-map {
        padding: 1rem;
        margin: 2rem -1rem 0;
        border-radius: 0;
        box-shadow: none;
    }

    .company-map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .company-table {
        font-size: 0.9rem;
    }

    .company-table th {
        min-width: 100px;
    }

    .company-map iframe {
        height: 250px;
    }
}