@charset "UTF-8";
/***!  /templates/jl_simpli_lite/css/business-page.css?0d97e8  !***/

/**
 * Restaurant Article Page Styles
 * For Eating Out, Bars & Clubs category articles (Cat ID 10 and 13)
 */

/* ==========================================================================
   Hero Section - 16:9 Aspect Ratio
   ========================================================================== */

.restaurant-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9; /* 16:9 landscape */
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16/9) {
    .restaurant-hero {
        height: 0;
        padding-bottom: 56.25%; /* 16:9 = 9/16 = 0.5625 */
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

/* Improved gradient overlay - from bottom to where tags end (about 120px) */
.hero-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 20%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.1) 80%, 
        transparent 100%);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

.hero-content {
    padding: 3rem 0 1rem;
    color: white;
    max-width: 800px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.restaurant-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.category-tag {
    background: rgba(220, 38, 38, 0.95); /* Red color for restaurants */
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-tag:hover {
    background: rgba(220, 38, 38, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: white;
    text-decoration: none;
    color: white;
}

.restaurant-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.restaurant-teaser {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.5;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   Content Grid
   ========================================================================== */

.restaurant-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* ==========================================================================
   Main Content - DARK TEXT
   ========================================================================== */

.restaurant-main-content {
    min-width: 0;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333333 !important; /* BLACK TEXT */
    margin-bottom: 2rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: #222222 !important;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-body p,
.article-body li,
.article-body td {
    color: #333333 !important;
}

/* ==========================================================================
   Sidebar Information Card
   ========================================================================== */

.restaurant-sidebar {
    position: relative;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 2rem;
}

.info-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dc2626; /* Red for restaurants */
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* No icon items - left aligned with title */
.info-item.no-icon {
    display: block;
    padding-left: 0;
    margin-left: 0;
}

.info-item.no-icon .info-content {
    width: 100%;
    padding-left: 0;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.info-content h4 {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-content p {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Address formatting - each line */
.address-lines {
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #4b5563;
}

.info-content a {
    color: #dc2626; /* Red for restaurants */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.info-content a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* ==========================================================================
   Share Buttons - WHITE TEXT on dark background
   ========================================================================== */

.share-section {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-section h4 {
    color: white !important; /* WHITE TEXT */
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    width: 100%;
    text-align: center;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.twitter:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
    opacity: 0.95;
}

.share-btn.copy {
    background: #4a5568;
}

.share-btn.copy:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.share-icon {
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

/* ==========================================================================
   Photo Gallery
   ========================================================================== */

.photo-gallery-section {
    margin: 3rem 0;
    width: 100%;
}

.photo-gallery-section h2 {
    color: #1f2937 !important;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Map Section - 100% Width and Height - NO BORDER TOP
   ========================================================================== */

.restaurant-map-section {
    margin: 3rem 0;
    padding-top: 0; /* Remove padding top */
    border-top: none !important; /* Remove border */
    width: 100%;
    max-width: 100%;
}

.restaurant-map-section.full-width-map {
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
}

.restaurant-map-section h2 {
    color: #1f2937 !important;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.map-wrapper {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    position: relative;
}

/* Override map plugin styles to fill container */
.map-wrapper .nrf-widget.openstreetmap,
.map-wrapper .map-full-width,
.map-wrapper iframe,
.map-wrapper .map-item {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border: none !important;
}

/* Force OpenStreetMap widget to fill */
.map-wrapper .nrf-widget.map-widget {
    width: 100% !important;
    height: 100% !important;
}

.map-wrapper .nrf-widget.map-widget .map-item {
    position: relative !important;
}

/* ==========================================================================
   Related Restaurants
   ========================================================================== */

.related-restaurants {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.related-restaurants h2 {
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.related-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.08);
}

.related-tags {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
}

.related-tag {
    background: rgba(220, 38, 38, 0.95); /* Red for restaurants */
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.related-content {
    padding: 1.25rem;
}

.related-content h3 {
    font-size: 1.15rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.related-description {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Lightbox Styles
   ========================================================================== */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #dc2626; /* Red for restaurants */
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-content {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 4px;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1200px) {
    .restaurant-hero h1 {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .restaurant-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .restaurant-hero h1 {
        font-size: 2.2rem;
    }
    
    .restaurant-teaser {
        font-size: 1.1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-wrapper {
        height: 350px;
        border-radius: 8px;
    }
    
    .hero-content {
        padding: 2rem 0 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .restaurant-map-section h2 {
        font-size: 1.6rem;
    }
    
    /* Adjust gradient overlay for mobile */
    .hero-overlay::before {
        height: 140px;
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.95) 0%, 
            rgba(0, 0, 0, 0.8) 20%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.2) 80%, 
            transparent 100%);
    }
}

@media (max-width: 576px) {
    .restaurant-hero h1 {
        font-size: 1.8rem;
    }
    
    .category-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .address-lines {
        font-size: 0.95rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .lightbox-nav {
        font-size: 1.2rem;
        padding: 6px 10px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .hero-overlay {
        position: static;
        background: none;
        color: black;
    }
    
    .restaurant-hero h1 {
        color: black;
    }
    
    .category-tag {
        background: #f3f4f6;
        color: black;
        border: 1px solid #d1d5db;
    }
    
    .share-section {
        display: none;
    }
    
    .info-card {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }
    
    .photo-gallery-section {
        display: none;
    }
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .article-body {
        color: #f3f4f6 !important;
    }
    
    .article-body h2,
    .article-body h3,
    .article-body h4 {
        color: #ffffff !important;
    }
    
    .article-body p,
    .article-body li,
    .article-body td {
        color: #e5e7eb !important;
    }
    
    .info-card {
        background: #1f2937;
        border-color: #374151;
    }
    
    .info-card h3,
    .info-content h4 {
        color: #f3f4f6;
    }
    
    .info-content p {
        color: #d1d5db;
    }
    
    .address-lines {
        color: #d1d5db;
    }
    
    .related-card {
        background: #1f2937;
        border: 1px solid #374151;
    }
    
    .related-content h3 {
        color: #f3f4f6;
    }
    
    .related-description {
        color: #d1d5db;
    }
    
    .restaurant-map-section h2 {
        color: #f3f4f6;
    }
    
    .related-restaurants {
        border-top-color: #374151;
    }
    
    .photo-gallery-section h2 {
        color: #f3f4f6;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.related-link:focus,
.category-tag:focus,
.share-btn:focus,
.info-content a:focus,
.gallery-link:focus {
    outline: 3px solid #dc2626; /* Red for restaurants */
    outline-offset: 2px;
    border-radius: 4px;
}

.share-btn:focus {
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .related-card,
    .related-image img,
    .share-btn,
    .category-tag,
    .gallery-item,
    .gallery-item img,
    .gallery-overlay {
        transition: none;
    }
    
    .related-card:hover {
        transform: none;
    }
    
    .related-card:hover .related-image img {
        transform: none;
    }
    
    .share-btn:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}

/* Container adjustments for full width map */
.restaurant-article .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Update this section in restaurant-page.css */
.article-body,
.article-body p,
.article-body li,
.article-body td,
.article-body div,
.article-body span {
    color: #000000 !important; /* Pure Black */
    font-weight: 400;
    line-height: 1.6;
}

/* If you want it black even in "Dark Mode", remove or update the media query: */
@media (prefers-color-scheme: dark) {
    .article-body, .article-body p, .article-body li {
        color: #000000 !important; 
    }
}
