/*
Theme Name: Path3 Child
Description: Child theme of Twenty Twenty-Five
Author: Your Name
Template: twentytwentyfive
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../twentytwentyfive/style.css");

/* Custom styles for child theme */

/* Ensure bold text is properly bold */
strong, b {
    font-weight: 700;
}

/* Fluent Forms Modern Styling */

/* Form Container */
.fluentform {
    font-family: var(--wp--preset--font-family--crimson-pro, 'Lora', serif);
}

/* Form Labels */
.ff-el-input--label label {
    font-family: var(--wp--preset--font-family--cal-sans, 'Poppins', sans-serif);
    font-weight: 400;
    margin-bottom: 8px;
    font-size: 1.15rem;
    display: block;
}

/* Text Inputs, Email, Textarea */
.ff-el-form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--wp--preset--font-family--crimson-pro, 'Lora', serif);
    font-size: 1rem;
    color: #472C00;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.ff-el-form-control:focus {
    outline: none;
    border-color: #569D23;
    box-shadow: 0 0 0 3px rgba(93, 123, 55, 0.1);
    background-color: #FCF6E9;
}

.ff-el-form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Form Groups */
.ff-el-group {
    margin-bottom: 24px;
}

/* Name Field Container */
.ff-name-field-wrapper .ff-t-container {
    display: flex;
    gap: 16px;
}

.ff-name-field-wrapper .ff-t-cell {
    flex: 1;
}

/* Checkbox Styling */
.ff-el-form-check {
    margin-bottom: 12px;
}

.ff-el-form-check-label {
    display: flex;
    align-items: center;
    font-family: var(--wp--preset--font-family--crimson-pro, 'Lora', serif);
    color: #472C00;
    cursor: pointer;
    padding: 8px 0;
    font-size: 1rem;
}

.ff-el-form-check-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    margin-right: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ff-el-form-check-checkbox:checked {
    background-color: #569D23;
    border-color: #75d232;
}

.ff-el-form-check-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    background: #569D23;
    width: 20px;
    height: 12px;
    text-align: center;
    padding: 4px 0;
}

.ff-el-form-check-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 123, 55, 0.1);
}

.ff-el-form-check-label span {
    display: inline-block;
    margin-left: 8px;
}

/* Submit Button */
.ff-btn-submit {
    background: #5D7B37;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-family: var(--wp--preset--font-family--crimson-pro, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    border: 2px solid white;
}


.ff-btn-submit:active {
    transform: translateY(0);
}

/* Error Styling */
.ff-el-is-error .ff-el-form-control {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.ff-el-is-error .ff-el-form-control:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form Container Padding */
.fluentform_wrapper_1 {
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fluentform_wrapper_1 {
        padding: 20px;
        margin: 16px;
    }

    .ff-name-field-wrapper .ff-t-container {
        flex-direction: column;
        gap: 0;
    }

    .ff-el-form-control {
        padding: 14px 16px;
    }

    .ff-btn-submit {
        width: 100%;
        padding: 16px;
    }
}

/* Add your custom CSS here */