/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra with Cairo font and Arabic/RTL friendly defaults.
Author: OpenAI
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

:root {
    --astra-child-font: "Cairo", sans-serif;
}

body,
button,
input,
select,
textarea,
.ast-button,
.button,
.wp-block-button__link {
    font-family: var(--astra-child-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.site-description,
.main-header-menu,
.ast-builder-menu-1 .menu-item > .menu-link {
    font-family: var(--astra-child-font);
}

/* Better Arabic text rendering */
html[lang^="ar"] body {
    font-family: var(--astra-child-font);
    line-height: 1.85;
}



/* Contact Form 7 Custom */
.contact-form-custom {
    direction: rtl;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-custom .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-custom .form-field {
    width: 100%;
}

.contact-form-custom .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}


/* الحقول */
.contact-form-custom input[type="text"],
.contact-form-custom input[type="tel"],
.contact-form-custom textarea,
.wpcf7 input[type=file].wpcf7-form-control {

    width: 100% !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    border-radius: 5px !important;

    color: #fff !important;
    padding: 12px 18px !important;

    font-size: 15px;
    text-align: right;

    box-sizing: border-box;
    outline: none;
}


/* ارتفاع الحقول */
.contact-form-custom input[type="text"],
.contact-form-custom input[type="tel"] {
    height: 45px;
}


.contact-form-custom textarea {
    height: 165px !important;
    resize: none;
}


/* Placeholder */
.contact-form-custom input::placeholder,
.contact-form-custom textarea::placeholder {
    color: #aaa !important;
}


/* زر الإرسال */
.contact-form-custom input[type="submit"] {

    display: block;
    margin: 35px auto 0;

    width: 150px;
    height: 45px;

    background: transparent !important;
    border: 1px solid #d5a900 !important;
    border-radius: 10px !important;

    color: #fff !important;
    cursor: pointer;

    font-size: 15px;
}


.contact-form-custom input[type="submit"]:hover {
    background: #d5a900 !important;
    color: #000 !important;
}

/* إزالة المسافات الزائدة من Contact Form 7 */
.contact-form-custom p {
    margin: 0 0 15px !important;
}

.contact-form-custom .wpcf7-form-control-wrap {
    margin: 0 !important;
    padding: 0 !important;
}


/* ضبط المسافة بين الحقول */
.contact-form-custom .form-field.full {
    margin-bottom: 15px;
}


/* الصف الأول */
.contact-form-custom .form-row {
    margin-bottom: 0;
}

/* موبايل */
@media(max-width:768px){

    .contact-form-custom .form-row {
        display: block;
    }

    .contact-form-custom .form-field {
        margin-bottom:15px;
    }

}