/* WordPress Bible Verse Generator Styles */

.wbpvg-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Georgia', serif;
    position: relative;
    overflow: hidden;
}

.wbpvg-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

#wbpvg-verse-display {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

#wbpvg-verse-display:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.2);
}

#wbpvg-verse-display strong {
    color: #764ba2;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

#wbpvg-get-verse-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#wbpvg-get-verse-button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
}

#wbpvg-get-verse-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(238, 90, 36, 0.4);
}

/* Loading animation */
.wbpvg-loading {
    position: relative;
}

.wbpvg-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #764ba2;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .wbpvg-container {
        margin: 10px;
        padding: 20px;
    }
    
    #wbpvg-verse-display {
        font-size: 16px;
        padding: 20px;
        min-height: 100px;
    }
    
    #wbpvg-get-verse-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Additional decorative elements */
.wbpvg-container::after {
    content: '✝';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Verse text styling */
#wbpvg-verse-display .verse-text {
    font-style: italic;
    margin-top: 10px;
}

/* Error state styling */
.wbpvg-error {
    color: #e74c3c !important;
    font-weight: bold;
}

/* Success animation */
.wbpvg-success {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

