/* Modern Vendor Detail Styles */

.vendor-hero {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vendor-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem 2rem;
    color: white;
}

.vendor-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vendor-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.vendor-hero-meta i {
    color: #54b3d6;
    margin-right: 0.5rem;
}

.vendor-content-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.section-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vendor-description {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    border: 1px solid #f0f0f0;
}

.btn-create-event {
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.btn-create-event:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
    color: white;
    text-decoration: none;
}

.btn-website {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #dee2e6;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-website:hover {
    background: #e9ecef;
    color: #1a1a1a;
    text-decoration: none;
}

.category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #e3f2fd;
    color: #0d47a1;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
}

.category-tag:hover {
    background: #bbdefb;
    color: #0d47a1;
    text-decoration: none;
}

@media (max-width: 768px) {
    .vendor-hero {
        height: 300px;
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .vendor-hero-title {
        font-size: 1.8rem;
    }
    
    .vendor-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 1rem;
    }
    
    .action-card {
        position: static;
        margin-top: 2rem;
    }
}
