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

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn-scroll {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Header */
.header {
    background-color: #000;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #dbc495;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    margin-right: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a,
.header-order-nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav a:hover,
.header-order-nav a:hover {
    color: #dbc495;
}

.header-order-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.logo img {
    height: 60px;
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* 画像を暗くするフィルター */
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #dbc495;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.btn-scroll {
    display: inline-block;
    padding: 15px 40px;
    background-color: #dbc495;
    border-color: #333;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-scroll:hover {
    background-color: #1a1a1a;
    color: #dbc495;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Sections General */
.main-content {
    padding-top: 120px;
}

 .order-section {
    padding: 100px 0;
}

/* Featured Menu Section */
.featured-menu-section {
    padding: 100px 0;
    background-color: #0a0a0a; /* Changed from #111 to alternate properly */
}

.view-menu-btn-container {
    text-align: center;
    margin-top: 60px;
}

.btn-view-menu {
    display: inline-block;
    padding: 15px 40px;
    background-color: #dbc495;
    border: 1px solid #dbc495;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-view-menu:hover {
    background-color: #1a1a1a;
    color: #dbc495;
    border-color: #333;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Menu Section Styles */
.menu-category {
    padding: 80px 0;
}

.menu-category:nth-of-type(even) {
    background-color: #111;
}

.category-title {
    font-size: 2rem;
    color: #dbc495;
    border-bottom: 3px solid #dbc495;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    border-color: #dbc495;
}

.menu-img {
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-img img {
    transform: scale(1.25);
}

.menu-text {
    padding: 20px;
    flex-grow: 1;
}

.menu-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #dbc495;
}

.menu-text p {
    font-size: 0.9rem;
    color: #ccc;
}

.item-notes {
    margin-top: 10px;
}

.item-notes span {
    display: inline-block;
    background-color: #333;
    color: #dbc495;
    padding: 2px 8px;
    font-size: 0.75rem;
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: bold;
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Order Grid */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-card {
    background-color: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
    text-align: center;
}

.order-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #dbc495;
}

.order-address {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 25px;
}

.links a {
    display: block;
    padding: 12px;
    margin-bottom: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links a:hover {
    background-color: #dbc495;
}

.links a img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.links a img[alt="SkipTheDishes"] {
    height: 36px; /* 24px * 1.5 = 36px */
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #111; /* Added background color to alternate properly */
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    height: auto;
    /* アニメーションの初期状態：透明で50px下に配置 */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform;
}

.about-img img.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.about-content {
    flex: 1;
    text-align: left;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #ccc;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #111;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: auto; /* Show styled scrollbar */
    scrollbar-color: #dbc495 #1a1a1a;
}

/* Custom Scrollbar (Slider) */
.gallery-carousel::-webkit-scrollbar {
    height: 8px;
}

.gallery-carousel::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.gallery-carousel::-webkit-scrollbar-thumb {
    background: #dbc495;
    border-radius: 4px;
}

.gallery-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
    border: 1px solid #333;
    transition: 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #dbc495;
    color: #dbc495;
    width: 66px; /* 44px * 1.5 */
    height: 66px; /* 44px * 1.5 */
    font-size: 2.25rem; /* 1.5rem * 1.5 */
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
}

.carousel-control:hover {
    background: #dbc495;
    color: #fff;
}

.carousel-control.prev { left: -33px; }
.carousel-control.next { right: -33px; }

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border: 2px solid #dbc495;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-card {
    background-color: #0a0a0a;
    padding: 30px;
    border: 1px solid #333;
}

.location-card h3 {
    color: #dbc495;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.location-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.location-info a {
    color: inherit;
    text-decoration: none;
}

.map-container {
    margin-top: 20px;
    border: 1px solid #333;
    line-height: 0; /* 下部の隙間を排除 */
}

.map-container iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

.hours {
    margin: 20px 0;
}

.note {
    font-size: 0.85rem;
    color: #888;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 60px 0 20px;
    border-top: 2px solid #dbc495;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #dbc495;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-col p a {
    color: inherit;
    text-decoration: none;
}

.footer-col p a:hover {
    text-decoration: underline;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 8px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.social-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo img {
        max-width: 50%;
        height: auto;
    }
    .btn-header-order {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    .nav a,
    .header-order-nav a {
        font-size: 0.9rem;
    }
    .nav ul,
    .header-order-nav ul {
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-flex {
        flex-direction: column;
        gap: 30px;
    }
    .about-content {
        text-align: center;
    }
    .order-grid, .footer-grid, .location-grid {
        grid-template-columns: 1fr;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .featured-menu-section .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 85%;
    }
    .carousel-control {
        display: none;
    }
}