/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

body {
    background-color: #0c0f18;
}

/* Grid-based layout for Contact Form 7 */
.wpcf7 {
    width: 100% !important;
}

.wpcf7-form {
    width: 100% !important;
}

/* Form row grid setup */
.wpcf7 .form-row {
    display: grid !important;
    gap: 15px !important;
    margin-bottom: 5px !important;
    width: 100% !important;
}

/* Two column grid for regular rows (name/email and phone/company) */
.wpcf7 .form-row:not(.full-width) {
    grid-template-columns: 1fr 1fr !important;
}

/* Single column grid for full-width elements (textarea and button) */
.wpcf7 .form-row.full-width {
    grid-template-columns: 1fr !important;
    width: 100% !important;
}

/* Ensure form columns take full width of their grid area */
.wpcf7 .form-col {
    width: 100% !important;
    min-width: 0 !important;
}

/* Input field styling */
body .wpcf7 input[type="text"],
body .wpcf7 input[type="email"],
body .wpcf7 input[type="tel"],
body .wpcf7 textarea {
    background: transparent !important;
    border: 1px solid #f2a60d !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color: #333 !important;
    min-width: 0 !important;
}

/* Force textarea to be full width */
body .wpcf7 .form-row.full-width textarea {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Focus states */
body .wpcf7 input[type="text"]:focus,
body .wpcf7 input[type="email"]:focus,
body .wpcf7 input[type="tel"]:focus,
body .wpcf7 textarea:focus {
    border-color: #f2a60d !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(198, 147, 92, 0.3) !important;
}

/* Placeholder styling */
body .wpcf7 input::placeholder,
body .wpcf7 textarea::placeholder {
    color: #676d7a !important;
    opacity: 1 !important;
}

body .wpcf7 input::-webkit-input-placeholder,
body .wpcf7 textarea::-webkit-input-placeholder {
    color: #676d7a !important;
    opacity: 1 !important;
}

body .wpcf7 input::-moz-placeholder,
body .wpcf7 textarea::-moz-placeholder {
    color: #676d7a !important;
    opacity: 1 !important;
}

body .wpcf7 input:-ms-input-placeholder,
body .wpcf7 textarea:-ms-input-placeholder {
    color: #676d7a !important;
    opacity: 1 !important;
}

/* SUBMIT BUTTON - FULL WIDTH STYLING */
body .wpcf7 input[type="submit"],
body .wpcf7 .wpcf7-submit {
    background-color: #f2a60d !important;
    color: #0c0f18 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    padding: 12px 30px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

/* Additional submit button full width targeting */
body .wpcf7 .form-row.full-width input[type="submit"],
body .wpcf7 .form-row.full-width .wpcf7-submit {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    box-sizing: border-box !important;
}

/* Submit button hover and active states */
body .wpcf7 input[type="submit"]:hover,
body .wpcf7 .wpcf7-submit:hover {
    background-color: #d9940b !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(242, 166, 13, 0.3) !important;
}

body .wpcf7 input[type="submit"]:active,
body .wpcf7 .wpcf7-submit:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(242, 166, 13, 0.2) !important;
}

/* Override any theme or plugin constraints on submit button */
.wpcf7 .form-row .form-col .wpcf7-submit {
    width: 100% !important;
}

.wpcf7-form .wpcf7-submit {
    width: 100% !important;
}

/* Responsive design - single column on mobile */
@media (max-width: 768px) {
    .wpcf7 .form-row:not(.full-width) {
        grid-template-columns: 1fr !important;
    }
}

/* Remove borders from all JKit icon box elements */
.jkit-icon-box-wrapper {
    border: none !important;
}

.jkit-icon-box-wrapper .icon-box {
    border: none !important;
}

.jeg-elementor-kit.jkit-icon-box {
    border: none !important;
}

.jeg-elementor-kit.jkit-icon-box .icon-box {
    border: none !important;
}



