/*
Theme Name: Plando - Kleral Systems
Theme URI: https://plando.gr
Author: Plando Team
Author URI: https://plando.gr
Description: Επαγγελματικό WordPress theme για χονδρική πώληση προϊόντων κομμωτηρίου. Αποκλειστικός αντιπρόσωπος Kleral System στην Ελλάδα. Optimized για Elementor.
Version: 1.0.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: plando
Tags: business, b2b, wholesale, elementor, professional, hair-salon, beauty, greek

Plando Theme, Copyright 2026
Plando Theme is distributed under the terms of the GNU GPL.
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

:root {
    --plando-primary: #2c3e50;
    --plando-secondary: #c9a961;
    --plando-accent: #8e44ad;
    --plando-dark: #1a1a1a;
    --plando-light: #f8f9fa;
    --plando-white: #ffffff;
    --plando-text: #333333;
    --plando-border: #e0e0e0;
    --plando-success: #27ae60;
}

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

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--plando-text);
    background-color: var(--plando-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--plando-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--plando-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--plando-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background: var(--plando-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-width: 200px;
}

.site-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--plando-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-logo span {
    color: var(--plando-secondary);
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.main-navigation a:hover {
    color: var(--plando-secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--plando-primary);
    color: var(--plando-primary);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.menu-toggle:hover {
    background: var(--plando-primary);
    color: var(--plando-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, var(--plando-primary) 0%, var(--plando-accent) 100%);
    color: var(--plando-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--plando-white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-section .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--plando-secondary);
    color: var(--plando-white);
}

.btn-primary:hover {
    background: #b8954e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--plando-white);
    border: 2px solid var(--plando-white);
}

.btn-secondary:hover {
    background: var(--plando-white);
    color: var(--plando-primary);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
    background: var(--plando-light);
    padding: 2rem 0;
    border-bottom: 1px solid var(--plando-border);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
}

.trust-item-icon {
    font-size: 2.5rem;
    color: var(--plando-secondary);
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--plando-primary);
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--plando-secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Product Categories Grid
   ========================================================================== */

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

.category-card {
    background: var(--plando-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-card.featured {
    border: 3px solid var(--plando-secondary);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--plando-secondary);
    color: var(--plando-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.category-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    margin-bottom: 0.5rem;
    color: var(--plando-primary);
}

.category-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-link {
    color: var(--plando-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.category-link:hover {
    color: var(--plando-secondary);
    gap: 0.8rem;
}

/* ==========================================================================
   Two Column Layouts
   ========================================================================== */

.two-column-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.column-card {
    background: var(--plando-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--plando-secondary);
    transition: transform 0.3s ease;
}

.column-card:hover {
    transform: translateX(5px);
}

.column-card h3 {
    color: var(--plando-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.column-icon {
    font-size: 2rem;
}

.column-card p {
    color: #555;
    line-height: 1.7;
}

.column-highlight {
    background: var(--plando-white);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border: 1px solid var(--plando-border);
}

.column-highlight strong {
    color: var(--plando-primary);
}

/* ==========================================================================
   B2B Notice Section
   ========================================================================== */

.b2b-notice {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.b2b-notice h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--plando-primary);
}

.b2b-notice p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    color: #555;
}

.b2b-notice strong {
    color: var(--plando-primary);
    font-weight: 700;
}

.requirements-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.requirements-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--plando-success);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ==========================================================================
   Benefits Grid
   ========================================================================== */

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

.benefit-box {
    background: var(--plando-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--plando-secondary);
    margin-bottom: 1rem;
}

.benefit-box h4 {
    color: var(--plando-primary);
    margin-bottom: 0.75rem;
}

.benefit-box p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.contact-section {
    background: var(--plando-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--plando-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--plando-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--plando-border);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plando-primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
}

.contact-info {
    background: var(--plando-primary);
    color: var(--plando-white);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--plando-white);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-item-icon {
    font-size: 1.5rem;
    color: var(--plando-secondary);
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--plando-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    margin: 0;
    opacity: 0.9;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--plando-dark);
    color: #ccc;
    padding: 3rem 0 1rem;
}

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

.footer-column h3 {
    color: var(--plando-white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--plando-secondary);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plando-white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--plando-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--plando-secondary);
    color: var(--plando-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--plando-white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--plando-border);
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */

.elementor-widget-container {
    margin-bottom: 0;
}

.elementor-section {
    position: relative;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

/* Ensure Elementor can override when needed */
.elementor-location-header {
    position: relative;
    z-index: 1001;
}
