/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1772094693
Updated: 2026-02-26 08:31:33

*/

/* Καθαρίζουμε τα περιττά margins που βάζει το WP */
.fasa-form p {
    margin: 0 !important;
    display: flex;
    gap: 40px;
    width: 100%;
}

.fasa-form br {
    display: none; /* Εξαφανίζουμε τα br που μπαίνουν αυτόματα */
}

/* Διάταξη των σειρών */
.form-row {
    margin-bottom: 30px;
    display: block;
    width: 100%;
}

/* Κάνουμε τα span του CF7 να συμπεριφέρονται ως στήλες */
.wpcf7-form-control-wrap {
    flex: 1;
    display: block;
}

/* Στυλ των Inputs (Γραμμή αντί για κουτί) */
.fasa-form input:not([type="submit"]) {
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #d1d1d1 !important;
    padding: 12px 0 !important;
    background: transparent !important;
    outline: none !important;
    font-size: 16px;
    color: #666;
    border-radius: 0 !important;
}

/* Focus εφέ: η γραμμή σκουραίνει όταν γράφεις */
.fasa-form input:focus {
    border-bottom: 1px solid #82d4f5 !important;
}

/* Το κουμπί ΑΠΟΣΤΟΛΗ */
.submit-row {
    margin-top: 20px;
}

.submit-row p {
    display: block; /* Εδώ δεν θέλουμε flex */
}

.fasa-form .wpcf7-submit {
    width: 100% !important;
    background-color: #82d4f5 !important;
    color: white !important;
    border: none !important;
    padding: 16px 0 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
	margin-top:40px;
}

.fasa-form .wpcf7-submit:hover {
    opacity: 0.9;
}

/* Κείμενο συγκατάθεσης */
.consent-text {
    font-size: 14px;
    color: #444;
    line-height: 20px;
    margin-top: 32px !important;
    display: block !important; /* Επαναφορά από το flex των άλλων p */
}

/* Mobile προσαρμογή */
@media (max-width: 600px) {
    .fasa-form p {
        flex-direction: column;
        gap: 20px;
    }
}

/* 1. Αρχική κατάσταση του Inner Container */
/* 1. Ρυθμίσεις για το Container (Parent) */
.hover-container {
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Κρατάει τα πάντα μέσα στα όρια */
}

/* 2. Διαχείριση Τίτλων & Εικόνων (Το "Λευκό" group) */
.hover-white-text, 
.img-white {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Αρχικά αόρατα */
    transition: opacity 0.4s ease-in-out !important;
    pointer-events: none; /* Δεν εμποδίζουν το κλικ */
    z-index: 2;
}

/* 3. Διαχείριση Κανονικού Περιεχομένου */
.hover-text, 
.img-normal {
    opacity: 1;
    transition: opacity 0.4s ease-in-out !important;
    position: relative;
    z-index: 1;
}

/* 4. ΤΟ HOVER EFFECT */

/* Εξαφανίζουμε τα κανονικά */
.hover-container:hover .hover-text,
.hover-container:hover .img-normal {
    opacity: 0;
}

/* Εμφανίζουμε τα λευκά */
.hover-container:hover .hover-white-text,
.hover-container:hover .img-white {
    opacity: 1;
}

/* 5. Το animation του Inner Container (που ήθελες) */
.inner-container {
    margin-left: -20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
}

.hover-container:hover .inner-container {
    padding-left: 10px;
    transform: translateX(10px); /* Προαιρετικά για πιο έντονη κίνηση */
}