/*
 Theme Name:   Storefront Mhudi
 Theme URI:    https://example.com/mhudi
 Description:  Storefront child theme styled for Mhudi branding
 Author:       Your Name
 Template:     storefront
 Version:      1.0.0
*/

/* Import parent theme */
@import url("../storefront/style.css");

/* Mhudi Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Raleway:wght@300;400;700&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    color: #333333;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1A1A1A;
}

/* Mhudi Colors */
:root {
    --mhudi-rose-gold: #b76e79;
    --mhudi-charcoal: #2e2e2e;
    --mhudi-dark-blue: #0e2a47;
    --mhudi-black: #000000;
}

/* Header & Footer Background */
.site-header, .site-footer {
    background-color: var(--mhudi-charcoal);
    color: #fff;
    position: relative;
}
