/* Custom styles for the Shed Sign Generator */

:root {
    --primary-color: #D97706;    /* Amber-600 */
    --primary-hover: #B45309;   /* Amber-700 */
    --wood-brown: #8B4513;      /* Saddle Brown */
    --background: #F9FAFB;      /* Gray-50 */
    --card-bg: #FFFFFF;         /* White */
    --text-primary: #1F2937;    /* Gray-800 */
    --text-secondary: #6B7280;  /* Gray-500 */
    --border-color: #D1D5DB;    /* Gray-300 */
}

/* Custom focus styles */
.focus-amber:focus {
    outline: none;
    ring: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom button styles */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-primary:disabled {
    background-color: #9CA3AF;
    cursor: not-allowed;
}

/* Form styling enhancements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Card styling */
.card {
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

/* Icon styling */
.icon-amber {
    color: var(--primary-color);
}

.icon-wood {
    color: var(--wood-brown);
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card {
        padding: 1rem;
    }
}

/* Animation for success messages */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    animation: slideIn 0.3s ease-out;
}

/* Custom styling for file download indication */
.download-ready {
    background: linear-gradient(135deg, #10B981, #059669);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}
