﻿/* ========== BUSINESS HERO ========== */
.business-hero {
    background: linear-gradient(135deg, #1a2c3e 0%, #0f1e2c 100%);
    padding: 40px 0;
    color: white;
}

    .business-hero .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

.breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

    .breadcrumb a {
        color: white;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: #3aaa5c;
        }

.business-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.business-title h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.stars {
    color: #f4a261;
    font-size: 1rem;
}

.rating-text {
    background: #3aaa5c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.business-actions-hero {
    display: flex;
    gap: 12px;
}

.hero-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .hero-btn:hover {
        background: #3aaa5c;
    }

/* ========== MAIN CONTENT ========== */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Left Column */
.business-description h2, .business-features h2, .business-hours h2, .seo-content h2, .gallery-section h2, .video-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #1e2f3f;
}

    .business-description h2:first-child, .gallery-section h2:first-child, .video-section h2:first-child {
        margin-top: 0;
    }

.business-description p {
    color: #5a6a75;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* HIGHLIGHTED VIDEO SECTION - Prominent Display */
.video-section {
    background: linear-gradient(135deg, #0f1e2c, #1a2c3e);
    border-radius: 28px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

    .video-section h2 {
        color: white;
        margin-top: 0;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .video-section h2 i {
            color: #f05a5a;
            font-size: 1.5rem;
        }

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

    .video-wrapper video {
        width: 100%;
        border-radius: 20px;
        display: block;
    }

.video-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-top: 12px;
    text-align: center;
}

/* Gallery - Now below video */
.gallery-section {
    margin-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

    .gallery-img:hover {
        transform: scale(1.02);
        opacity: 0.9;
    }

/* Features & Hours */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
}

    .features-list li {
        background: #f0faf4;
        padding: 8px 16px;
        border-radius: 40px;
        font-size: 0.8rem;
        color: #3aaa5c;
    }

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

    .hours-table td {
        padding: 10px 0;
        border-bottom: 1px solid #e2e8ec;
        font-size: 0.85rem;
    }

        .hours-table td:last-child {
            text-align: right;
            color: #3aaa5c;
            font-weight: 600;
        }

/* Right Column - Business Info Card */
.info-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #e2e8ec;
    position: sticky;
    top: 100px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8ec;
}

    .info-item i {
        width: 40px;
        height: 40px;
        background: #f0faf4;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3aaa5c;
        font-size: 1.1rem;
    }

    .info-item h4 {
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .info-item p, .info-item a {
        color: #5a6a75;
        font-size: 0.8rem;
        text-decoration: none;
    }

        .info-item a:hover {
            color: #3aaa5c;
        }

.btn-book {
    width: 100%;
    background: linear-gradient(135deg, #3aaa5c, #2e8f4a);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(58,170,92,0.3);
    }

.social-share {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

    .social-share a {
        width: 40px;
        height: 40px;
        background: #f0faf4;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3aaa5c;
        transition: 0.3s;
    }

        .social-share a:hover {
            background: #3aaa5c;
            color: white;
        }

/* SEO Content Space */
.seo-content {
    grid-column: span 2;
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid #e2e8ec;
}

    .seo-content h2 {
        margin-top: 0;
    }

    .seo-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px;
        color: #1e2f3f;
    }

    .seo-content p {
        color: #5a6a75;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .seo-content ul {
        margin-left: 20px;
        color: #5a6a75;
        margin-bottom: 15px;
    }


