/*
Theme Name: Masi Jewellers
Theme URI: https://masijewellers.com
Author: Masi Jewellers
Author URI: https://masijewellers.com
Description: A premium, luxury WordPress theme for Masi Jewellers. Fully compatible with Elementor.
Version: 1.0.0
Text Domain: masi-jewellers
*/

:root {
    --color-gold: #d4af37;
    --color-gold-dark: #b8941f;
    --color-charcoal: #1a1a1a;
    --color-charcoal-dark: #0f0f0f;
    --color-champagne: #f7e7ce;
    --color-pearl: #fefefe;
    --color-rose: #e8b4a4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-pearl);
    margin: 0;
    padding-top: 80px; /* Space for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-charcoal);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Luxury Utilities */
.luxury-gradient {
    background: linear-gradient(135deg, #fefefe 0%, #f7e7ce 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.dark-luxury {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.luxury-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(212, 175, 55, 0.05);
}

.glass-effect {
    backdrop-filter: blur(20px);
    background: rgba(254, 254, 254, 0.95);
}

.elegant-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

/* Ornamental Divider */
.ornamental-divider {
    position: relative;
    height: 32px;
    margin: 32px 0;
    text-align: center;
}

.ornamental-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.ornamental-divider::after {
    content: "◆";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d4af37;
    background: #fefefe;
    padding: 0 12px;
    font-size: 14px;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--color-charcoal);
}

.site-title a {
    color: inherit;
}

.site-description {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-left: 10px;
    font-weight: 500;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.action-icon {
    color: var(--color-charcoal);
    font-size: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    transition: all 0.3s ease;
}

/* Footer */
.site-footer {
    background: var(--color-charcoal);
    color: white;
    padding: 80px 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 25px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget a {
    color: white;
}

.footer-widget a:hover {
    color: var(--color-gold);
}

.site-info {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 40px;
    text-align: center;
    color: #999;
}

.footer-logo {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsiveness */
@media (max-width: 900px) {
    .main-navigation {
        display: none; /* Hide default nav, show mobile menu instead */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}
