/**
 * Frontend CSS for AI Roundup Writer
 */

/* Pinterest Pin Section Styles */
.pinterest-pin-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.pinterest-pin-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5em;
    font-weight: 600;
}

.pinterest-pin-section img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pinterest-pin-section img:hover {
    transform: scale(1.02);
}

.pinterest-pin-section p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Pinterest Pin Button Styles */
.pinterest-pin-button {
    display: inline-block;
    background: #e60023;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(230, 0, 35, 0.3);
}

.pinterest-pin-button:hover {
    background: #c41230;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 0, 35, 0.4);
}

.pinterest-pin-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(230, 0, 35, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pinterest-pin-section {
        margin: 30px 0;
        padding: 15px;
    }
    
    .pinterest-pin-section img {
        max-width: 250px;
    }
    
    .pinterest-pin-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pinterest-pin-section img {
        max-width: 200px;
    }
    
    .pinterest-pin-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}
