/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/
 Description:  Custom child theme for Hello Elementor with centered header, mobile menu, and universal modal
 Author:       Developer
 Author URI:   https://example.com/
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-elementor-child
 Requires at least: 6.0
 Tested up to: 6.5
 Requires PHP: 7.4
*/

/* 
 * Child theme styles are loaded via functions.php
 * See css/ folder for modular stylesheets
 */


/* Firefox */
html {
    scrollbar-width: none;
}

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
    display: none;
}

.post_blog{
    padding-top: 10px;
    display: block;
}


/* ============================================
   GRADIENT HEADINGS
   ============================================ */
.gradient-heading {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(200, 145, 22, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-heading-short {
    background: linear-gradient(90deg, #1a1a1a 0%, #c9a227 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HEADING UNDERLINE
   ============================================ */

/* ============================================
   HEADING UNDERLINE
   ============================================ */
.heading-underline {
    display: inline-block !important;
    width: auto !important;
}

.heading-underline .elementor-heading-title {
    display: inline-block !important;
    position: relative;
    padding-bottom: 7px;
}

.heading-underline .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 2%px);
    height: 2px;
    background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 50%, #c9a227 100%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


.heading-underline_auto{
    display: inline-block !important;
    width: auto !important;
}

.heading-underline_auto .elementor-heading-title {
    display: inline-block !important;
    position: relative;
    padding-bottom: 7px;
}


.heading-underline_auto .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100%);
    height: 2px;
    background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 50%, #c9a227 100%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}



/* Полупрозрачный фон обтекает текст */
.heading-overlay {
    display: inline-block;
    position: relative;
    background: rgba(255, 253, 249, 0.7);
    padding: 30px 50px 30px 50px;
    width: -webkit-fit-content;
    width: fit-content;
}

.heading-overlay .elementor-heading-title {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    
    /* Градиент на текст */
    background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(200, 145, 22, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}




.heading-overlay .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background: #98805a;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


/* Заголовок с градиентом и подчёркиванием (без фона) */
.heading-gradient-underline {
    display: inline-block;
    position: relative;
    width: -webkit-fit-content;
    width: fit-content;
    align-self: flex-start;
}

.heading-gradient-underline .elementor-heading-title {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    
    /* Градиент на текст */
    background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(200, 145, 22, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.heading-gradient-underline .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -30px;
    right: -30px;
    height: 1px;
    background: #98805a;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


/* ============================================
   FLUENT FORMS GRADIENT BUTTON
   ============================================ */

/* ============================================
   FLUENT FORMS LUXURY STYLE
   ============================================ */

/* Все поля ввода */
.ff-el-input--content input[type="text"],
.ff-el-input--content input[type="email"],
.ff-el-input--content input[type="tel"],
.ff-el-input--content textarea,
.ff-el-input--content select {
    background: transparent !important;
    border: 1px solid #c9a227 !important;
    border-radius: 25px !important;
    padding: 12px 20px !important;
    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
}

/* Textarea */
.ff-el-input--content textarea {
    border-radius: 15px !important;
    min-height: 100px !important;
}

/* Select dropdown */
.ff-el-input--content select {
    appearance: none !important;
    -webkit-appearance: none !important;
}

/* Placeholder */
.ff-el-input--content input::placeholder,
.ff-el-input--content textarea::placeholder {
    color: #7a7a7a !important;
}

/* Focus */
.ff-el-input--content input:focus,
.ff-el-input--content textarea:focus,
.ff-el-input--content select:focus {
    outline: none !important;
    border-color: #a68819 !important;
    box-shadow: none !important;
}

/* Кнопка */
.ff-btn-gradient {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(200, 145, 22, 1)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    border: 1px solid #c9a227 !important;
    border-radius: 25px !important;
    padding: 12px 35px !important;
    cursor: pointer;
    
    /* Safari iOS fix */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.ff-btn-gradient:hover {
    border-color: #a68819 !important;
}




/* Кнопки прижаты к низу контейнеров */
.buttons-bottom .e-con.e-child {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.buttons-bottom .e-con.e-child .elementor-widget-button {
    margin-top: auto;
}


.ul_personaly li{
    padding-bottom: 10px;
    font-size: 20px;
}

.personal_title{
    font-size: 40px!important;
}

@media (max-width: 768px) {
    .heading-overlay .elementor-heading-title {
        white-space: normal;
    }
    
    .heading-overlay {
        padding: 20px 20px 20px 20px;
    }
    
    .ul_personaly{
    	font-size: 18px;
    	margin-top: 30px;
    }
    .personal_title{
        font-size: 26px!important;;
    }
}