/**
 * Indian Fonts & Typography
 * Google Fonts with Devanagari support and elegant serif fonts
 */

/* Import Google Fonts with Devanagari Support */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Mukta:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Fonts */
:root {
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-luxury: 'Cinzel', serif;
    --font-devanagari: 'Noto Sans Devanagari', sans-serif;
    --font-hindi: 'Mukta', sans-serif;
}

/* Body & Base Typography */
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Headings - Elegant Indian Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--royal-maroon);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

/* Special Heading Styles */
.luxury-heading {
    font-family: var(--font-luxury);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--golden);
}

.elegant-heading {
    font-family: var(--font-elegant);
    font-style: italic;
    font-weight: 300;
    color: var(--royal-maroon);
}

/* Hindi/Devanagari Text */
.hindi-text,
.devanagari-text {
    font-family: var(--font-devanagari);
}

.hindi-heading {
    font-family: var(--font-hindi);
    font-weight: 700;
}

/* Product Titles */
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    color: var(--royal-maroon);
}

/* Category Names */
.product-categories li a,
.woocommerce-breadcrumb,
.woocommerce-products-header h1 {
    font-family: var(--font-primary);
    font-weight: 500;
}

/* Buttons - Indian Style Typography */
.button,
.btn,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Price Typography */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--golden);
    font-size: 1.3rem;
}

/* Festival & Offer Text */
.festival-title,
.offer-title {
    font-family: var(--font-luxury);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Description Text */
.woocommerce div.product .woocommerce-product-details__short-description,
.product-description {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Testimonials */
.testimonial-text {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.9;
}

/* Menu Items */
.header-menu ul li a,
.navigation-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer Typography */
.footer-widget h3,
.footer-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--golden);
}

/* Labels & Tags */
.product-tag,
.product-label,
.sale-badge {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fancy First Letter - For Descriptions */
.fancy-first-letter::first-letter {
    font-family: var(--font-luxury);
    font-size: 4rem;
    line-height: 1;
    float: left;
    margin: 0 10px 0 0;
    color: var(--golden);
}

/* Quote Styling */
blockquote {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.3rem;
    border-left: 4px solid var(--golden);
    padding-left: 25px;
    margin: 30px 0;
    color: var(--royal-maroon);
}

/* Number Formatting - Indian Rupee */
.rupee-symbol::before {
    content: '₹';
    font-family: var(--font-heading);
    margin-right: 2px;
}

/* Traditional Nameplate Style */
.nameplate-text {
    font-family: var(--font-luxury);
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
}

/* Responsive Typography */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    .nameplate-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .fancy-first-letter::first-letter {
        font-size: 3rem;
    }
}

/* Special Text Effects */
.golden-text {
    color: var(--golden);
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.embossed-text {
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.5),
        -1px -1px 0 rgba(0, 0, 0, 0.3);
}

.outlined-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--golden);
    text-stroke: 2px var(--golden);
}

/* Loading Text Animation */
@keyframes textShimmer {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 500px 0;
    }
}

.shimmer-text {
    background: linear-gradient(90deg, 
        var(--royal-maroon) 0%, 
        var(--golden) 25%, 
        var(--royal-maroon) 50%, 
        var(--golden) 75%, 
        var(--royal-maroon) 100%);
    background-size: 1000px 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}
