/*
 Theme Name:   Letic Pro Child Theme
 Theme URI:    https://netic-digital.fr/
 Description:  Letic Pro Child Theme for Netic Digital - Elementor Compatible
 Author:       Netic Digital
 Author URI:   https://netic-digital.fr
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  letic-pro
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* Custom styles for Netic Digital */
body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #060F0C;
}

/* Typography standards */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

/* Color palette - Netic Digital branding */
:root {
    --letic-primary: #34D399;
    --letic-primary-dark: #059669;
    --letic-background: #060F0C;
    --letic-surface: #0a1a15;
    --letic-text: #ffffff;
    --letic-text-muted: #a0a0a0;
}

/* Elementor compatibility */
.elementor-section {
    margin: 0;
    background: transparent;
}

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

/* Elementor widget defaults */
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Syne', sans-serif !important;
}

.elementor-widget-text-editor {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* Custom utility classes */
.letic-section {
    padding: 80px 0;
    background: var(--letic-background);
}

.letic-section-full {
    padding: 0;
    background: var(--letic-background);
}

.letic-surface {
    background: var(--letic-surface);
    border-radius: 12px;
    padding: 40px;
}

.letic-btn-primary {
    background: var(--letic-primary);
    color: var(--letic-background);
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.letic-btn-primary:hover {
    background: var(--letic-primary-dark);
    transform: translateY(-2px);
}

/* Responsive design - Mobile First */
@media (max-width: 768px) {
    .letic-section {
        padding: 60px 20px;
    }
    
    .letic-surface {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .letic-btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .letic-section {
        padding: 70px 40px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (min-width: 1025px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}
