.bf-hero-section {
    border-radius: 0;
    overflow: hidden;
}

.bf-hero-content {
    display: flex;
    position: relative;
}

.bf-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.bf-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bf-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.5;
    max-width: 600px;
}

.bf-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bf-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.bf-share-button:hover {
    background: #f5f5f5;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bf-share-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bf-share-button svg {
    width: 20px;
    height: 20px;
}

.bf-share-notification {
    position: absolute;
    background: #333333;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideUpFade 0.3s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .bf-hero-content {
        flex-direction: column;
    }

    .bf-hero-text {
        padding: 40px 30px;
        order: -1;
    }

    .bf-hero-image {
        order: 1;
    }

    .bf-hero-title {
        font-size: 36px;
    }

    .bf-hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .bf-hero-section {
        border-radius: 0;
    }

    .bf-hero-text {
        padding: 30px 20px;
    }

    .bf-hero-title {
        font-size: 28px;
        margin: 0 0 15px 0;
    }

    .bf-hero-subtitle {
        font-size: 16px;
        margin: 0 0 20px 0;
    }


    .bf-share-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .bf-hero-section {
        background: #1a1a1a;
    }

    .bf-hero-title {
        color: #ffffff;
    }

    .bf-hero-subtitle {
        color: #b0b0b0;
    }

    .bf-share-button {
        background: #2a2a2a;
        border-color: #444;
        color: #ffffff;
    }

    .bf-share-button:hover {
        background: #333;
        border-color: #666;
    }
}