/*
Theme Name: WooMyData
Theme URI: https://woomydata.gr
Author: BytePlugs
Author URI: https://byteplugs.com
Description: Modern e-commerce theme with animated hero, beautiful product displays, and Elementor support. Features horizontal product cards, glassmorphism navigation, and orange gradient accents.
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: woomydata
Tags: e-commerce, elementor, woocommerce, modern, responsive, custom-colors

WooMyData Theme, Copyright 2025 BytePlugs
WooMyData is distributed under the terms of the GNU GPL
*/

/* 
=================================================================
  Core Theme Styles
=================================================================
*/

:root {
    --primary: #e89512;
    --primary-light: #f0a832;
    --primary-dark: #d18510;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn,
.wp-block-button__link,
.woocommerce button.button,
.woocommerce a.button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn:hover,
.wp-block-button__link:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 149, 18, 0.4);
}

/* Container */
.container,
.wp-block-group__inner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Glassmorphism Navigation - Sticky Header */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Floating Hero Card Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

/* Slide In Animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0.75rem 1rem;
    }
    
    section {
        padding: 60px 0;
    }
}
