/* 猫カフェ風サイト用の追加CSS */
.cafe-header {
    background: #fffaf6;
    border-bottom: 2px solid #f8b5a8;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px #f8b5a822;
}

.cafe-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.cafe-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cafe-nav a {
    text-decoration: none;
    color: #a0522d;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.cafe-nav a:hover {
    color: #e07a5f;
}

.intro {
    text-align: center;
    margin: 2.5rem 0 2rem 0;
}

.cafe-gallery {
    background: #fff6f0;
    padding: 2rem 0;
    text-align: center;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gallery-grid img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 2px 8px #f8b5a844;
    background: #fff;
}

.cafe-menu {
    background: #fffaf6;
    padding: 2rem 0 1.5rem 0;
    text-align: center;
}

.cafe-menu ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding: 0;
    list-style: disc inside;
}

.cafe-menu li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cafe-price {
    background: #fff6f0;
    padding: 2rem 0 1.5rem 0;
    text-align: center;
}

.cafe-price table {
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px #f8b5a844;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cafe-price th,
.cafe-price td {
    padding: 0.7rem 1.2rem;
    border-bottom: 1px solid #f8b5a8;
    font-size: 1rem;
}

.cafe-price th {
    background: #ffe4e1;
    color: #a0522d;
    text-align: left;
}

.cafe-price tr:last-child td,
.cafe-price tr:last-child th {
    border-bottom: none;
}

.cafe-access {
    background: #fffaf6;
    padding: 2rem 0 1.5rem 0;
    text-align: center;
}

.cafe-footer {
    background: #ffe4e1;
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid #f8b5a8;
    color: #a0522d;
    font-size: 0.95rem;
}

@media (max-width: 700px) {
    .gallery-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .cafe-nav ul {
        gap: 1rem;
    }

    .cafe-logo {
        width: 80px;
        height: 80px;
    }
}