/* ============================================
   Business Profile Template CSS
   ============================================ */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35 !important;
}

/* Business Header with Wallpaper */
.business-header {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-top: 76px;
    overflow: hidden;
}

.wallpaper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.business-info-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.business-logo-large {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.business-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.business-name {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.business-tagline {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
}

.business-rating {
    color: #ffa500;
    font-size: 20px;
}

.business-rating .rating-text {
    color: #666;
    font-size: 16px;
    margin-left: 10px;
}

/* Main Wrapper */
.main-wrapper {
    min-height: 100vh;
}

/* Section Styles */
.section-md {
    padding: 80px 0;
}

.section-md.bg-light {
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: #ff6b35;
    font-size: 40px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* About Section */
.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.business-highlights {
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.highlight-item p {
    color: #666;
    margin: 0;
}

/* Video Gallery */
.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: #ddd;
    overflow: hidden;
}

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #ff6b35;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 28px;
    margin-left: 4px;
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Photo Gallery */
.photo-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
}

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

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: white;
    font-size: 48px;
}

/* Reviews Section */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ffa726);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.reviewer-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.review-rating {
    color: #ffa500;
    font-size: 16px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 15px;
}

.review-date {
    color: #999;
    font-size: 13px;
}

/* Contact Section */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 28px;
    color: #ff6b35;
    min-width: 30px;
}

.contact-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffa726;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Footer */
.footer-section {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-section p {
    margin-bottom: 5px;
}

.powered-by {
    font-size: 14px;
    opacity: 0.8;
}

.powered-by a {
    color: #ff6b35;
    text-decoration: none;
}

.powered-by a:hover {
    color: #ffa726;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Navigation Mobile */
    .navbar {
        padding: 10px 0 !important;
    }

    .navbar-brand img {
        max-height: 35px !important;
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 8px 0 !important;
        font-size: 14px;
    }

    .navbar-nav .btn {
        font-size: 12px !important;
        padding: 6px 12px !important;
        margin: 5px 0 !important;
        width: 100%;
    }

    /* Business Header Mobile */
    .business-header {
        height: 350px !important;
        margin-top: 56px !important;
    }

    .business-info-container {
        padding: 30px 0 !important;
    }

    .business-name {
        font-size: 24px !important;
    }

    .business-tagline {
        font-size: 14px !important;
    }

    .business-rating {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .section-title i {
        font-size: 28px !important;
    }

    .section-md {
        padding: 40px 0 !important;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    .business-logo-large {
        width: 100px !important;
        height: 100px !important;
        padding: 15px !important;
    }

    /* About Content Mobile */
    .about-content p {
        font-size: 16px !important;
    }

    /* Highlights Mobile */
    .highlight-item {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }

    .highlight-item i {
        font-size: 36px !important;
    }

    .highlight-item h4 {
        font-size: 24px !important;
    }

    /* Video Cards Mobile */
    .video-card {
        margin-bottom: 20px !important;
    }

    .video-thumbnail {
        height: 180px !important;
    }

    .video-info {
        padding: 15px !important;
    }

    /* Photo Gallery Mobile */
    .photo-card {
        height: 200px !important;
        margin-bottom: 20px !important;
    }

    /* Review Cards Mobile */
    .review-card {
        margin-bottom: 20px !important;
        padding: 20px !important;
    }

    .review-header {
        flex-wrap: wrap;
    }

    /* Contact Section Mobile */
    .contact-info-card {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px !important;
        padding-bottom: 20px !important;
    }

    .contact-item i {
        font-size: 24px !important;
    }

    .map-container {
        margin-top: 20px !important;
    }

    #googleMap {
        height: 300px !important;
    }

    /* Social Links Mobile */
    .social-links {
        justify-content: center !important;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 575.98px) {
    .business-header {
        height: 300px !important;
    }

    .business-name {
        font-size: 20px !important;
    }

    .business-tagline {
        font-size: 12px !important;
    }

    .section-title {
        font-size: 20px !important;
    }

    .section-md {
        padding: 30px 0 !important;
    }

    .business-logo-large {
        width: 80px !important;
        height: 80px !important;
    }

    .highlight-item h4 {
        font-size: 20px !important;
    }

    .navbar-nav .btn i {
        display: none;
    }

    #googleMap {
        height: 250px !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-md {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}