/* Venue Page Styles */

/* Green background for venue pages */
body.venue-page {
    background-color: var(--matcha-bg, #f1f8e9) !important;
}

body.venue-page .minimal-header,
body.venue-page .venue-main,
body.venue-page .minimal-footer,
body.venue-page header {
    background-color: transparent !important;
    border-bottom: none;
}

.venue-main {
    background-color: var(--background-color);
    min-height: calc(100vh - 120px);
    padding: 40px 0;
}

/* Venue Header */
.venue-header {
    text-align: center;
    margin-bottom: 50px;
}

.venue-title-jp {
    font-size: 48px;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-title-en {
    font-size: 18px;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.venue-subtitle {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
}

/* Matcha Rating Section */
.matcha-rating-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.rating-circle {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #8fb359;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.rating-label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
}

.rating-value {
    font-size: 18px;
    font-weight: 600;
}

.rating-bars {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-name {
    font-size: 13px;
    color: var(--secondary-color);
    min-width: 80px;
    text-align: right;
}

.rating-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background-color: #8fb359;
    transition: width 0.3s ease;
}

/* Photo Gallery */
.photo-gallery {
    margin-bottom: 60px;
}

.gallery-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 300px;
}

.gallery-item {
    overflow: hidden;
    background-color: var(--light-gray);
}

.gallery-item.large {
    grid-row: span 2;
}

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

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

/* Menu Section */
.venue-menu {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.menu-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-gray);
}

.menu-title {
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-items {
    padding: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.item-name {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 400;
}

.item-price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.item-price-note {
    font-size: 12px;
    color: var(--secondary-color);
    font-style: italic;
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex-grow: 1;
}

.signature-drink {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.drink-image {
    flex-shrink: 0;
}

.drink-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.drink-info {
    flex-grow: 1;
}

.drink-label {
    font-size: 10px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 500;
}

.drink-name {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.drink-description {
    font-size: 12px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.about-text p {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.certification-badges {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.badge-icon.organic {
    background-color: #7cb342;
}

.badge-icon.grade {
    background-color: #ffc107;
}

.badge-icon.stone {
    background-color: #795548;
}

.badge-icon.organic::before { content: "🌱"; }
.badge-icon.grade::before { content: "⭐"; }
.badge-icon.stone::before { content: "🪨"; }

.badge-text {
    font-size: 11px;
    color: var(--secondary-color);
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}

/* Info Section */
.info-section {
    margin-bottom: 60px;
}

.info-row {
    margin-bottom: 30px;
}

.info-label {
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info-value {
    font-size: 14px;
    color: var(--secondary-color);
    margin-left: 10px;
}

.location-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-details {
    margin-left: 10px;
}

.location-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.location-address {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.location-full {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.location-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 60px;
}

.reviews-list {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.review-bars {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 120px;
}

.review-bar {
    height: 20px;
    background-color: #8fb359;
    border-radius: 2px;
}

.review-bar:nth-child(1) { width: 100%; }
.review-bar:nth-child(2) { width: 80%; }
.review-bar:nth-child(3) { width: 90%; }

.review-items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content {
    flex-grow: 1;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.review-text {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    line-height: 1.4;
}

.review-rating {
    font-size: 14px;
    color: #ffc107;
}

/* Responsive Design for Venue Pages */
@media (max-width: 768px) {
    .venue-main {
        padding: 20px 0;
    }
    
    .venue-title-jp {
        font-size: 32px;
    }
    
    .venue-title-en {
        font-size: 16px;
    }
    
    .matcha-rating-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .rating-circle {
        width: 100px;
        height: 100px;
    }
    
    .rating-bars {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 150px);
        height: auto;
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .signature-drink {
        padding: 20px;
    }
    
    .certification-badges {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .reviews-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .review-bars {
        width: 100%;
        flex-direction: row;
        gap: 12px;
    }
    
    .review-bar {
        flex-grow: 1;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .venue-header {
        margin-bottom: 30px;
    }
    
    .venue-title-jp {
        font-size: 28px;
    }
    
    .menu-items, .signature-drink {
        padding: 20px;
    }
    
    .location-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}