/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


html {
    overflow-x:hidden;
}

.orange {
  color:#D95B44;
}

.custom-contact-form {
    max-width: 1000px;
    margin: 0 auto;
}

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

.custom-contact-form .form-group {
    flex: 1;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #1d4d7a;
    background: transparent;
    padding: 10px 0;
    font-size: 18px;
    color: #1d4d7a;
    outline: none;
    box-shadow: none;
}

.custom-contact-form textarea {
    height: 120px;
    resize: none;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: #1d4d7a;
    opacity: 1;
}

.custom-contact-form .upload-row {
    margin-top: -10px;
}

.custom-contact-form .upload-label {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    color: #1d4d7a;
}

.custom-contact-form input[type="file"] {
    color: #1d4d7a;
    font-size: 15px;
}

.custom-contact-form .form-submit {
    text-align: center;
    margin-top: 40px;
}

.custom-contact-form input[type="submit"] {
    background: transparent;
    border: 2px solid #ef7b6c;
    color: #1d4d7a;
    padding: 10px 28px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-contact-form input[type="submit"]:hover {
    background: #ef7b6c;
    color: #fff;
}


.drag-section{
    position: relative;
    /*overflow: hidden;*/
    cursor: none; /* κρύβει το default cursor */
}

.drag-cursor{
    position: fixed;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d96b45;
    color: #fff;
    
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;

    pointer-events: none;
    z-index: 9999;

    transform: translate(-50%, -50%);
    
    opacity: 0;
    transition: opacity .2s ease;
}


.menu{
    list-style:none;
    margin:0;
    padding:0;
}

.menu > li{
    position:relative;
    margin-bottom:18px;
}

.menu > li > a{
    color:#fff;
    text-decoration:none;
    font-size:64px;
    font-weight:800;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.menu > li > a:hover{
    color:#ff6434;
}

.has-submenu:hover > a{
    color:#ff6434;
}

.arrow{
    font-size:54px;
    transition:0.3s;
    display:inline-block;
}

.has-submenu:hover .arrow{
    transform:rotate(180deg);
}

/* SUBMENU */
.sub-menu{
    list-style:none;

    max-height:0;
    overflow:hidden;

    opacity:0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;

    margin-top:10px;
    margin-left:15px;
    padding-left:0;
}

/* SHOW SUBMENU */
.has-submenu:hover .sub-menu{
    max-height:500px;
    opacity:1;
}

.sub-menu li{
    margin-bottom:10px;
}

.sub-menu a{
    color:#fff;
    text-decoration:none;
    font-size:34px;
    font-weight:400;
    transition:0.3s;
}

.sub-menu a:hover{
    color:#ff6434;
}


@media (max-width: 768px) {

    .custom-contact-form .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .arrow{
        font-size:44px;
    }

    .sub-menu a{
        font-size:44px;
    }

    .menu > li > a{
        font-size:48px;
    }

}