/*
Theme Name: DJ Starter Child
Theme URI: https://your-site.com/
Description: Minimal Hello Elementor child theme with custom widgets
Author: Your Team
Author URI: https://your-site.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: dj-starter
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* ========================================
   GLOBAL BUTTON STYLES
   ======================================== */
.dj-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dj-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE GRID UTILITIES
   ======================================== */
.dj-grid {
    display: grid;
    gap: 40px;
}

.dj-grid-2 { grid-template-columns: 1fr 1fr; }
.dj-grid-3 { grid-template-columns: repeat(3, 1fr); }
.dj-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .dj-grid-2,
    .dj-grid-3,
    .dj-grid-4 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   COMMON WIDGET STYLES
   ======================================== */
.dj-section {
    padding: 80px 16px;
}

.dj-container {
    max-width: 1280px;
    margin: 0 auto;
}

.dj-heading-part {
    margin-bottom: 24px;
}

.dj-upperheading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dj-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.dj-description {
    font-size: 16px;
    line-height: 1.6;
}

.dj-description p {
    margin: 0 0 16px 0;
}

.dj-description p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CHECKLIST STYLES
   ======================================== */
.dj-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dj-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dj-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .dj-section {
        padding: 60px 16px;
    }
    
    .dj-heading {
        font-size: 28px;
    }
    
    .dj-btn {
        width: 100%;
        justify-content: center;
    }
}
