/* AI Website Builder - Frontend Styles */

/* Hero Section */
.aiwb-hero-section {
    position: relative;
    overflow: hidden;
}

.aiwb-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Image Blocks */
.aiwb-image-block {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aiwb-image-block img {
    transition: transform 0.3s ease;
}

.aiwb-image-block:hover img {
    transform: scale(1.02);
}

/* Content Sections */
section.aiwb-generated {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Boxes */
.feature-box {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .aiwb-hero-section {
        min-height: 300px !important;
    }
    
    section.aiwb-generated {
        padding: 20px 15px;
    }
    
    .feature-box {
        padding: 20px;
    }
}