.blogs-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.blogs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.blogs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.blogs-hero-title {
    font-family: 'Gameria', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    animation: slideDown 0.8s ease-out forwards;
}

.blogs-hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.blogs-hero-search {
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.blogs-hero-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.blogs-hero-search-wrapper:hover,
.blogs-hero-search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.blogs-hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    outline: none;
}

.blogs-hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blogs-hero-search-button {
    background: linear-gradient(135deg, #00ff00 0%, #008000 100%);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blogs-hero-search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blogs-hero {
        min-height: 300px;
        padding: 3rem 1rem;
    }

    .blogs-hero-title {
        font-size: 2.5rem;
    }

    .blogs-hero-subtitle {
        font-size: 1rem;
    }

    .blogs-hero-search-wrapper {
        padding: 0.25rem;
    }

    .blogs-hero-search-input {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .blogs-hero-search-button {
        width: 40px;
        height: 40px;
    }
}
