/* Modern Japanese Aesthetic */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Crimson Text', serif;
    color: #3d2817;
    line-height: 1.8;
    background: #f5f1eb;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }

.navbar {
    padding: 25px 0;
    background: #2a1810;
    color: #f5f1eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
    letter-spacing: 1px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #f5f1eb;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover { color: #d4a574; }

.btn-order {
    background: #d4a574;
    color: #2a1810;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4a574;
    transition: all 0.3s;
    display: block;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a1810 0%, #3d2817 100%); /* Fallback */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 30px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(42, 24, 16, 0.6); /* Darker overlay for better text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f5f1eb;
}

.hero-content p {
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #d4a574;
    color: #2a1810;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #c49464;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #f5f1eb;
    border: 2px solid #f5f1eb;
}

.btn-secondary:hover {
    background: #f5f1eb;
    color: #2a1810;
    border-color: #f5f1eb;
}

.menu-section {
    padding: 80px 30px;
    background: #ffffff;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a1810;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #5a4a3a;
    margin-bottom: 50px;
    font-size: 17px;
    font-style: italic;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.menu-category {
    background: #f5f1eb;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
}

.menu-category h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a1810;
}

.menu-category p {
    font-size: 15px;
    color: #5a4a3a;
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-order-online {
    margin-left: 0;
}

.about {
    padding: 80px 30px;
    text-align: center;
    background: #f5f1eb;
}

.about h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2a1810;
}

.about p {
    font-size: 17px;
    color: #5a4a3a;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 2;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 30px;
    background: #ffffff;
}

/* Gallery Mobile Notice */
.gallery-mobile-notice {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: #f5f1eb;
    border-radius: 8px;
    margin-bottom: 30px;
}

.gallery-mobile-notice p {
    font-size: 18px;
    color: #3d2817;
    margin-bottom: 20px;
    font-style: italic;
}

.btn-gallery-mobile {
    background: #d4a574;
    color: #2a1810;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-gallery-mobile:hover {
    background: #c49464;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #f5f1eb;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-loading,
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #5a4a3a;
    font-style: italic;
}

.gallery-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 8, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    display: none; /* Hide caption - no file names displayed */
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
    border: 2px solid #d4a574;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: #d4a574;
    color: #1a0f08;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
    border: 2px solid #d4a574;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: #d4a574;
    color: #1a0f08;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}


.contact {
    padding: 80px 30px;
    text-align: center;
    background: #2a1810;
    color: #f5f1eb;
}

.contact h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #d4a574;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4a574;
}

.contact-item p {
    font-size: 16px;
    color: #f5f1eb;
    line-height: 1.8;
}

.contact-item a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #f5f1eb;
}

.contact-cta {
    margin-top: 40px;
}

.delivery-platforms {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.delivery-platforms h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #d4a574;
}

.delivery-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.delivery-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid #d4a574;
    border-radius: 8px;
    text-decoration: none;
    color: #f5f1eb;
    transition: all 0.3s;
    min-width: 120px;
}

.delivery-link:hover {
    background: #d4a574;
    color: #2a1810;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.delivery-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.delivery-link span:not(.delivery-icon) {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #d4a574;
}

.map-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.map-link {
    margin-top: 15px;
}

.map-link a {
    color: #d4a574;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.map-link a:hover {
    color: #f5f1eb;
    text-decoration: underline;
}

.contact-form-section {
    padding: 80px 30px;
    background: #ffffff;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a1810;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    color: #3d2817;
    background: #f5f1eb;
    border: 2px solid #e5e0d8;
    border-radius: 4px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    padding: 14px 50px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.btn-submit:hover {
    background: #c49464;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.footer {
    padding: 40px 30px 30px;
    background: #1a0f08;
    color: #d4a574;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4a574;
}

.footer-section p {
    font-size: 14px;
    color: rgba(212, 165, 116, 0.8);
    line-height: 1.6;
}

.footer-delivery-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-delivery-links a {
    color: rgba(212, 165, 116, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-delivery-links a:hover {
    color: #d4a574;
}

.footer > .container > p {
    text-align: center;
    font-size: 14px;
    color: rgba(212, 165, 116, 0.6);
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2a1810;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu { gap: 20px; font-size: 14px; }
    .hero-content h2 { font-size: 36px; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .menu-categories {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .map-wrapper iframe {
        height: 300px;
    }
    .delivery-links {
        gap: 15px;
    }
    .delivery-link {
        min-width: 100px;
        padding: 15px 20px;
    }
    /* Hide gallery grid on mobile */
    .gallery-section .gallery-grid {
        display: none;
    }
    
    /* Show mobile notice on mobile */
    .gallery-mobile-notice {
        display: block;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-caption {
        font-size: 16px;
    }
}

/* Menu Page Styles */
.menu-hero {
    padding: 120px 30px 80px;
    text-align: center;
    background: linear-gradient(135deg, #2a1810 0%, #3d2817 100%);
    color: #f5f1eb;
    margin-top: 70px;
}

.menu-hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f5f1eb;
}

.menu-hero p {
    font-size: 20px;
    color: #d4a574;
    font-style: italic;
}

.menu-category-section {
    padding: 80px 30px;
    background: #ffffff;
}

.menu-category-section:nth-child(even) {
    background: #f5f1eb;
}

.menu-category-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a1810;
    text-align: center;
}

.menu-category-description {
    text-align: center;
    color: #5a4a3a;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
}

.menu-item-header h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a1810;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 10px;
}

.menu-item-description {
    font-size: 15px;
    color: #5a4a3a;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.menu-item-list {
    list-style: none;
    padding: 0;
}

.menu-item-list li {
    padding: 8px 0;
    color: #3d2817;
    font-size: 16px;
    border-bottom: 1px solid #e5e0d8;
    position: relative;
    padding-left: 20px;
}

.menu-item-list li:last-child {
    border-bottom: none;
}

.menu-item-list li::before {
    content: '•';
    color: #d4a574;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.menu-cta-section {
    padding: 80px 30px;
    text-align: center;
    background: #2a1810;
    color: #f5f1eb;
}

.menu-cta-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4a574;
}

.menu-cta-section p {
    font-size: 18px;
    color: #f5f1eb;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .menu-hero h1 {
        font-size: 36px;
    }
    .menu-category-title {
        font-size: 32px;
    }
    .menu-items {
        grid-template-columns: 1fr;
    }
}
