/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1773159418
Updated: 2026-03-10 16:16:58

*/

/* ========================================
   LUXURY DESIGN SYSTEM - CUSTOM STYLES
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --luxury-charcoal: #1a1a1a;
    --luxury-pearl: #FDFDFD;
    --luxury-gold: #D4AF37;
    --luxury-grey: #666666;
    --luxury-light-grey: #f8f8f8;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Typography Enhancement */
body {
    font-family: var(--sans-font);
    color: var(--luxury-charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font);
    font-weight: 400;
    line-height: 1.3;
}

/* Elementor Button Enhancements */
.elementor-button {
    transition: var(--transition-smooth) !important;
    font-family: var(--sans-font) !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

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

/* Luxury Icon Styling */
.elementor-icon {
    transition: var(--transition-smooth);
}

.elementor-icon:hover {
    transform: scale(1.1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
.elementor-section {
    position: relative;
}

/* Responsive Typography */
@media (max-width: 1024px) {
    .elementor-widget-heading h1 {
        font-size: 48px !important;
    }

    .elementor-widget-heading h2 {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    .elementor-widget-heading h1 {
        font-size: 36px !important;
    }

    .elementor-widget-heading h2 {
        font-size: 28px !important;
    }

    .elementor-widget-heading h6 {
        font-size: 11px !important;
        letter-spacing: 3px !important;
    }
}

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

.elementor-widget {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Link Hover */
a {
    transition: var(--transition-smooth);
}

/* Professional Card Styling for Feature Sections */
.elementor-column:hover {
    transform: translateY(-5px);
    transition: var(--transition-smooth);
}

/* WooCommerce Product Enhancement */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    transition: var(--transition-smooth);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    transition: var(--transition-smooth);
}

.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Custom Gradient Text Effect */
.luxury-gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Professional Header Enhancement */
header {
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

/* Footer Styling */
footer {
    background-color: var(--luxury-charcoal);
    color: var(--luxury-pearl);
    padding: 60px 0 30px;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s ease-in-out;
}

img:not([src]) {
    opacity: 0;
}

/* Selection Color */
::selection {
    background-color: var(--luxury-gold);
    color: var(--luxury-charcoal);
}

::-moz-selection {
    background-color: var(--luxury-gold);
    color: var(--luxury-charcoal);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c19b2e;
}

/* Accessibility Improvements */
.elementor-button:focus,
a:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header, footer, .elementor-button {
        display: none;
    }
}

