/**
 * Custom Development Layer - Styles
 * 
 * Add all new custom CSS here instead of modifying style.css
 * This keeps your base theme clean and makes debugging easier.
 */

/* ========================================
   CUSTOM PROJECT STYLES
   Add your new CSS below this line
   ======================================== */

/* Example custom styling - remove this and add your own */
.custom-development-layer {
    /* Your custom styles here */
    background: var(--color-bg-primary);
    padding: 1rem;
    margin: 1rem 0;
}

/* Custom buttons */
.custom-button {
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Custom form elements */
.custom-form-field {
    margin-bottom: 1rem;
}

.custom-form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.custom-form-field input,
.custom-form-field textarea,
.custom-form-field select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border-medium);
    border-radius: 4px;
    font-family: var(--font-body);
}

/* Custom responsive utilities */
@media (max-width: 768px) {
    .custom-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .custom-hide-desktop {
        display: none !important;
    }
}

/* ========================================
   CUSTOM ANIMATIONS
   ======================================== */

.custom-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.custom-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   CUSTOM UTILITY CLASSES
   ======================================== */

.custom-text-center {
    text-align: center;
}

.custom-text-left {
    text-align: left;
}

.custom-text-right {
    text-align: right;
}

.custom-mb-1 { margin-bottom: 1rem; }
.custom-mb-2 { margin-bottom: 2rem; }
.custom-mb-3 { margin-bottom: 3rem; }

.custom-mt-1 { margin-top: 1rem; }
.custom-mt-2 { margin-top: 2rem; }
.custom-mt-3 { margin-top: 3rem; }

.custom-p-1 { padding: 1rem; }
.custom-p-2 { padding: 2rem; }
.custom-p-3 { padding: 3rem; }

/* ========================================
   END CUSTOM STYLES
   ======================================== */