/* Show Tab 6 - Venue - Comprehensive Styles */
/* Updated: 2025-11-18 */
/* Version: 1.0 */

/* =================================
   Tab Content Wrapper
   ================================= */
.tab-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.tab-section {
    margin-bottom: 2rem;
}

/* =================================
   Section Titles
   ================================= */
.tab-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #7c3aed;
    line-height: 1.3;
}

.tab-subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* =================================
   Venue Intro
   ================================= */
.venue-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f9fafb;
    border-left: 4px solid #7c3aed;
    border-radius: 0.375rem;
}

/* =================================
   Venue Details Grid
   ================================= */
.venue-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .venue-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =================================
   Venue Detail Items
   ================================= */
.venue-detail-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.venue-detail-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.1),
                0 2px 4px -1px rgba(124, 58, 237, 0.06);
    transform: translateY(-2px);
}

.venue-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #7c3aed;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top: 0.125rem;
}

.venue-detail-item > div {
    flex: 1;
}

.venue-detail-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.venue-detail-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    margin: 0;
}

/* =================================
   Accessibility Section
   ================================= */
.accessibility-section {
    padding: 1.5rem;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.accessibility-info {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 1rem;
}

.access-note {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.access-note strong {
    color: #059669;
    font-weight: 600;
}

.access-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s ease;
}

.access-link:hover {
    color: #047857;
    text-decoration: underline;
}

/* =================================
   Venue Page Link (CTA)
   ================================= */
.venue-page-link {
    margin: 2rem 0;
    text-align: center;
}

.venue-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3),
                0 2px 4px -1px rgba(124, 58, 237, 0.2);
}

.venue-link-button:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.4),
                0 4px 6px -2px rgba(124, 58, 237, 0.3);
}

.venue-link-button:active {
    transform: translateY(0);
}

.venue-link-button svg {
    margin-right: 0.5rem;
}

/* =================================
   Travel Tip Box
   ================================= */
.travel-tip {
    padding: 1rem 1.25rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0.375rem;
    margin-top: 2rem;
}

.travel-tip p {
    font-size: 0.875rem;
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

.travel-tip strong {
    color: #92400e;
    font-weight: 600;
}

/* =================================
   Responsive Adjustments
   ================================= */
@media (max-width: 767px) {
    .tab-section-title {
        font-size: 1.5rem;
    }
    
    .tab-subsection-title {
        font-size: 1.25rem;
    }
    
    .venue-intro {
        font-size: 0.9375rem;
        padding: 0.875rem;
    }
    
    .venue-detail-item {
        padding: 1rem;
    }
    
    .venue-details-grid {
        gap: 1rem;
    }
    
    .venue-link-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .accessibility-section {
        padding: 1.25rem;
    }
}

/* =================================
   Print Styles
   ================================= */
@media print {
    .venue-link-button {
        background: #7c3aed;
        color: #ffffff;
        box-shadow: none;
    }
    
    .venue-detail-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .travel-tip {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* =================================
   Dark Mode Support (Optional)
   ================================= */
@media (prefers-color-scheme: dark) {
    .tab-section-title {
        color: #f9fafb;
    }
    
    .tab-subsection-title {
        color: #f3f4f6;
    }
    
    .venue-intro {
        background: #1f2937;
        color: #d1d5db;
    }
    
    .venue-detail-item {
        background: #1f2937;
        border-color: #374151;
        color: #e5e7eb;
    }
    
    .venue-detail-item:hover {
        border-color: #8b5cf6;
        background: #2d3748;
    }
    
    .venue-detail-title {
        color: #9ca3af;
    }
    
    .venue-detail-content {
        color: #e5e7eb;
    }
    
    .accessibility-section {
        background: #064e3b;
        border-color: #065f46;
    }
    
    .accessibility-info {
        color: #d1fae5;
    }
    
    .access-note {
        color: #a7f3d0;
    }
    
    .travel-tip {
        background: #78350f;
        border-color: #f59e0b;
    }
    
    .travel-tip p {
        color: #fef3c7;
    }
}

/* =================================
   Accessibility Enhancements
   ================================= */
.venue-link-button:focus,
.access-link:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .venue-detail-item,
    .venue-link-button,
    .venue-icon,
    .access-link {
        transition: none;
    }
    
    .venue-detail-item:hover {
        transform: none;
    }
    
    .venue-link-button:hover {
        transform: none;
    }
}

