/* =====================================================
   Gutenberg Block Styles for Life Path School
   Colors: #DFA82A (Gold), #B43E8E (Purple), #35CB2C (Green)
   ===================================================== */

/* =====================================================
   CARD STYLES - For Group/Container Blocks
   ===================================================== */

/* Card Style 1: Gold Shadow */
.wp-block-group.is-style-card-gold {
    background: linear-gradient(135deg, rgba(223, 168, 42, 0.05) 0%, rgba(223, 168, 42, 0.02) 100%);
    border-left: 4px solid #DFA82A;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(223, 168, 42, 0.15);
    transition: all 0.3s ease;
}

.wp-block-group.is-style-card-gold:hover {
    box-shadow: 0 8px 25px rgba(223, 168, 42, 0.25);
    transform: translateY(-2px);
}

/* Card Style 2: Purple Shadow */
.wp-block-group.is-style-card-purple {
    background: linear-gradient(135deg, rgba(180, 62, 142, 0.05) 0%, rgba(180, 62, 142, 0.02) 100%);
    border-left: 4px solid #B43E8E;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(180, 62, 142, 0.15);
    transition: all 0.3s ease;
}

.wp-block-group.is-style-card-purple:hover {
    box-shadow: 0 8px 25px rgba(180, 62, 142, 0.25);
    transform: translateY(-2px);
}

/* =====================================================
   ORDERED LIST STYLES (OL)
   ===================================================== */

/* Ordered List Style 1: Gold Counter */
ol.is-style-ol-gold {
    list-style: none !important;
    list-style-type: none !important;
    counter-reset: custom-counter;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

ol.is-style-ol-gold li {
    counter-increment: custom-counter;
    margin-bottom: 16px;
    padding-left: 50px;
    position: relative;
    line-height: 1.6;
    list-style: none !important;
    list-style-type: none !important;
}

ol.is-style-ol-gold li:before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DFA82A 0%, #c98a1f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(223, 168, 42, 0.2);
}

/* Ordered List Style 2: Checked/Checkmark Type */
ol.is-style-ol-checked {
    list-style: none !important;
    list-style-type: none !important;
    counter-reset: checked-counter;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

ol.is-style-ol-checked li {
    counter-increment: checked-counter;
    margin-bottom: 14px;
    padding-left: 48px;
    position: relative;
    line-height: 1.6;
    list-style: none !important;
    list-style-type: none !important;
}

ol.is-style-ol-checked li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #35CB2C 0%, #2aa325 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(53, 203, 44, 0.2);
}

/* =====================================================
   UNORDERED LIST STYLES (UL)
   ===================================================== */

/* Unordered List Style 1: Purple Bullets */
ul.is-style-ul-purple {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

ul.is-style-ul-purple li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
    list-style: none !important;
    list-style-type: none !important;
}

ul.is-style-ul-purple li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #B43E8E;
    font-size: 16px;
    font-weight: bold;
}

/* Unordered List Style 2: Green Diamond Bullets */
ul.is-style-ul-green {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

ul.is-style-ul-green li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
    list-style: none !important;
    list-style-type: none !important;
}

ul.is-style-ul-green li:before {
    content: "◆";
    position: absolute;
    left: 2px;
    color: #35CB2C;
    font-size: 16px;
    font-weight: bold;
}

/* =====================================================
   TABLE STYLES
   ===================================================== */

/* Table Style: Modern with Gold/Purple Accent */
table.is-style-table-modern {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 24px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

table.is-style-table-modern thead {
    background: linear-gradient(135deg, #B43E8E 0%, #DFA82A 100%);
    color: white;
}

table.is-style-table-modern th {
    padding: 16px 20px;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table.is-style-table-modern tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

table.is-style-table-modern tbody tr:hover {
    background-color: rgba(223, 168, 42, 0.05);
}

table.is-style-table-modern tbody tr:last-child {
    border-bottom: none;
}

table.is-style-table-modern td {
    padding: 16px 20px;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

table.is-style-table-modern tbody tr:nth-child(even) {
    background-color: rgba(180, 62, 142, 0.03);
}

/* =====================================================
   ADDITIONAL UTILITY STYLES
   ===================================================== */

/* Separator with colors */
.wp-block-separator.is-style-separator-gold {
    border-top: 3px solid #DFA82A;
    opacity: 1;
}

.wp-block-separator.is-style-separator-purple {
    border-top: 3px solid #B43E8E;
    opacity: 1;
}

.wp-block-separator.is-style-separator-green {
    border-top: 3px solid #35CB2C;
    opacity: 1;
}

/* Quote/Callout Styles */
.wp-block-quote.is-style-quote-gold {
    border-left: 4px solid #DFA82A;
    padding: 20px 0 20px 20px;
    margin: 24px 0;
    color: #374151;
    font-style: italic;
}

.wp-block-quote.is-style-quote-purple {
    border-left: 4px solid #B43E8E;
    padding: 20px 0 20px 20px;
    margin: 24px 0;
    color: #374151;
    font-style: italic;
}

.wp-block-quote.is-style-quote-green {
    border-left: 4px solid #35CB2C;
    padding: 20px 0 20px 20px;
    margin: 24px 0;
    color: #374151;
    font-style: italic;
}
