/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* Layout for Contact Form 7 */
.cf7-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between the two inputs */
    margin-bottom: 10px;
}

.cf7-col {
    flex: 100%;
    /* Default to full width on mobile */
}

/* Tablet and PC screens (Screen width > 768px) */
@media screen and (min-width: 768px) {
    .cf7-col {
        flex: 1;
        /* Makes columns share equal width */
    }
}

/* Minimal White Form Styles */
.form-white-minimal input[type="text"],
.form-white-minimal input[type="email"],
.form-white-minimal input[type="tel"],
.form-white-minimal textarea,
.form-white-minimal select {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 12px 0 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    font-size: 1rem !important;
    /* Ensure readable font size */
}

/* Fix for Select Options (ensure readable on white system dropdowns) */
.form-white-minimal select option {
    color: #000;
    background: #fff;
}

.form-white-minimal input:focus,
.form-white-minimal textarea:focus {
    border-bottom-color: #fff !important;
    outline: none !important;
}

.form-white-minimal ::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-white-minimal label {
    font-size: 0;
    /* Hide label text */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    display: block;
}

/* Submit Button */
.form-white-minimal input[type="submit"] {
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 20px;
}