/*
Theme Name: Argyro Dimousis Psychology
Theme URI: https://dimousi.gr
Author: Your Name
Author URI: https://dimousi.gr
Description: A modern, elegant block theme for clinical psychologists and therapists
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: argyro-psychology
Tags: blog, health-and-wellness, one-column, custom-colors, custom-menu, editor-style, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments

Argyro Dimousis Psychology WordPress Theme, (C) 2025
Argyro Dimousis Psychology is distributed under the terms of the GNU GPL.
*/

body, html{
    scroll-behavior: smooth;
    overflow-x: clip;

}

 .wpforms-submit{
     background: var(--wp--preset--color--primary) !important;
     color: white;
     padding: 1rem 2rem!important;
     border: none;
     transition: .8s ease!important;
     border-radius: 30px!important;
            text-decoration: none;
            height: auto!important;
            box-sizing: border-box;
        }
        .wpforms-submit:hover{
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
        }
        .wpforms-container .wpforms-field .wpforms-field-row{
            max-width: none;
            width: 100%;
        }
        .wpforms-container .wpforms-field .wpforms-field-row input, div.wpforms-container-full .wpforms-form textarea {
            max-width: none!important;
            width: 100% !important
        }

        .wpforms-container input.wpforms-field-medium, .wpforms-container select.wpforms-field-medium, .wpforms-container .wpforms-field-row.wpforms-field-medium, .wp-core-ui div.wpforms-container input.wpforms-field-medium, .wp-core-ui div.wpforms-container select.wpforms-field-medium, .wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium{
            max-width: none!important;
            width: 100% !important;
        }
.wpforms-field-medium{
    width: Min(400px, 100%)!important;
}
.wp-block-button__link {
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
}

/* Profile Card Styles */
.profile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

/* Service Card Styles */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A0956B, #8B7355);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Stat Box Styles */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: #F7F5F3;
    border-radius: 15px;
}

/* Contact Item Styles */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F7F5F3;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #EDE7E0;
    transform: translateX(10px);
}

/* Form Styles */
.wp-block-contact-form-7 input,
.wp-block-contact-form-7 textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    font-family: inherit;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive */
@media (max-width: 890px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    .profile-card {
        transform: rotate(0deg);
    }
}

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
        }
        .wp-block-post-content > .entry-content{
            padding-left: 2rem;
            padding-right: 2rem;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0;
            transition: all 0.3s ease;
        }

        .site-header{
             padding-left: 2rem;
            padding-right: 2rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 300;
            color: #2c3e50;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            text-decoration: underline;
        }

        .cta-button {
            background: #A0956B;
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .cta-button:hover {
            background: #8B7355;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(160, 149, 107, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #F7F5F3 0%, #EDE7E0 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23E8E2DB" stroke-width="0.5"/><path d="M50 5 Q75 25 50 50 Q25 75 50 95 Q75 75 50 50 Q25 25 50 5" fill="none" stroke="%23DDD5CC" stroke-width="0.3"/></svg>') no-repeat center;
            background-size: 400px 400px;
            opacity: 0.5;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 200;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

       

        .btn-primary {
            background: #A0956B;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary {
            background: transparent;
            color: #2c3e50;
            padding: 1rem 2rem;
            border: 2px solid #A0956B;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: #8B7355;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
        }

        .btn-secondary:hover {
            background: #A0956B;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(160, 149, 107, 0.2);
        }

        .hero-image {
            text-align: center;
            position: relative;
        }

        .profile-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: rotate(3deg);
            transition: transform 0.3s ease;
        }

        .profile-card:hover {
            transform: rotate(0deg) translateY(-5px);
        }

        .profile-image {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #A0956B, #8B7355);
            border-radius: 50%;
            margin: 0 auto ;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

       
        .credentials {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .credential {
            background: #F7F5F3;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #6B5B4F;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: #FEFCFA;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #6B5B4F;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: #F7F5F3;
            border-radius: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: #A0956B;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #8B7355;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: linear-gradient(135deg, #F7F5F3 0%, #EDE7E0 100%);
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #A0956B, #8B7355);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            filter: grayscale(100%);
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .service-card p {
            color: #6B5B4F;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: #FEFCFA;
        }

        /* Blog Section */
        .blog {
            padding: 6rem 0;
            background: white;
        }

        .blog h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .blog-subtitle {
            text-align: center;
            color: #8B7355;
            font-size: 1.1rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .blog-category {
            background: #F7F5F3;
            color: #6B5B4F;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .blog-category:hover,
        .blog-category.active {
            background: #A0956B;
            color: white;
            transform: translateY(-2px);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #F7F5F3, #EDE7E0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #A0956B;
            position: relative;
            overflow: hidden;
        }

        .blog-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #A0956B10, #8B735510);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.8rem;
            color: #8B7355;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .blog-category-tag {
            background: #F7F5F3;
            color: #A0956B;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .blog-card h3 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: #2c3e50;
            line-height: 1.4;
        }

        .blog-card h3:hover {
            color: #A0956B;
            cursor: pointer;
        }

        .blog-excerpt {
            color: #6B5B4F;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .blog-read-more {
            color: #A0956B;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .blog-read-more:hover {
            color: #8B7355;
            transform: translateX(5px);
        }

        .blog-cta {
            text-align: center;
            padding: 3rem;
            background: linear-gradient(135deg, #F7F5F3 0%, #EDE7E0 100%);
            border-radius: 20px;
            margin-top: 2rem;
        }

        .blog-cta h3 {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .blog-cta p {
            color: #8B7355;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #F7F5F3;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: #EDE7E0;
            transform: translateX(10px);
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            width: 40px;
            text-align: center;
        }

        .contact-form {
            background: #F7F5F3;
            padding: 2.5rem;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 300;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: white;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
        }

       
        .form-group textarea {
            height: 120px;
        }

        /* Footer */
        footer {
            color: white;
            padding: 0;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-weight: 300;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #8B7355;
            padding-top: 1rem;
            font-size: 0.9rem;
            color: #A0956B;
        }

        /* Mobile Responsiveness */
        @media (max-width: 890px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-categories {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }

            .hero-buttons {
                justify-content: center;
            }
        }

        #home, #contact, #services, #about, #blog {

        }

        .pattern{
            background: radial-gradient(circle at 1px 1px, var(--wp--preset--color--primary) 1px, transparent 1px), radial-gradient(circle at 5px 5px,var(--wp--preset--color--primary) 1px, transparent 1px);
            background-repeat: repeat;
            background-size: 8px 8px;
            background-position: center;
        }
.half-image{

}
    

input[type="submit"] {
    background-color: var(--wp--preset--color--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    transition: .5s;
    width: 100%!important;
    border: none;
    font-size: 1.1rem;
    min-height: 55px;
    cursor: pointer;
}

input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
}

span.ninja-forms-req-symbol, .nf-error-msg{
    color: var(--wp--preset--color--secondary);
}

.nf-error .ninja-forms-field, .nf-error.listimage-wrap .nf-field-element ul{
    border: 1px solid var(--wp--preset--color--primary);
}

.wp-block-navigation__responsive-container.is-menu-open{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    overflow: inherit;
    align-items: center;
}


@media (max-width: 890px) {

    
    .has-modal-open .wp-block-navigation__responsive-container-content{
        
         position: absolute;
        width: 300px;
        right: -1rem;
        top: -1rem;
        align-items: center!important;
        padding: 2rem;
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 8px;
        transition: 1s .5s;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.19);
    }
}