/*
Theme Name: Texora - Custom Apparel
Theme URI: https://texora.store
Author: Texora
Author URI: https://texora.store
Description: Premium WordPress theme for custom apparel and printing businesses. Fully compatible with Elementor.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: texora
Tags: elementor, printing, apparel, custom, woocommerce, responsive
*/

/* ============================================
   TEXORA - CUSTOM APPAREL THEME
   Color Palette:
   - Primary Orange: #F97316
   - Orange Hover: #EA580C
   - Dark Gray: #1F2937
   - Medium Gray: #4B5563
   - Light Gray: #F3F4F6
   - White: #FFFFFF
   - Black: #000000
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
}

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

a {
    color: #F97316;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #EA580C;
}

/* Elementor Global Color Classes */
.texora-primary { color: #F97316 !important; }
.texora-primary-bg { background-color: #F97316 !important; }
.texora-dark { color: #1F2937 !important; }
.texora-dark-bg { background-color: #1F2937 !important; }
.texora-gray { color: #4B5563 !important; }
.texora-light-bg { background-color: #F3F4F6 !important; }
.texora-white-bg { background-color: #FFFFFF !important; }
.texora-black-bg { background-color: #111827 !important; }

/* Button Styles */
.texora-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.texora-btn-primary {
    background-color: #F97316;
    color: #FFFFFF;
}

.texora-btn-primary:hover {
    background-color: #EA580C;
    color: #FFFFFF;
}

.texora-btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.texora-btn-outline:hover {
    background-color: #FFFFFF;
    color: #1F2937;
}

/* Section Spacing */
.texora-section {
    padding: 80px 0;
}

.texora-section-lg {
    padding: 120px 0;
}

/* Container */
.texora-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Badge Style */
.texora-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #FFEDD5;
    color: #F97316;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Styles */
.texora-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.texora-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.texora-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.texora-icon-blue { background-color: #3B82F6; }
.texora-icon-purple { background-color: #A855F7; }
.texora-icon-green { background-color: #22C55E; }
.texora-icon-orange { background-color: #F97316; }

/* Tag/Pill Style */
.texora-tag {
    display: inline-block;
    padding: 12px 24px;
    background-color: #F3F4F6;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.texora-tag:hover {
    background-color: #F97316;
    color: #FFFFFF;
}

/* Process Step */
.texora-step {
    position: relative;
    text-align: center;
}

.texora-step-number {
    width: 40px;
    height: 40px;
    background-color: #F97316;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

/* Gallery Overlay */
.texora-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.texora-gallery-item:hover .texora-gallery-overlay {
    opacity: 1;
}

/* Form Styles */
.texora-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.texora-input:focus {
    outline: none;
    border-color: #F97316;
}

/* Navigation */
.texora-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.texora-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

/* Footer */
.texora-footer {
    background-color: #111827;
    color: #9CA3AF;
    padding: 80px 0 40px;
}

.texora-footer a {
    color: #9CA3AF;
}

.texora-footer a:hover {
    color: #F97316;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .texora-section {
        padding: 60px 0;
    }
    
    .texora-section-lg {
        padding: 80px 0;
    }
}

/* Animation Classes */
.texora-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.texora-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WooCommerce Compatibility */
.woocommerce .texora-btn-primary {
    background-color: #F97316;
}

.woocommerce .texora-btn-primary:hover {
    background-color: #EA580C;
}
