/* Idea Generator Page Styles */

/* Main Layout */
.idea-generator-main {
    padding: 40px 0 0;
}

/* Hero Section */
.generator-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 0;
}

.generator-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

/* Ideas Section */
.ideas-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Idea Cards */
.idea-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.idea-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Idea Header */
.idea-header {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.idea-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idea-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    background: #f8f9fa;
}

.idea-card:hover .idea-img {
    transform: scale(1.05);
}

.idea-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.idea-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Idea Content */
.idea-content {
    padding: 30px;
}

.idea-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.idea-text {
    color: #555;
    line-height: 1.7;
}

.idea-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.idea-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #667eea;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-submit-idea,
.btn-learn-more {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-submit-idea {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit-idea:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-learn-more {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.btn-learn-more:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-content a {
    color: #667eea;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .idea-header {
        height: 200px;
    }
    
    .idea-content {
        padding: 20px;
    }
    
    .idea-title {
        font-size: 1.5rem;
    }
    
    .idea-text p {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-submit-idea,
    .btn-learn-more {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .generator-hero {
        padding: 40px 0;
    }
    
    .ideas-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .idea-number {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
